From d7d52c48a1ecd527335de53a36e86a3cd1ec79b4 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Fri, 03 May 2013 14:09:52 +0000 Subject: OLPC AU branch --- diff --git a/NEWS b/NEWS index 0fc53e0..b19a7e0 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,12 @@ +175.1 + +OLPC AU branch + 175 ENHANCEMENT: * Power management utility: Alan Aguiar +* Game keys exit fullscreen mode BUG FIXES: * Force audio sensors to use single channel on XO 4 diff --git a/activity/activity.info b/activity/activity.info index 3d1e9d5..b836dcc 100644 --- a/activity/activity.info +++ b/activity/activity.info @@ -1,6 +1,6 @@ [Activity] name = TurtleBlocks -activity_version = 175 +activity_version = 175.1 license = MIT bundle_id = org.laptop.TurtleArtActivity exec = sugar-activity TurtleArtActivity.TurtleArtActivity diff --git a/plugins/currency/__init__.py b/plugins/currency/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/plugins/currency/__init__.py diff --git a/plugins/currency/currency.py b/plugins/currency/currency.py new file mode 100644 index 0000000..4d9a7ed --- /dev/null +++ b/plugins/currency/currency.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +#Copyright (c) 2011, Walter Bender +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +import gtk +from time import time +import os.path +from gettext import gettext as _ + +try: + from sugar.datastore import datastore +except ImportError: + pass + +from plugins.plugin import Plugin +from TurtleArt.tapalette import make_palette, define_logo_function +from TurtleArt.talogo import primitive_dictionary, logoerror, \ + media_blocks_dictionary +from TurtleArt.taconstants import MEDIA_SHAPES, NO_IMPORT, SKIN_PATHS, \ + EXPAND_SKIN, BLOCKS_WITH_SKIN + +class Currency(Plugin): + """ a class for defining palette of money """ + + def __init__(self, parent): + self.tw = parent + + def setup(self): + self.heap = self.tw.lc.heap + self.keyboard = self.tw.lc.keyboard + self.title_height = int((self.tw.canvas.height / 20) * self.tw.scale) + + SKIN_PATHS.append('plugins/currency/images') + + self._currency_palette() + + def _currency_palette(self): + palette = make_palette( + 'currency', colors=["#FFFFFF", "#A0A0A0"], + help_string=_('Palette of Australian currencies')) + + self._make_constant(palette, '5 cents', 0.05, expand=(0, 10)) + self._make_constant(palette, '10 cents', 0.1, expand=(0, 10)) + self._make_constant(palette, '20 cents', 0.2, expand=(0, 10)) + self._make_constant(palette, '50 cents', 0.5, expand=(0, 10)) + self._make_constant(palette, '1 dollar', 1, expand=(0, 10)) + self._make_constant(palette, '2 dollars', 2, expand=(0, 10)) + + self._make_constant(palette, '5 dollars', 5, expand=(60, 20)) + self._make_constant(palette, '10 dollars', 10, expand=(60, 20)) + self._make_constant(palette, '20 dollars', 20, expand=(60, 20)) + self._make_constant(palette, '50 dollars', 50, expand=(60, 20)) + self._make_constant(palette, '100 dollars', 100, expand=(60, 20)) + + def _make_constant(self, palette, block_name, constant, expand=(0, 0)): + """ Factory for constant blocks """ + palette.add_block(block_name, + style='box-style-media', + label='', + default=constant, + prim_name=block_name, + help_string=_(str(constant))) + BLOCKS_WITH_SKIN.append(block_name) + NO_IMPORT.append(block_name) + MEDIA_SHAPES.append(block_name + 'off') + MEDIA_SHAPES.append(block_name + 'small') + if expand > 0: + EXPAND_SKIN[block_name] = expand + self.tw.lc.def_prim(block_name, 0, lambda self: constant) + diff --git a/plugins/currency/icons/currencyoff.svg b/plugins/currency/icons/currencyoff.svg new file mode 100644 index 0000000..7a4825a --- /dev/null +++ b/plugins/currency/icons/currencyoff.svg @@ -0,0 +1,45 @@ + + + + + + + + image/svg+xml + + + + + + + + $ + diff --git a/plugins/currency/icons/currencyon.svg b/plugins/currency/icons/currencyon.svg new file mode 100644 index 0000000..9bcba86 --- /dev/null +++ b/plugins/currency/icons/currencyon.svg @@ -0,0 +1,121 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + $ + diff --git a/plugins/currency/images/1 dollaroff.svg b/plugins/currency/images/1 dollaroff.svg new file mode 100644 index 0000000..1299d26 --- /dev/null +++ b/plugins/currency/images/1 dollaroff.svg @@ -0,0 +1,298 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/1 dollarsmall.svg b/plugins/currency/images/1 dollarsmall.svg new file mode 100644 index 0000000..4f887a0 --- /dev/null +++ b/plugins/currency/images/1 dollarsmall.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/10 centsoff.svg b/plugins/currency/images/10 centsoff.svg new file mode 100644 index 0000000..821f6f0 --- /dev/null +++ b/plugins/currency/images/10 centsoff.svg @@ -0,0 +1,292 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/10 centssmall.svg b/plugins/currency/images/10 centssmall.svg new file mode 100644 index 0000000..825d0ef --- /dev/null +++ b/plugins/currency/images/10 centssmall.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/10 dollarsoff.svg b/plugins/currency/images/10 dollarsoff.svg new file mode 100644 index 0000000..73d94e6 --- /dev/null +++ b/plugins/currency/images/10 dollarsoff.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/10 dollarssmall.svg b/plugins/currency/images/10 dollarssmall.svg new file mode 100644 index 0000000..f2784ea --- /dev/null +++ b/plugins/currency/images/10 dollarssmall.svg @@ -0,0 +1,55 @@ + +image/svg+xml + \ No newline at end of file diff --git a/plugins/currency/images/100 dollarsoff.svg b/plugins/currency/images/100 dollarsoff.svg new file mode 100644 index 0000000..8a65bb9 --- /dev/null +++ b/plugins/currency/images/100 dollarsoff.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/100 dollarssmall.svg b/plugins/currency/images/100 dollarssmall.svg new file mode 100644 index 0000000..3695601 --- /dev/null +++ b/plugins/currency/images/100 dollarssmall.svg @@ -0,0 +1,105 @@ + +image/svg+xml + \ No newline at end of file diff --git a/plugins/currency/images/2 dollarsoff.svg b/plugins/currency/images/2 dollarsoff.svg new file mode 100644 index 0000000..0f1a6ce --- /dev/null +++ b/plugins/currency/images/2 dollarsoff.svg @@ -0,0 +1,279 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/2 dollarssmall.svg b/plugins/currency/images/2 dollarssmall.svg new file mode 100644 index 0000000..ef8e77d --- /dev/null +++ b/plugins/currency/images/2 dollarssmall.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/20 centsoff.svg b/plugins/currency/images/20 centsoff.svg new file mode 100644 index 0000000..25e77fe --- /dev/null +++ b/plugins/currency/images/20 centsoff.svg @@ -0,0 +1,257 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/20 centssmall.svg b/plugins/currency/images/20 centssmall.svg new file mode 100644 index 0000000..10d8e80 --- /dev/null +++ b/plugins/currency/images/20 centssmall.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/20 dollarsoff.svg b/plugins/currency/images/20 dollarsoff.svg new file mode 100644 index 0000000..64eabd7 --- /dev/null +++ b/plugins/currency/images/20 dollarsoff.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/20 dollarssmall.svg b/plugins/currency/images/20 dollarssmall.svg new file mode 100644 index 0000000..c5ad6a3 --- /dev/null +++ b/plugins/currency/images/20 dollarssmall.svg @@ -0,0 +1,55 @@ + +image/svg+xml + \ No newline at end of file diff --git a/plugins/currency/images/5 centsoff.svg b/plugins/currency/images/5 centsoff.svg new file mode 100644 index 0000000..94b3ab4 --- /dev/null +++ b/plugins/currency/images/5 centsoff.svg @@ -0,0 +1,288 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/5 centssmall.svg b/plugins/currency/images/5 centssmall.svg new file mode 100644 index 0000000..c59b97a --- /dev/null +++ b/plugins/currency/images/5 centssmall.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/5 dollarsoff.svg b/plugins/currency/images/5 dollarsoff.svg new file mode 100644 index 0000000..e16f9a7 --- /dev/null +++ b/plugins/currency/images/5 dollarsoff.svg @@ -0,0 +1,95 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/5 dollarssmall.svg b/plugins/currency/images/5 dollarssmall.svg new file mode 100644 index 0000000..91e4b3e --- /dev/null +++ b/plugins/currency/images/5 dollarssmall.svg @@ -0,0 +1,55 @@ + +image/svg+xml + \ No newline at end of file diff --git a/plugins/currency/images/50 centsoff.svg b/plugins/currency/images/50 centsoff.svg new file mode 100644 index 0000000..2992ae5 --- /dev/null +++ b/plugins/currency/images/50 centsoff.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/50 centssmall.svg b/plugins/currency/images/50 centssmall.svg new file mode 100644 index 0000000..533e287 --- /dev/null +++ b/plugins/currency/images/50 centssmall.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/50 dollarsoff.svg b/plugins/currency/images/50 dollarsoff.svg new file mode 100644 index 0000000..48169d9 --- /dev/null +++ b/plugins/currency/images/50 dollarsoff.svg @@ -0,0 +1,54 @@ + +image/svg+xml \ No newline at end of file diff --git a/plugins/currency/images/50 dollarssmall.svg b/plugins/currency/images/50 dollarssmall.svg new file mode 100644 index 0000000..4312f4a --- /dev/null +++ b/plugins/currency/images/50 dollarssmall.svg @@ -0,0 +1,105 @@ + +image/svg+xml + \ No newline at end of file diff --git a/plugins/wedo_plugin/99-lego-WeDo.rules b/plugins/wedo_plugin/99-lego-WeDo.rules new file mode 100644 index 0000000..7c8beea --- /dev/null +++ b/plugins/wedo_plugin/99-lego-WeDo.rules @@ -0,0 +1 @@ +SYSFS{idVendor}=="0694", SYSFS{idProduct}=="0003", MODE="0666" diff --git a/plugins/wedo_plugin/WeDoMore.py b/plugins/wedo_plugin/WeDoMore.py new file mode 100644 index 0000000..719c7af --- /dev/null +++ b/plugins/wedo_plugin/WeDoMore.py @@ -0,0 +1,192 @@ +#Copyright (c) 2011, 2012, Ian Daniher +#Copyright (c) 2012, Tony Forster, Walter Bender +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +import sys +import os +sys.path.append(os.path.dirname(__file__)) +import usb.core + +import logging +logger = logging.getLogger('WeDoMore') + + +UNAVAILABLE = None +TILTSENSOR = [38, 39] +DISTANCESENSOR = [176, 177, 178, 179] +MOTOR = [0, 1, 2, 3, 238, 239] +TILT_FORWARD = 0 +TILT_LEFT = 1 +TILT_RIGHT = 2 +TILT_BACK = 3 +NO_TILT = -1 + + +def scan_for_devices(): + ''' Find all available devices ''' + return usb.core.find(find_all=True, idVendor=0x0694, idProduct=0x0003) + + +class WeDo: + def __init__(self, device=None): + """Find a USB device with the VID and PID of the Lego + WeDo. If the HID kernel driver is active, detatch + it.""" + self.dev = None + self.number = 0 + self.dev = device + if self.dev is None: + logging.debug("No Lego WeDo found") + else: + status = self.init_device() + if status is UNAVAILABLE: + logging.debug("WARNING: Could not talk to WeDo device.") + self.valMotorA = 0 + self.valMotorB = 0 + + def init_device(self): + ''' Reinit device associated with the WeDo instance ''' + if self.dev is not None: + try: + if self.dev.is_kernel_driver_active(0): + try: + self.dev.detach_kernel_driver(0) + except: # usb.core.USBError as e: + e = '' + logger.error( + "Could not detatch kernel driver: %s" % (str(e))) + return UNAVAILABLE + except: # usb.core.USBError as e: + e = '' + logger.error("Could not talk to WeDo device: %s" % (str(e))) + return UNAVAILABLE + self.endpoint = self.dev[0][(0,0)][0] + return True + + def getRawData(self): + """Read 64 bytes from the WeDo's endpoint, but only + return the last eight.""" + try: + data = list(self.endpoint.read(64)[-8:]) + except: # usb.core.USBError as e: + e = '' + logger.error("Could not read from WeDo device: %s" % (str(e))) + return UNAVAILABLE + return data + + def processMotorValues(self, value): + """Check to make sure motor values are sane.""" + retValue = int(value) + if 0 < value < 101: + retValue += 27 + elif -101 < value < 0: + retValue -= 27 + elif value == 0: + retValue = 0 + return retValue + + def setMotors(self, valMotorA, valMotorB): + """Arguments should be in form of a number between 0 + and 100, positive or negative. Magic numbers used for + the ctrl_transfer derived from sniffing USB coms.""" + if self.dev is None: + return + self.valMotorA = self.processMotorValues(valMotorA) + self.valMotorB = self.processMotorValues(valMotorB) + data = [64, self.valMotorA&0xFF, self.valMotorB&0xFF, + 0x00, 0x00, 0x00, 0x00, 0x00] + try: + self.dev.ctrl_transfer(bmRequestType = 0x21, bRequest = 0x09, + wValue = 0x0200, wIndex = 0, + data_or_wLength = data) + except: # usb.core.USBError as e: + e = '' + logger.error("Could not write to driver: %s" % (str(e))) + + def getData(self): + """Sensor data is contained in the 2nd and 4th byte, with + sensor IDs being contained in the 3rd and 5th byte + respectively.""" + rawData = self.getRawData() + if rawData is not None: + sensorData = {rawData[3]: rawData[2], rawData[5]: rawData[4]} + else: + sensorData = {} + return sensorData + + def processTilt(self, v): + """Use a series of elif/value-checks to process the tilt + sensor data.""" + if v in range(10, 40): + return TILT_BACK + elif v in range(60, 90): + return TILT_RIGHT + elif v in range(170, 190): + return TILT_FORWARD + elif v in range(220, 240): + return TILT_LEFT + elif v in range(120, 140): + return NO_TILT + else: + return NO_TILT + + def getTilt(self): + if self.dev is None: + return UNAVAILABLE + data = self.getData() + for num in data.keys(): + if num in TILTSENSOR: + return self.processTilt(data[num]) + return UNAVAILABLE + + def getDistance(self): + if self.dev is None: + return UNAVAILABLE + data = self.getData() + for num in data.keys(): + if num in DISTANCESENSOR: + return data[num] - 69 + return UNAVAILABLE + + # TODO: check motor availability + + def setMotorA(self, valMotorA): + self.setMotors(valMotorA, self.valMotorB) + return self.valMotorA + + def setMotorB(self, valMotorB): + self.setMotors(self.valMotorA, valMotorB) + return self.valMotorB + + def getMotorA(self): + if self.dev is None: + return UNAVAILABLE + if self.valMotorA == 0: + return 0 + elif self.valMotorA < 0: + return self.valMotorA + 27 + else: + return self.valMotorA - 27 + + def getMotorB(self): + if self.dev is None: + return UNAVAILABLE + if self.valMotorB == 0: + return 0 + elif self.valMotorB < 0: + return self.valMotorB + 27 + else: + return self.valMotorB - 27 diff --git a/plugins/wedo_plugin/__init__.py b/plugins/wedo_plugin/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/plugins/wedo_plugin/__init__.py diff --git a/plugins/wedo_plugin/icons/WeDooff.svg b/plugins/wedo_plugin/icons/WeDooff.svg new file mode 100644 index 0000000..cc43d44 --- /dev/null +++ b/plugins/wedo_plugin/icons/WeDooff.svg @@ -0,0 +1,71 @@ + + + +image/svg+xml + + + + + diff --git a/plugins/wedo_plugin/icons/WeDoon.svg b/plugins/wedo_plugin/icons/WeDoon.svg new file mode 100644 index 0000000..16d54d2 --- /dev/null +++ b/plugins/wedo_plugin/icons/WeDoon.svg @@ -0,0 +1,71 @@ + + + +image/svg+xml + + + + + \ No newline at end of file diff --git a/plugins/wedo_plugin/plugin.info b/plugins/wedo_plugin/plugin.info new file mode 100644 index 0000000..b66e1fa --- /dev/null +++ b/plugins/wedo_plugin/plugin.info @@ -0,0 +1,5 @@ +[Plugin] +name=wedo_plugin +palette=wedo +version=2.2 + diff --git a/plugins/wedo_plugin/usb/__init__.py b/plugins/wedo_plugin/usb/__init__.py new file mode 100644 index 0000000..8909cf2 --- /dev/null +++ b/plugins/wedo_plugin/usb/__init__.py @@ -0,0 +1,92 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +r"""PyUSB - Easy USB access in Python + +This package exports the following modules and subpackages: + + core - the main USB implementation + legacy - the compatibility layer with 0.x version + backend - the support for backend implementations. + +Since version 1.0, main PyUSB implementation lives in the 'usb.core' +module. New applications are encouraged to use it. +""" + +import logging +import os + +__author__ = 'Wander Lairson Costa' + +__all__ = ['legacy', 'core', 'backend', 'util'] + + +def _setup_log(): + from usb import _debug + logger = logging.getLogger('usb') + debug_level = os.getenv('PYUSB_DEBUG_LEVEL') + + if debug_level is not None: + _debug.enable_tracing(True) + filename = os.getenv('PYUSB_LOG_FILENAME') + + LEVELS = {'debug': logging.DEBUG, + 'info': logging.INFO, + 'warning': logging.WARNING, + 'error': logging.ERROR, + 'critical': logging.CRITICAL} + + level = LEVELS.get(debug_level, logging.CRITICAL + 10) + logger.setLevel(level = level) + + try: + handler = logging.FileHandler(filename) + except: + handler = logging.StreamHandler() + + fmt = logging.Formatter('%(asctime)s %(levelname)s:%(name)s:%(message)s') + handler.setFormatter(fmt) + logger.addHandler(handler) + else: + class NullHandler(logging.Handler): + def emit(self, record): + pass + + # We set the log level to avoid delegation to the + # parent log handler (if there is one). + # Thanks to Chris Clark to pointing this out. + logger.setLevel(logging.CRITICAL + 10) + + logger.addHandler(NullHandler()) + + +_setup_log() + +# We import all 'legacy' module symbols to provide compatility +# with applications that use 0.x versions. +from usb.legacy import * diff --git a/plugins/wedo_plugin/usb/_debug.py b/plugins/wedo_plugin/usb/_debug.py new file mode 100644 index 0000000..13b0ced --- /dev/null +++ b/plugins/wedo_plugin/usb/_debug.py @@ -0,0 +1,77 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +__author__ = 'Wander Lairson Costa' + +__all__ = ['methodtrace', 'functiontrace'] + +import logging +import usb._interop as _interop + +_enable_tracing = False + +def enable_tracing(enable): + global _enable_tracing + _enable_tracing = enable + +def _trace_function_call(logger, fname, *args, **named_args): + logger.debug( + # TODO: check if 'f' is a method or a free function + fname + '(' + \ + ', '.join((str(val) for val in args)) + \ + ', '.join((name + '=' + str(val) for name, val in named_args.items())) + ')' + ) + +# decorator for methods calls tracing +def methodtrace(logger): + def decorator_logging(f): + if not _enable_tracing: + return f + def do_trace(*args, **named_args): + # this if is just a optimization to avoid unecessary string formatting + if logging.DEBUG >= logger.getEffectiveLevel(): + fn = type(args[0]).__name__ + '.' + f.__name__ + _trace_function_call(logger, fn, *args[1:], **named_args) + return f(*args, **named_args) + _interop._update_wrapper(do_trace, f) + return do_trace + return decorator_logging + +# decorator for methods calls tracing +def functiontrace(logger): + def decorator_logging(f): + if not _enable_tracing: + return f + def do_trace(*args, **named_args): + # this if is just a optimization to avoid unecessary string formatting + if logging.DEBUG >= logger.getEffectiveLevel(): + _trace_function_call(logger, f.__name__, *args, **named_args) + return f(*args, **named_args) + _interop._update_wrapper(do_trace, f) + return do_trace + return decorator_logging diff --git a/plugins/wedo_plugin/usb/_interop.py b/plugins/wedo_plugin/usb/_interop.py new file mode 100644 index 0000000..6069d5e --- /dev/null +++ b/plugins/wedo_plugin/usb/_interop.py @@ -0,0 +1,135 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +# All the hacks necessary to assure compatibility across all +# supported versions come here. +# Please, note that there is one version check for each +# hack we need to do, this makes maintenance easier... ^^ + +import sys +import array + +__all__ = ['_reduce', '_set', '_next', '_groupby', '_sorted', '_update_wrapper'] + +# we support Python >= 2.3 +assert sys.hexversion >= 0x020300f0 + +# On Python 3, reduce became a functools module function +try: + import functools + _reduce = functools.reduce +except (ImportError, AttributeError): + _reduce = reduce + +# we only have the builtin set type since 2.5 version +try: + _set = set +except NameError: + import sets + _set = sets.Set + +# On Python >= 2.6, we have the builtin next() function +# On Python 2.5 and before, we have to call the iterator method next() +def _next(iter): + try: + return next(iter) + except NameError: + return iter.next() + +# groupby is available only since 2.4 version +try: + import itertools + _groupby = itertools.groupby +except (ImportError, AttributeError): + # stolen from Python docs + class _groupby(object): + # [k for k, g in groupby('AAAABBBCCDAABBB')] --> A B C D A B + # [list(g) for k, g in groupby('AAAABBBCCD')] --> AAAA BBB CC D + def __init__(self, iterable, key=None): + if key is None: + key = lambda x: x + self.keyfunc = key + self.it = iter(iterable) + self.tgtkey = self.currkey = self.currvalue = object() + def __iter__(self): + return self + def next(self): + while self.currkey == self.tgtkey: + self.currvalue = _next(self.it) # Exit on StopIteration + self.currkey = self.keyfunc(self.currvalue) + self.tgtkey = self.currkey + return (self.currkey, self._grouper(self.tgtkey)) + def _grouper(self, tgtkey): + while self.currkey == tgtkey: + yield self.currvalue + self.currvalue = _next(self.it) # Exit on StopIteration + self.currkey = self.keyfunc(self.currvalue) + +# builtin sorted function is only availale since 2.4 version +try: + _sorted = sorted +except NameError: + def _sorted(l, key=None, reverse=False): + # sort function on Python 2.3 does not + # support 'key' parameter + class KeyToCmp(object): + def __init__(self, K): + self.key = K + def __call__(self, x, y): + kx = self.key(x) + ky = self.key(y) + if kx < ky: + return reverse and 1 or -1 + elif kx > ky: + return reverse and -1 or 1 + else: + return 0 + tmp = list(l) + tmp.sort(KeyToCmp(key)) + return tmp + +try: + import functools + _update_wrapper = functools.update_wrapper +except (ImportError, AttributeError): + def _update_wrapper(wrapper, wrapped): + wrapper.__name__ = wrapped.__name__ + wrapper.__module__ = wrapped.__module__ + wrapper.__doc__ = wrapped.__doc__ + wrapper.__dict__ = wrapped.__dict__ + +def as_array(data=None): + if data is None: + return array.array('B') + try: + return array.array('B', data) + except TypeError: + # When you pass a unicode string, you got a TypeError + # if first parameter is not 'u' + return array.array('u', data) + diff --git a/plugins/wedo_plugin/usb/backend/__init__.py b/plugins/wedo_plugin/usb/backend/__init__.py new file mode 100644 index 0000000..67ee00f --- /dev/null +++ b/plugins/wedo_plugin/usb/backend/__init__.py @@ -0,0 +1,368 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +r"""usb.backend - Backend interface. + +This module exports: + +IBackend - backend interface. + +Backends are Python objects which implement the IBackend interface. +The easiest way to do so is inherinting from IBackend. + +PyUSB already provides backends for libusb versions 0.1 and 1.0, +and OpenUSB library. Backends modules included with PyUSB are required to +export the get_backend() function, which returns an instance of a backend +object. You can provide your own customized backend if you +want to. Bellow you find a skeleton of a backend implementation module: + +import usb.backend + +class MyBackend(usb.backend.IBackend): + pass + +def get_backend(): + return MyBackend() + +You can use your customized backend by passing it as the backend parameter of the +usb.core.find() function. For example: + +import custom_backend +import usb.core + +myidVendor = 0xfffe +myidProduct = 0x0001 + +mybackend = custom_backend.get_backend() + +dev = usb.core.find(backend = mybackend, idProduct=myidProduct, + idVendor=myidVendor) + +For custom backends, you are not required to supply the get_backend() function, +since the application code will instantiate the backend. + +If you do not provide a backend to the find() function, it will use one of the +defaults backend according to its internal rules. For details, consult the +find() function documentation. +""" + +__author__ = 'Wander Lairson Costa' + +__all__ = ['IBackend', 'libusb01', 'libusb10', 'openusb'] + +def _not_implemented(func): + raise NotImplementedError(func.__name__) + +class IBackend(object): + r"""Backend interface. + + IBackend is the basic interface for backend implementations. By default, + the methods of the interface raise a NotImplementedError exception. A + backend implementation should replace the methods to provide the funcionality + necessary. + + As Python is a dynamic typed language, you are not obligated to inherit from + IBackend: everything that bahaves like an IBackend is an IBackend. But you + are strongly recommended to do so, inheriting from IBackend provides consistent + default behavior. + """ + def enumerate_devices(self): + r"""This function is required to return an iterable object which + yields an implementation defined device identification for each + USB device found in the system. + + The device identification object is used as argument to other methods + of the interface. + """ + _not_implemented(self.enumerate_devices) + + def get_device_descriptor(self, dev): + r"""Return the device descriptor of the given device. + + The object returned is required to have all the Device Descriptor + fields accessible as member variables. They must be convertible (but + not required to be equal) to the int type. + + dev is an object yielded by the iterator returned by the enumerate_devices() + method. + """ + _not_implemented(self.get_device_descriptor) + + def get_configuration_descriptor(self, dev, config): + r"""Return a configuration descriptor of the given device. + + The object returned is required to have all the Configuration Descriptor + fields acessible as member variables. They must be convertible (but + not required to be equal) to the int type. + + The dev parameter is the already described device identification object. + config is the logical index of the configuration (not the bConfigurationValue + field). By "logical index" we mean the relative order of the configurations + returned by the peripheral as a result of GET_DESCRIPTOR request. + """ + _not_implemented(self.get_configuration_descriptor) + + def get_interface_descriptor(self, dev, intf, alt, config): + r"""Return an interface descriptor of the given device. + + The object returned is required to have all the Interface Descriptor + fields accessible as member variables. They must be convertible (but + not required to be equal) to the int type. + + The dev parameter is the already described device identification object. + The intf parameter is the interface logical index (not the bInterfaceNumber field) + and alt is the alternate setting logical index (not the bAlternateSetting value). + Not every interface has more than one alternate setting. In this case, the alt + parameter should be zero. config is the configuration logical index (not the + bConfigurationValue field). + """ + _not_implemented(self.get_interface_descriptor) + + def get_endpoint_descriptor(self, dev, ep, intf, alt, config): + r"""Return an endpoint descriptor of the given device. + + The object returned is required to have all the Endpoint Descriptor + fields acessible as member variables. They must be convertible (but + not required to be equal) to the int type. + + The ep parameter is the endpoint logical index (not the bEndpointAddress + field) of the endpoint descriptor desired. intf, alt and config are the same + values already described in the get_interface_descriptor() method. + """ + _not_implemented(self.get_endpoint_descriptor) + + def open_device(self, dev): + r"""Open the device for data exchange. + + This method opens the device identified by the dev parameter for communication. + This method must be called before calling any communication related method, such + as transfer methods. + + It returns a handle identifying the communication instance. This handle must be + passed to the communication methods. + """ + _not_implemented(self.open_device) + + def close_device(self, dev_handle): + r"""Close the device handle. + + This method closes the device communication channel and releases any + system resources related to it. + """ + _not_implemented(self.close_device) + + def set_configuration(self, dev_handle, config_value): + r"""Set the active device configuration. + + This method should be called to set the active configuration + of the device. The dev_handle parameter is the value returned + by the open_device() method and the config_value parameter is the + bConfigurationValue field of the related configuration descriptor. + """ + _not_implemented(self.set_configuration) + + def get_configuration(self, dev_handle): + r"""Get the current active device configuration. + + This method returns the bConfigurationValue of the currently + active configuration. Depending on the backend and the OS, + either a cached value may be returned or a control request may + be issued. The dev_handle parameter is the value returned by + the open_device method. + """ + _not_implemented(self.get_configuration) + + def set_interface_altsetting(self, dev_handle, intf, altsetting): + r"""Set the interface alternate setting. + + This method should only be called when the interface has more than + one alternate setting. The dev_handle is the value returned by the + open_device() method. intf and altsetting are respectivelly the + bInterfaceNumber and bAlternateSetting fields of the related interface. + """ + _not_implemented(self.set_interface_altsetting) + + def claim_interface(self, dev_handle, intf): + r"""Claim the given interface. + + Interface claiming is not related to USB spec itself, but it is + generally an necessary call of the USB libraries. It requests exclusive + access to the interface on the system. This method must be called + before using one of the transfer methods. + + dev_handle is the value returned by the open_device() method and + intf is the bInterfaceNumber field of the desired interface. + """ + _not_implemented(self.claim_interface) + + def release_interface(self, dev_handle, intf): + r"""Release the claimed interface. + + dev_handle and intf are the same parameters of the claim_interface + method. + """ + _not_implemented(self.release_interface) + + def bulk_write(self, dev_handle, ep, intf, data, timeout): + r"""Perform a bulk write. + + dev_handle is the value returned by the open_device() method. + The ep parameter is the bEndpointAddress field whose endpoint + the data will be sent to. intf is the bInterfaceNumber field + of the interface containing the endpoint. The data parameter + is the data to be sent. It must be an instance of the array.array + class. The timeout parameter specifies a time limit to the operation + in miliseconds. + + The method returns the number of bytes written. + """ + _not_implemented(self.bulk_write) + + def bulk_read(self, dev_handle, ep, intf, size, timeout): + r"""Perform a bulk read. + + dev_handle is the value returned by the open_device() method. + The ep parameter is the bEndpointAddress field whose endpoint + the data will be received from. intf is the bInterfaceNumber field + of the interface containing the endpoint. The size parameter + is the number of bytes to be read. The timeout parameter specifies + a time limit to the operation in miliseconds. + + The method returns an array.array object containing the data read. + """ + _not_implemented(self.bulk_read) + + def intr_write(self, dev_handle, ep, intf, data, timeout): + r"""Perform an interrupt write. + + dev_handle is the value returned by the open_device() method. + The ep parameter is the bEndpointAddress field whose endpoint + the data will be sent to. intf is the bInterfaceNumber field + of the interface containing the endpoint. The data parameter + is the data to be sent. It must be an instance of the array.array + class. The timeout parameter specifies a time limit to the operation + in miliseconds. + + The method returns the number of bytes written. + """ + _not_implemented(self.intr_write) + + def intr_read(self, dev_handle, ep, intf, size, timeout): + r"""Perform an interrut read. + + dev_handle is the value returned by the open_device() method. + The ep parameter is the bEndpointAddress field whose endpoint + the data will be received from. intf is the bInterfaceNumber field + of the interface containing the endpoint. The size parameter + is the number of bytes to be read. The timeout parameter specifies + a time limit to the operation in miliseconds. + + The method returns an array.array object containing the data read. + """ + _not_implemented(self.intr_read) + + def iso_write(self, dev_handle, ep, intf, data, timeout): + r"""Perform an isochronous write. + + dev_handle is the value returned by the open_device() method. + The ep parameter is the bEndpointAddress field whose endpoint + the data will be sent to. intf is the bInterfaceNumber field + of the interface containing the endpoint. The data parameter + is the data to be sent.It must be an instance of the array.array + class. The timeout parameter specifies a time limit to the operation + in miliseconds. + + The method returns the number of bytes written. + """ + _not_implemented(self.iso_write) + + def iso_read(self, dev_handle, ep, intf, size, timeout): + r"""Perform an isochronous read. + + dev_handle is the value returned by the open_device() method. + The ep parameter is the bEndpointAddress field whose endpoint + the data will be received from. intf is the bInterfaceNumber field + of the interface containing the endpoint. The size parameter + is the number of bytes to be read. The timeout parameter specifies + a time limit to the operation in miliseconds. + + The method returns an array.array object containing the data read. + """ + _not_implemented(self.iso_read) + + def ctrl_transfer(self, + dev_handle, + bmRequestType, + bRequest, + wValue, + wIndex, + data_or_wLength, + timeout): + r"""Perform a control transfer on the endpoint 0. + + The direction of the transfer is inferred from the bmRequestType + field of the setup packet. + + dev_handle is the value returned by the open_device() method. + bmRequestType, bRequest, wValue and wIndex are the same fields + of the setup packet. data_or_wLength is either the payload to be sent + to the device, if any, as an array.array object (None there is no + payload) for OUT requests in the data stage or the wLength field + specifying the number of bytes to read for IN requests in the data + stage. The timeout parameter specifies a time limit to the operation + in miliseconds. + + Return the number of bytes written (for OUT transfers) or the data + read (for IN transfers), as an array.array object. + """ + _not_implemented(self.ctrl_transfer) + + def reset_device(self, dev_handle): + r"""Reset the device.""" + _not_implemented(self.reset_device) + + def is_kernel_driver_active(self, dev_handle, intf): + r"""Determine if a kernel driver is active on an interface. + + If a kernel driver is active, you cannot claim the interface, + and the backend will be unable to perform I/O. + """ + _not_implemented(self.is_kernel_driver_active) + + def detach_kernel_driver(self, dev_handle, intf): + r"""Detach a kernel driver from an interface. + + If successful, you will then be able to claim the interface + and perform I/O. + """ + _not_implemented(self.detach_kernel_driver) + + def attach_kernel_driver(self, dev_handle, intf): + r"""Re-attach an interface's kernel driver, which was previously + detached using detach_kernel_driver().""" + _not_implemented(self.attach_kernel_driver) diff --git a/plugins/wedo_plugin/usb/backend/libusb01.py b/plugins/wedo_plugin/usb/backend/libusb01.py new file mode 100644 index 0000000..cf344c0 --- /dev/null +++ b/plugins/wedo_plugin/usb/backend/libusb01.py @@ -0,0 +1,582 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +from ctypes import * +import ctypes.util +import os +import usb.backend +import usb.util +import sys +from usb.core import USBError +from usb._debug import methodtrace +import usb._interop as _interop +import logging + +__author__ = 'Wander Lairson Costa' + +__all__ = ['get_backend'] + +_logger = logging.getLogger('usb.backend.libusb01') + +# usb.h + +_PC_PATH_MAX = 4 + +if sys.platform != 'win32' and sys.platform != 'cygwin': + _PATH_MAX = os.pathconf('.', _PC_PATH_MAX) +else: + _PATH_MAX = 511 + +# libusb-win32 makes all structures packed, while +# default libusb only does for some structures +# _PackPolicy defines the structure packing according +# to the platform. +class _PackPolicy(object): + pass + +if sys.platform == 'win32' or sys.platform == 'cygwin': + _PackPolicy._pack_ = 1 + +# Data structures + +class _usb_descriptor_header(Structure): + _pack_ = 1 + _fields_ = [('blength', c_uint8), + ('bDescriptorType', c_uint8)] + +class _usb_string_descriptor(Structure): + _pack_ = 1 + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('wData', c_uint16)] + +class _usb_endpoint_descriptor(Structure, _PackPolicy): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bEndpointAddress', c_uint8), + ('bmAttributes', c_uint8), + ('wMaxPacketSize', c_uint16), + ('bInterval', c_uint8), + ('bRefresh', c_uint8), + ('bSynchAddress', c_uint8), + ('extra', POINTER(c_uint8)), + ('extralen', c_int)] + +class _usb_interface_descriptor(Structure, _PackPolicy): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bInterfaceNumber', c_uint8), + ('bAlternateSetting', c_uint8), + ('bNumEndpoints', c_uint8), + ('bInterfaceClass', c_uint8), + ('bInterfaceSubClass', c_uint8), + ('bInterfaceProtocol', c_uint8), + ('iInterface', c_uint8), + ('endpoint', POINTER(_usb_endpoint_descriptor)), + ('extra', POINTER(c_uint8)), + ('extralen', c_int)] + +class _usb_interface(Structure, _PackPolicy): + _fields_ = [('altsetting', POINTER(_usb_interface_descriptor)), + ('num_altsetting', c_int)] + +class _usb_config_descriptor(Structure, _PackPolicy): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('wTotalLength', c_uint16), + ('bNumInterfaces', c_uint8), + ('bConfigurationValue', c_uint8), + ('iConfiguration', c_uint8), + ('bmAttributes', c_uint8), + ('bMaxPower', c_uint8), + ('interface', POINTER(_usb_interface)), + ('extra', POINTER(c_uint8)), + ('extralen', c_int)] + +class _usb_device_descriptor(Structure, _PackPolicy): + _pack_ = 1 + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bcdUSB', c_uint16), + ('bDeviceClass', c_uint8), + ('bDeviceSubClass', c_uint8), + ('bDeviceProtocol', c_uint8), + ('bMaxPacketSize0', c_uint8), + ('idVendor', c_uint16), + ('idProduct', c_uint16), + ('bcdDevice', c_uint16), + ('iManufacturer', c_uint8), + ('iProduct', c_uint8), + ('iSerialNumber', c_uint8), + ('bNumConfigurations', c_uint8)] + +class _usb_device(Structure, _PackPolicy): + pass + +class _usb_bus(Structure, _PackPolicy): + pass + +_usb_device._fields_ = [('next', POINTER(_usb_device)), + ('prev', POINTER(_usb_device)), + ('filename', c_int8 * (_PATH_MAX + 1)), + ('bus', POINTER(_usb_bus)), + ('descriptor', _usb_device_descriptor), + ('config', POINTER(_usb_config_descriptor)), + ('dev', c_void_p), + ('devnum', c_uint8), + ('num_children', c_ubyte), + ('children', POINTER(POINTER(_usb_device)))] + +_usb_bus._fields_ = [('next', POINTER(_usb_bus)), + ('prev', POINTER(_usb_bus)), + ('dirname', c_char * (_PATH_MAX + 1)), + ('devices', POINTER(_usb_device)), + ('location', c_uint32), + ('root_dev', POINTER(_usb_device))] + +_usb_dev_handle = c_void_p + +class _DeviceDescriptor: + def __init__(self, dev): + desc = dev.descriptor + self.bLength = desc.bLength + self.bDescriptorType = desc.bDescriptorType + self.bcdUSB = desc.bcdUSB + self.bDeviceClass = desc.bDeviceClass + self.bDeviceSubClass = desc.bDeviceSubClass + self.bDeviceProtocol = desc.bDeviceProtocol + self.bMaxPacketSize0 = desc.bMaxPacketSize0 + self.idVendor = desc.idVendor + self.idProduct = desc.idProduct + self.bcdDevice = desc.bcdDevice + self.iManufacturer = desc.iManufacturer + self.iProduct = desc.iProduct + self.iSerialNumber = desc.iSerialNumber + self.bNumConfigurations = desc.bNumConfigurations + self.address = dev.devnum + self.bus = dev.bus[0].location + +_lib = None + +def _load_library(): + if sys.platform != 'cygwin': + candidates = ('usb-0.1', 'usb', 'libusb0') + for candidate in candidates: + libname = ctypes.util.find_library(candidate) + if libname is not None: break + else: + # corner cases + # cygwin predefines library names with 'cyg' instead of 'lib' + try: + return CDLL('cygusb0.dll') + except: + _logger.error('Libusb 0 could not be loaded in cygwin', exc_info=True) + + raise OSError('USB library could not be found') + return CDLL(libname) + +def _setup_prototypes(lib): + # usb_dev_handle *usb_open(struct usb_device *dev); + lib.usb_open.argtypes = [POINTER(_usb_device)] + lib.usb_open.restype = _usb_dev_handle + + # int usb_close(usb_dev_handle *dev); + lib.usb_close.argtypes = [_usb_dev_handle] + + # int usb_get_string(usb_dev_handle *dev, + # int index, + # int langid, + # char *buf, + # size_t buflen); + lib.usb_get_string.argtypes = [ + _usb_dev_handle, + c_int, + c_int, + c_char_p, + c_size_t + ] + + # int usb_get_string_simple(usb_dev_handle *dev, + # int index, + # char *buf, + # size_t buflen); + lib.usb_get_string_simple.argtypes = [ + _usb_dev_handle, + c_int, + c_char_p, + c_size_t + ] + + # int usb_get_descriptor_by_endpoint(usb_dev_handle *udev, + # int ep, + # unsigned char type, + # unsigned char index, + # void *buf, + # int size); + lib.usb_get_descriptor_by_endpoint.argtypes = [ + _usb_dev_handle, + c_int, + c_ubyte, + c_ubyte, + c_void_p, + c_int + ] + + # int usb_get_descriptor(usb_dev_handle *udev, + # unsigned char type, + # unsigned char index, + # void *buf, + # int size); + lib.usb_get_descriptor.argtypes = [ + _usb_dev_handle, + c_ubyte, + c_ubyte, + c_void_p, + c_int + ] + + # int usb_bulk_write(usb_dev_handle *dev, + # int ep, + # const char *bytes, + # int size, + # int timeout); + lib.usb_bulk_write.argtypes = [ + _usb_dev_handle, + c_int, + c_char_p, + c_int, + c_int + ] + + # int usb_bulk_read(usb_dev_handle *dev, + # int ep, + # char *bytes, + # int size, + # int timeout); + lib.usb_bulk_read.argtypes = [ + _usb_dev_handle, + c_int, + c_char_p, + c_int, + c_int + ] + + # int usb_interrupt_write(usb_dev_handle *dev, + # int ep, + # const char *bytes, + # int size, + # int timeout); + lib.usb_interrupt_write.argtypes = [ + _usb_dev_handle, + c_int, + c_char_p, + c_int, + c_int + ] + + # int usb_interrupt_read(usb_dev_handle *dev, + # int ep, + # char *bytes, + # int size, + # int timeout); + lib.usb_interrupt_read.argtypes = [ + _usb_dev_handle, + c_int, + c_char_p, + c_int, + c_int + ] + + # int usb_control_msg(usb_dev_handle *dev, + # int requesttype, + # int request, + # int value, + # int index, + # char *bytes, + # int size, + # int timeout); + lib.usb_control_msg.argtypes = [ + _usb_dev_handle, + c_int, + c_int, + c_int, + c_int, + c_char_p, + c_int, + c_int + ] + + # int usb_set_configuration(usb_dev_handle *dev, int configuration); + lib.usb_set_configuration.argtypes = [_usb_dev_handle, c_int] + + # int usb_claim_interface(usb_dev_handle *dev, int interface); + lib.usb_claim_interface.argtypes = [_usb_dev_handle, c_int] + + # int usb_release_interface(usb_dev_handle *dev, int interface); + lib.usb_release_interface.argtypes = [_usb_dev_handle, c_int] + + # int usb_set_altinterface(usb_dev_handle *dev, int alternate); + lib.usb_set_altinterface.argtypes = [_usb_dev_handle, c_int] + + # int usb_resetep(usb_dev_handle *dev, unsigned int ep); + lib.usb_resetep.argtypes = [_usb_dev_handle, c_int] + + # int usb_clear_halt(usb_dev_handle *dev, unsigned int ep); + lib.usb_clear_halt.argtypes = [_usb_dev_handle, c_int] + + # int usb_reset(usb_dev_handle *dev); + lib.usb_reset.argtypes = [_usb_dev_handle] + + # char *usb_strerror(void); + lib.usb_strerror.argtypes = [] + lib.usb_strerror.restype = c_char_p + + # void usb_set_debug(int level); + lib.usb_set_debug.argtypes = [c_int] + + # struct usb_device *usb_device(usb_dev_handle *dev); + lib.usb_device.argtypes = [_usb_dev_handle] + lib.usb_device.restype = POINTER(_usb_device) + + # struct usb_bus *usb_get_busses(void); + lib.usb_get_busses.restype = POINTER(_usb_bus) + +def _check(retval): + if retval is None: + errmsg = _lib.usb_strerror() + else: + ret = int(retval) + if ret < 0: + errmsg = _lib.usb_strerror() + # No error means that we need to get the error + # message from the return code + # Thanks to Nicholas Wheeler to point out the problem... + # Also see issue #2860940 + if errmsg.lower() == 'no error': + errmsg = os.strerror(-ret) + else: + return ret + raise USBError(errmsg, ret) + +# implementation of libusb 0.1.x backend +class _LibUSB(usb.backend.IBackend): + @methodtrace(_logger) + def enumerate_devices(self): + _check(_lib.usb_find_busses()) + _check(_lib.usb_find_devices()) + bus = _lib.usb_get_busses() + while bool(bus): + dev = bus[0].devices + while bool(dev): + yield dev[0] + dev = dev[0].next + bus = bus[0].next + + @methodtrace(_logger) + def get_device_descriptor(self, dev): + return _DeviceDescriptor(dev) + + @methodtrace(_logger) + def get_configuration_descriptor(self, dev, config): + if config >= dev.descriptor.bNumConfigurations: + raise IndexError('Invalid configuration index ' + str(config)) + return dev.config[config] + + @methodtrace(_logger) + def get_interface_descriptor(self, dev, intf, alt, config): + cfgdesc = self.get_configuration_descriptor(dev, config) + if intf >= cfgdesc.bNumInterfaces: + raise IndexError('Invalid interface index ' + str(interface)) + interface = cfgdesc.interface[intf] + if alt >= interface.num_altsetting: + raise IndexError('Invalid alternate setting index ' + str(alt)) + return interface.altsetting[alt] + + @methodtrace(_logger) + def get_endpoint_descriptor(self, dev, ep, intf, alt, config): + interface = self.get_interface_descriptor(dev, intf, alt, config) + if ep >= interface.bNumEndpoints: + raise IndexError('Invalid endpoint index ' + str(ep)) + return interface.endpoint[ep] + + @methodtrace(_logger) + def open_device(self, dev): + return _check(_lib.usb_open(dev)) + + @methodtrace(_logger) + def close_device(self, dev_handle): + _check(_lib.usb_close(dev_handle)) + + @methodtrace(_logger) + def set_configuration(self, dev_handle, config_value): + _check(_lib.usb_set_configuration(dev_handle, config_value)) + + @methodtrace(_logger) + def set_interface_altsetting(self, dev_handle, intf, altsetting): + _check(_lib.usb_set_altinterface(dev_handle, altsetting)) + + @methodtrace(_logger) + def get_configuration(self, dev_handle): + bmRequestType = usb.util.build_request_type( + usb.util.CTRL_IN, + usb.util.CTRL_TYPE_STANDARD, + usb.util.CTRL_RECIPIENT_DEVICE + ) + return self.ctrl_transfer(dev_handle, + bmRequestType, + 0x08, + 0, + 0, + 1, + 100 + )[0] + + + @methodtrace(_logger) + def claim_interface(self, dev_handle, intf): + _check(_lib.usb_claim_interface(dev_handle, intf)) + + @methodtrace(_logger) + def release_interface(self, dev_handle, intf): + _check(_lib.usb_release_interface(dev_handle, intf)) + + @methodtrace(_logger) + def bulk_write(self, dev_handle, ep, intf, data, timeout): + return self.__write(_lib.usb_bulk_write, + dev_handle, + ep, + intf, + data, timeout) + + @methodtrace(_logger) + def bulk_read(self, dev_handle, ep, intf, size, timeout): + return self.__read(_lib.usb_bulk_read, + dev_handle, + ep, + intf, + size, + timeout) + + @methodtrace(_logger) + def intr_write(self, dev_handle, ep, intf, data, timeout): + return self.__write(_lib.usb_interrupt_write, + dev_handle, + ep, + intf, + data, + timeout) + + @methodtrace(_logger) + def intr_read(self, dev_handle, ep, intf, size, timeout): + return self.__read(_lib.usb_interrupt_read, + dev_handle, + ep, + intf, + size, + timeout) + + @methodtrace(_logger) + def ctrl_transfer(self, + dev_handle, + bmRequestType, + bRequest, + wValue, + wIndex, + data_or_wLength, + timeout): + if usb.util.ctrl_direction(bmRequestType) == usb.util.CTRL_OUT: + address, length = data_or_wLength.buffer_info() + length *= data_or_wLength.itemsize + return _check(_lib.usb_control_msg( + dev_handle, + bmRequestType, + bRequest, + wValue, + wIndex, + cast(address, c_char_p), + length, + timeout + )) + else: + data = _interop.as_array((0,) * data_or_wLength) + read = int(_check(_lib.usb_control_msg( + dev_handle, + bmRequestType, + bRequest, + wValue, + wIndex, + cast(data.buffer_info()[0], + c_char_p), + data_or_wLength, + timeout + ))) + return data[:read] + + @methodtrace(_logger) + def reset_device(self, dev_handle): + _check(_lib.usb_reset(dev_handle)) + + @methodtrace(_logger) + def detach_kernel_driver(self, dev_handle, intf): + _check(_lib.usb_detach_kernel_driver_np(dev_handle, intf)) + + def __write(self, fn, dev_handle, ep, intf, data, timeout): + address, length = data.buffer_info() + length *= data.itemsize + return int(_check(fn( + dev_handle, + ep, + cast(address, c_char_p), + length, + timeout + ))) + + def __read(self, fn, dev_handle, ep, intf, size, timeout): + data = _interop.as_array((0,) * size) + address, length = data.buffer_info() + length *= data.itemsize + ret = int(_check(fn( + dev_handle, + ep, + cast(address, c_char_p), + length, + timeout + ))) + return data[:ret] + +def get_backend(): + global _lib + try: + if _lib is None: + _lib = _load_library() + _setup_prototypes(_lib) + _lib.usb_init() + return _LibUSB() + except Exception: + _logger.error('Error loading libusb 0.1 backend', exc_info=True) + return None diff --git a/plugins/wedo_plugin/usb/backend/libusb10.py b/plugins/wedo_plugin/usb/backend/libusb10.py new file mode 100644 index 0000000..cb2a566 --- /dev/null +++ b/plugins/wedo_plugin/usb/backend/libusb10.py @@ -0,0 +1,654 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +from ctypes import * +import ctypes.util +import usb.util +import sys +import logging +from usb._debug import methodtrace +import usb._interop as _interop +import errno + +__author__ = 'Wander Lairson Costa' + +__all__ = [ + 'get_backend', + 'LIBUSB_SUCESS', + 'LIBUSB_ERROR_IO', + 'LIBUSB_ERROR_INVALID_PARAM', + 'LIBUSB_ERROR_ACCESS', + 'LIBUSB_ERROR_NO_DEVICE', + 'LIBUSB_ERROR_NOT_FOUND', + 'LIBUSB_ERROR_BUSY', + 'LIBUSB_ERROR_TIMEOUT', + 'LIBUSB_ERROR_OVERFLOW', + 'LIBUSB_ERROR_PIPE', + 'LIBUSB_ERROR_INTERRUPTED', + 'LIBUSB_ERROR_NO_MEM', + 'LIBUSB_ERROR_NOT_SUPPORTED', + 'LIBUSB_ERROR_OTHER' + ] + +_logger = logging.getLogger('usb.backend.libusb10') + +# libusb.h + +# return codes + +LIBUSB_SUCCESS = 0 +LIBUSB_ERROR_IO = -1 +LIBUSB_ERROR_INVALID_PARAM = -2 +LIBUSB_ERROR_ACCESS = -3 +LIBUSB_ERROR_NO_DEVICE = -4 +LIBUSB_ERROR_NOT_FOUND = -5 +LIBUSB_ERROR_BUSY = -6 +LIBUSB_ERROR_TIMEOUT = -7 +LIBUSB_ERROR_OVERFLOW = -8 +LIBUSB_ERROR_PIPE = -9 +LIBUSB_ERROR_INTERRUPTED = -10 +LIBUSB_ERROR_NO_MEM = -11 +LIBUSB_ERROR_NOT_SUPPORTED = -12 +LIBUSB_ERROR_OTHER = -99 + +# map return codes to strings +_str_error = { + LIBUSB_SUCCESS:'Success (no error)', + LIBUSB_ERROR_IO:'Input/output error', + LIBUSB_ERROR_INVALID_PARAM:'Invalid parameter', + LIBUSB_ERROR_ACCESS:'Access denied (insufficient permissions)', + LIBUSB_ERROR_NO_DEVICE:'No such device (it may have been disconnected)', + LIBUSB_ERROR_NOT_FOUND:'Entity not found', + LIBUSB_ERROR_BUSY:'Resource busy', + LIBUSB_ERROR_TIMEOUT:'Operation timed out', + LIBUSB_ERROR_OVERFLOW:'Overflow', + LIBUSB_ERROR_PIPE:'Pipe error', + LIBUSB_ERROR_INTERRUPTED:'System call interrupted (perhaps due to signal)', + LIBUSB_ERROR_NO_MEM:'Insufficient memory', + LIBUSB_ERROR_NOT_SUPPORTED:'Operation not supported or unimplemented on this platform', + LIBUSB_ERROR_OTHER:'Unknown error' +} + +# map return code to errno values +_libusb_errno = { + LIBUSB_SUCCESS:None, + LIBUSB_ERROR_IO:errno.__dict__.get('EIO', None), + LIBUSB_ERROR_INVALID_PARAM:errno.__dict__.get('EINVAL', None), + LIBUSB_ERROR_ACCESS:errno.__dict__.get('EACCES', None), + LIBUSB_ERROR_NO_DEVICE:errno.__dict__.get('ENODEV', None), + LIBUSB_ERROR_NOT_FOUND:errno.__dict__.get('ENOENT', None), + LIBUSB_ERROR_BUSY:errno.__dict__.get('EBUSY', None), + LIBUSB_ERROR_TIMEOUT:errno.__dict__.get('ETIMEDOUT', None), + LIBUSB_ERROR_OVERFLOW:errno.__dict__.get('EOVERFLOW', None), + LIBUSB_ERROR_PIPE:errno.__dict__.get('EPIPE', None), + LIBUSB_ERROR_INTERRUPTED:errno.__dict__.get('EINTR', None), + LIBUSB_ERROR_NO_MEM:errno.__dict__.get('ENOMEM', None), + LIBUSB_ERROR_NOT_SUPPORTED:errno.__dict__.get('ENOSYS', None), + LIBUSB_ERROR_OTHER:None +} + +# Data structures + +class _libusb_endpoint_descriptor(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bEndpointAddress', c_uint8), + ('bmAttributes', c_uint8), + ('wMaxPacketSize', c_uint16), + ('bInterval', c_uint8), + ('bRefresh', c_uint8), + ('bSynchAddress', c_uint8), + ('extra', POINTER(c_ubyte)), + ('extra_length', c_int)] + +class _libusb_interface_descriptor(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bInterfaceNumber', c_uint8), + ('bAlternateSetting', c_uint8), + ('bNumEndpoints', c_uint8), + ('bInterfaceClass', c_uint8), + ('bInterfaceSubClass', c_uint8), + ('bInterfaceProtocol', c_uint8), + ('iInterface', c_uint8), + ('endpoint', POINTER(_libusb_endpoint_descriptor)), + ('extra', POINTER(c_ubyte)), + ('extra_length', c_int)] + +class _libusb_interface(Structure): + _fields_ = [('altsetting', POINTER(_libusb_interface_descriptor)), + ('num_altsetting', c_int)] + +class _libusb_config_descriptor(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('wTotalLength', c_uint16), + ('bNumInterfaces', c_uint8), + ('bConfigurationValue', c_uint8), + ('iConfiguration', c_uint8), + ('bmAttributes', c_uint8), + ('bMaxPower', c_uint8), + ('interface', POINTER(_libusb_interface)), + ('extra', POINTER(c_ubyte)), + ('extra_length', c_int)] + +class _libusb_device_descriptor(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bcdUSB', c_uint16), + ('bDeviceClass', c_uint8), + ('bDeviceSubClass', c_uint8), + ('bDeviceProtocol', c_uint8), + ('bMaxPacketSize0', c_uint8), + ('idVendor', c_uint16), + ('idProduct', c_uint16), + ('bcdDevice', c_uint16), + ('iManufacturer', c_uint8), + ('iProduct', c_uint8), + ('iSerialNumber', c_uint8), + ('bNumConfigurations', c_uint8)] + +_lib = None +_init = None + +_libusb_device_handle = c_void_p + +def _load_library(): + if sys.platform != 'cygwin': + candidates = ('usb-1.0', 'libusb-1.0', 'usb') + for candidate in candidates: + libname = ctypes.util.find_library(candidate) + if libname is not None: break + else: + # corner cases + # cygwin predefines library names with 'cyg' instead of 'lib' + try: + return CDLL('cygusb-1.0.dll') + except Exception: + _logger.error('Libusb 1.0 could not be loaded in cygwin', exc_info=True) + + raise OSError('USB library could not be found') + # Windows backend uses stdcall calling convention + if sys.platform == 'win32': + l = WinDLL(libname) + else: + l = CDLL(libname) + # On FreeBSD 8/9, libusb 1.0 and libusb 0.1 are in the same shared + # object libusb.so, so if we found libusb library name, we must assure + # it is 1.0 version. We just try to get some symbol from 1.0 version + if not hasattr(l, 'libusb_init'): + raise OSError('USB library could not be found') + return l + +def _setup_prototypes(lib): + # void libusb_set_debug (libusb_context *ctx, int level) + lib.libusb_set_debug.argtypes = [c_void_p, c_int] + + # int libusb_init (libusb_context **context) + lib.libusb_init.argtypes = [POINTER(c_void_p)] + + # void libusb_exit (struct libusb_context *ctx) + lib.libusb_exit.argtypes = [c_void_p] + + # ssize_t libusb_get_device_list (libusb_context *ctx, + # libusb_device ***list) + lib.libusb_get_device_list.argtypes = [ + c_void_p, + POINTER(POINTER(c_void_p)) + ] + + # void libusb_free_device_list (libusb_device **list, + # int unref_devices) + lib.libusb_free_device_list.argtypes = [ + POINTER(c_void_p), + c_int + ] + + # libusb_device *libusb_ref_device (libusb_device *dev) + lib.libusb_ref_device.argtypes = [c_void_p] + lib.libusb_ref_device.restype = c_void_p + + # void libusb_unref_device(libusb_device *dev) + lib.libusb_unref_device.argtypes = [c_void_p] + + # int libusb_open(libusb_device *dev, libusb_device_handle **handle) + lib.libusb_open.argtypes = [c_void_p, POINTER(_libusb_device_handle)] + + # void libusb_close(libusb_device_handle *dev_handle) + lib.libusb_close.argtypes = [_libusb_device_handle] + + # int libusb_set_configuration(libusb_device_handle *dev, + # int configuration) + lib.libusb_set_configuration.argtypes = [_libusb_device_handle, c_int] + + # int libusb_get_configuration(libusb_device_handle *dev, + # int *config) + lib.libusb_get_configuration.argtypes = [_libusb_device_handle, POINTER(c_int)] + + # int libusb_claim_interface(libusb_device_handle *dev, + # int interface_number) + lib.libusb_claim_interface.argtypes = [_libusb_device_handle, c_int] + + # int libusb_release_interface(libusb_device_handle *dev, + # int interface_number) + lib.libusb_release_interface.argtypes = [_libusb_device_handle, c_int] + + # int libusb_set_interface_alt_setting(libusb_device_handle *dev, + # int interface_number, + # int alternate_setting) + lib.libusb_set_interface_alt_setting.argtypes = [ + _libusb_device_handle, + c_int, + c_int + ] + + # int libusb_reset_device (libusb_device_handle *dev) + lib.libusb_reset_device.argtypes = [_libusb_device_handle] + + # int libusb_kernel_driver_active(libusb_device_handle *dev, + # int interface) + lib.libusb_kernel_driver_active.argtypes = [ + _libusb_device_handle, + c_int + ] + + # int libusb_detach_kernel_driver(libusb_device_handle *dev, + # int interface) + lib.libusb_detach_kernel_driver.argtypes = [ + _libusb_device_handle, + c_int + ] + + # int libusb_attach_kernel_driver(libusb_device_handle *dev, + # int interface) + lib.libusb_attach_kernel_driver.argtypes = [ + _libusb_device_handle, + c_int + ] + + # int libusb_get_device_descriptor( + # libusb_device *dev, + # struct libusb_device_descriptor *desc + # ) + lib.libusb_get_device_descriptor.argtypes = [ + c_void_p, + POINTER(_libusb_device_descriptor) + ] + + # int libusb_get_config_descriptor( + # libusb_device *dev, + # uint8_t config_index, + # struct libusb_config_descriptor **config + # ) + lib.libusb_get_config_descriptor.argtypes = [ + c_void_p, + c_uint8, + POINTER(POINTER(_libusb_config_descriptor)) + ] + + # void libusb_free_config_descriptor( + # struct libusb_config_descriptor *config + # ) + lib.libusb_free_config_descriptor.argtypes = [ + POINTER(_libusb_config_descriptor) + ] + + # int libusb_get_string_descriptor_ascii(libusb_device_handle *dev, + # uint8_t desc_index, + # unsigned char *data, + # int length) + lib.libusb_get_string_descriptor_ascii.argtypes = [ + _libusb_device_handle, + c_uint8, + POINTER(c_ubyte), + c_int + ] + + # int libusb_control_transfer(libusb_device_handle *dev_handle, + # uint8_t bmRequestType, + # uint8_t bRequest, + # uint16_t wValue, + # uint16_t wIndex, + # unsigned char *data, + # uint16_t wLength, + # unsigned int timeout) + lib.libusb_control_transfer.argtypes = [ + _libusb_device_handle, + c_uint8, + c_uint8, + c_uint16, + c_uint16, + POINTER(c_ubyte), + c_uint16, + c_uint + ] + + #int libusb_bulk_transfer( + # struct libusb_device_handle *dev_handle, + # unsigned char endpoint, + # unsigned char *data, + # int length, + # int *transferred, + # unsigned int timeout + # ) + lib.libusb_bulk_transfer.argtypes = [ + _libusb_device_handle, + c_ubyte, + POINTER(c_ubyte), + c_int, + POINTER(c_int), + c_uint + ] + + # int libusb_interrupt_transfer( + # libusb_device_handle *dev_handle, + # unsigned char endpoint, + # unsigned char *data, + # int length, + # int *actual_length, + # unsigned int timeout + # ); + lib.libusb_interrupt_transfer.argtypes = [ + _libusb_device_handle, + c_ubyte, + POINTER(c_ubyte), + c_int, + POINTER(c_int), + c_uint + ] + + # uint8_t libusb_get_bus_number(libusb_device *dev) + lib.libusb_get_bus_number.argtypes = [c_void_p] + lib.libusb_get_bus_number.restype = c_uint8 + + # uint8_t libusb_get_device_address(libusb_device *dev) + lib.libusb_get_device_address.argtypes = [c_void_p] + lib.libusb_get_device_address.restype = c_uint8 + + + +# check a libusb function call +def _check(retval): + if isinstance(retval, int): + retval = c_int(retval) + if isinstance(retval, c_int): + if retval.value < 0: + from usb.core import USBError + ret = retval.value + raise USBError(_str_error[ret], ret, _libusb_errno[ret]) + return retval + +# wrap a device +class _Device(object): + def __init__(self, devid): + self.devid = _lib.libusb_ref_device(devid) + def __del__(self): + _lib.libusb_unref_device(self.devid) + +# wrap a descriptor and keep a reference to another object +# Thanks to Thomas Reitmayr. +class _WrapDescriptor(object): + def __init__(self, desc, obj = None): + self.obj = obj + self.desc = desc + def __getattr__(self, name): + return getattr(self.desc, name) + +# wrap a configuration descriptor +class _ConfigDescriptor(object): + def __init__(self, desc): + self.desc = desc + def __del__(self): + _lib.libusb_free_config_descriptor(self.desc) + def __getattr__(self, name): + return getattr(self.desc.contents, name) + +# initialize and finalize the library +class _Initializer(object): + def __init__(self): + _check(_lib.libusb_init(None)) + def __del__(self): + _lib.libusb_exit(None) + + +# iterator for libusb devices +class _DevIterator(object): + def __init__(self): + self.dev_list = POINTER(c_void_p)() + self.num_devs = _check(_lib.libusb_get_device_list( + None, + byref(self.dev_list)) + ).value + def __iter__(self): + for i in range(self.num_devs): + yield _Device(self.dev_list[i]) + def __del__(self): + _lib.libusb_free_device_list(self.dev_list, 1) + +# implementation of libusb 1.0 backend +class _LibUSB(usb.backend.IBackend): + @methodtrace(_logger) + def enumerate_devices(self): + return _DevIterator() + + @methodtrace(_logger) + def get_device_descriptor(self, dev): + dev_desc = _libusb_device_descriptor() + _check(_lib.libusb_get_device_descriptor(dev.devid, byref(dev_desc))) + dev_desc.bus = _lib.libusb_get_bus_number(dev.devid) + dev_desc.address = _lib.libusb_get_device_address(dev.devid) + return dev_desc + + @methodtrace(_logger) + def get_configuration_descriptor(self, dev, config): + cfg = POINTER(_libusb_config_descriptor)() + _check(_lib.libusb_get_config_descriptor(dev.devid, + config, byref(cfg))) + return _ConfigDescriptor(cfg) + + @methodtrace(_logger) + def get_interface_descriptor(self, dev, intf, alt, config): + cfg = self.get_configuration_descriptor(dev, config) + if intf >= cfg.bNumInterfaces: + raise IndexError('Invalid interface index ' + str(intf)) + i = cfg.interface[intf] + if alt >= i.num_altsetting: + raise IndexError('Invalid alternate setting index ' + str(alt)) + return _WrapDescriptor(i.altsetting[alt], cfg) + + @methodtrace(_logger) + def get_endpoint_descriptor(self, dev, ep, intf, alt, config): + i = self.get_interface_descriptor(dev, intf, alt, config) + if ep > i.bNumEndpoints: + raise IndexError('Invalid endpoint index ' + str(ep)) + return _WrapDescriptor(i.endpoint[ep], i) + + @methodtrace(_logger) + def open_device(self, dev): + handle = _libusb_device_handle() + _check(_lib.libusb_open(dev.devid, byref(handle))) + return handle + + @methodtrace(_logger) + def close_device(self, dev_handle): + _lib.libusb_close(dev_handle) + + @methodtrace(_logger) + def set_configuration(self, dev_handle, config_value): + _check(_lib.libusb_set_configuration(dev_handle, config_value)) + + @methodtrace(_logger) + def get_configuration(self, dev_handle): + config = c_int() + _check(_lib.libusb_get_configuration(dev_handle, byref(config))) + return config.value + + @methodtrace(_logger) + def set_interface_altsetting(self, dev_handle, intf, altsetting): + _check(_lib.libusb_set_interface_alt_setting(dev_handle, + intf, + altsetting)) + + @methodtrace(_logger) + def claim_interface(self, dev_handle, intf): + _check(_lib.libusb_claim_interface(dev_handle, intf)) + + @methodtrace(_logger) + def release_interface(self, dev_handle, intf): + _check(_lib.libusb_release_interface(dev_handle, intf)) + + @methodtrace(_logger) + def bulk_write(self, dev_handle, ep, intf, data, timeout): + return self.__write(_lib.libusb_bulk_transfer, + dev_handle, + ep, + intf, + data, + timeout) + + @methodtrace(_logger) + def bulk_read(self, dev_handle, ep, intf, size, timeout): + return self.__read(_lib.libusb_bulk_transfer, + dev_handle, + ep, + intf, + size, + timeout) + + @methodtrace(_logger) + def intr_write(self, dev_handle, ep, intf, data, timeout): + return self.__write(_lib.libusb_interrupt_transfer, + dev_handle, + ep, + intf, + data, + timeout) + + @methodtrace(_logger) + def intr_read(self, dev_handle, ep, intf, size, timeout): + return self.__read(_lib.libusb_interrupt_transfer, + dev_handle, + ep, + intf, + size, + timeout) + +# TODO: implement isochronous +# @methodtrace(_logger) +# def iso_write(self, dev_handle, ep, intf, data, timeout): +# pass + + +# @methodtrace(_logger) +# def iso_read(self, dev_handle, ep, intf, size, timeout): +# pass + + @methodtrace(_logger) + def ctrl_transfer(self, + dev_handle, + bmRequestType, + bRequest, + wValue, + wIndex, + data_or_wLength, + timeout): + if usb.util.ctrl_direction(bmRequestType) == usb.util.CTRL_OUT: + buff = data_or_wLength + else: + buff = _interop.as_array((0,) * data_or_wLength) + + addr, length = buff.buffer_info() + length *= buff.itemsize + + ret = _check(_lib.libusb_control_transfer(dev_handle, + bmRequestType, + bRequest, + wValue, + wIndex, + cast(addr, + POINTER(c_ubyte)), + length, + timeout)) + + if usb.util.ctrl_direction(bmRequestType) == usb.util.CTRL_OUT: + return ret.value + else: + return buff[:ret.value] + + @methodtrace(_logger) + def reset_device(self, dev_handle): + _check(_lib.libusb_reset_device(dev_handle)) + + @methodtrace(_logger) + def is_kernel_driver_active(self, dev_handle, intf): + return bool(_check(_lib.libusb_kernel_driver_active(dev_handle, intf))) + + @methodtrace(_logger) + def detach_kernel_driver(self, dev_handle, intf): + _check(_lib.libusb_detach_kernel_driver(dev_handle, intf)) + + @methodtrace(_logger) + def attach_kernel_driver(self, dev_handle, intf): + _check(_lib.libusb_attach_kernel_driver(dev_handle, intf)) + + def __write(self, fn, dev_handle, ep, intf, data, timeout): + address, length = data.buffer_info() + length *= data.itemsize + transferred = c_int() + _check(fn(dev_handle, + ep, + cast(address, POINTER(c_ubyte)), + length, + byref(transferred), + timeout)) + return transferred.value + + def __read(self, fn, dev_handle, ep, intf, size, timeout): + data = _interop.as_array((0,) * size) + address, length = data.buffer_info() + length *= data.itemsize + transferred = c_int() + _check(fn(dev_handle, + ep, + cast(address, POINTER(c_ubyte)), + length, + byref(transferred), + timeout)) + return data[:transferred.value] + +def get_backend(): + global _lib, _init + try: + if _lib is None: + _lib = _load_library() + _setup_prototypes(_lib) + _init = _Initializer() + return _LibUSB() + except Exception: + _logger.error('Error loading libusb 1.0 backend', exc_info=True) + return None diff --git a/plugins/wedo_plugin/usb/backend/openusb.py b/plugins/wedo_plugin/usb/backend/openusb.py new file mode 100644 index 0000000..23e4d45 --- /dev/null +++ b/plugins/wedo_plugin/usb/backend/openusb.py @@ -0,0 +1,707 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +from ctypes import * +import ctypes.util +import usb.util +from usb._debug import methodtrace +import logging +import errno + +__author__ = 'Wander Lairson Costa' + +__all__ = [ + 'get_backend' + 'OPENUSB_SUCCESS' + 'OPENUSB_PLATFORM_FAILURE' + 'OPENUSB_NO_RESOURCES' + 'OPENUSB_NO_BANDWIDTH' + 'OPENUSB_NOT_SUPPORTED' + 'OPENUSB_HC_HARDWARE_ERROR' + 'OPENUSB_INVALID_PERM' + 'OPENUSB_BUSY' + 'OPENUSB_BADARG' + 'OPENUSB_NOACCESS' + 'OPENUSB_PARSE_ERROR' + 'OPENUSB_UNKNOWN_DEVICE' + 'OPENUSB_INVALID_HANDLE' + 'OPENUSB_SYS_FUNC_FAILURE' + 'OPENUSB_NULL_LIST' + 'OPENUSB_CB_CONTINUE' + 'OPENUSB_CB_TERMINATE' + 'OPENUSB_IO_STALL' + 'OPENUSB_IO_CRC_ERROR' + 'OPENUSB_IO_DEVICE_HUNG' + 'OPENUSB_IO_REQ_TOO_BIG' + 'OPENUSB_IO_BIT_STUFFING' + 'OPENUSB_IO_UNEXPECTED_PID' + 'OPENUSB_IO_DATA_OVERRUN' + 'OPENUSB_IO_DATA_UNDERRUN' + 'OPENUSB_IO_BUFFER_OVERRUN' + 'OPENUSB_IO_BUFFER_UNDERRUN' + 'OPENUSB_IO_PID_CHECK_FAILURE' + 'OPENUSB_IO_DATA_TOGGLE_MISMATCH' + 'OPENUSB_IO_TIMEOUT' + 'OPENUSB_IO_CANCELED' + ] + +_logger = logging.getLogger('usb.backend.openusb') + +OPENUSB_SUCCESS = 0 +OPENUSB_PLATFORM_FAILURE = -1 +OPENUSB_NO_RESOURCES = -2 +OPENUSB_NO_BANDWIDTH = -3 +OPENUSB_NOT_SUPPORTED = -4 +OPENUSB_HC_HARDWARE_ERROR = -5 +OPENUSB_INVALID_PERM = -6 +OPENUSB_BUSY = -7 +OPENUSB_BADARG = -8 +OPENUSB_NOACCESS = -9 +OPENUSB_PARSE_ERROR = -10 +OPENUSB_UNKNOWN_DEVICE = -11 +OPENUSB_INVALID_HANDLE = -12 +OPENUSB_SYS_FUNC_FAILURE = -13 +OPENUSB_NULL_LIST = -14 +OPENUSB_CB_CONTINUE = -20 +OPENUSB_CB_TERMINATE = -21 +OPENUSB_IO_STALL = -50 +OPENUSB_IO_CRC_ERROR = -51 +OPENUSB_IO_DEVICE_HUNG = -52 +OPENUSB_IO_REQ_TOO_BIG = -53 +OPENUSB_IO_BIT_STUFFING = -54 +OPENUSB_IO_UNEXPECTED_PID = -55 +OPENUSB_IO_DATA_OVERRUN = -56 +OPENUSB_IO_DATA_UNDERRUN = -57 +OPENUSB_IO_BUFFER_OVERRUN = -58 +OPENUSB_IO_BUFFER_UNDERRUN = -59 +OPENUSB_IO_PID_CHECK_FAILURE = -60 +OPENUSB_IO_DATA_TOGGLE_MISMATCH = -61 +OPENUSB_IO_TIMEOUT = -62 +OPENUSB_IO_CANCELED = -63 + +_openusb_errno = { + OPENUSB_SUCCESS:None, + OPENUSB_PLATFORM_FAILURE:None, + OPENUSB_NO_RESOURCES:errno.__dict__.get('ENOMEM', None), + OPENUSB_NO_BANDWIDTH:None, + OPENUSB_NOT_SUPPORTED:errno.__dict__.get('ENOSYS', None), + OPENUSB_HC_HARDWARE_ERROR:errno.__dict__.get('EIO', None), + OPENUSB_INVALID_PERM:errno.__dict__.get('EBADF', None), + OPENUSB_BUSY:errno.__dict__.get('EBUSY', None), + OPENUSB_BADARG:errno.__dict__.get('EINVAL', None), + OPENUSB_NOACCESS:errno.__dict__.get('EACCES', None), + OPENUSB_PARSE_ERROR:None, + OPENUSB_UNKNOWN_DEVICE:errno.__dict__.get('ENODEV', None), + OPENUSB_INVALID_HANDLE:errno.__dict__.get('EINVAL', None), + OPENUSB_SYS_FUNC_FAILURE:None, + OPENUSB_NULL_LIST:None, + OPENUSB_CB_CONTINUE:None, + OPENUSB_CB_TERMINATE:None, + OPENUSB_IO_STALL:errno.__dict__.get('EIO', None), + OPENUSB_IO_CRC_ERROR:errno.__dict__.get('EIO', None), + OPENUSB_IO_DEVICE_HUNG:errno.__dict__.get('EIO', None), + OPENUSB_IO_REQ_TOO_BIG:errno.__dict__.get('E2BIG', None), + OPENUSB_IO_BIT_STUFFING:None, + OPENUSB_IO_UNEXPECTED_PID:errno.__dict__.get('ESRCH', None), + OPENUSB_IO_DATA_OVERRUN:errno.__dict__.get('EOVERFLOW', None), + OPENUSB_IO_DATA_UNDERRUN:None, + OPENUSB_IO_BUFFER_OVERRUN:errno.__dict__.get('EOVERFLOW', None), + OPENUSB_IO_BUFFER_UNDERRUN:None, + OPENUSB_IO_PID_CHECK_FAILURE:None, + OPENUSB_IO_DATA_TOGGLE_MISMATCH:None, + OPENUSB_IO_TIMEOUT:errno.__dict__.get('ETIMEDOUT', None), + OPENUSB_IO_CANCELED:errno.__dict__.get('EINTR', None) +} + +class _usb_endpoint_desc(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bEndpointAddress', c_uint8), + ('bmAttributes', c_uint8), + ('wMaxPacketSize', c_uint16), + ('bInterval', c_uint8), + ('bRefresh', c_uint8), + ('bSynchAddress', c_uint8)] + +class _usb_interface_desc(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bInterfaceNumber', c_uint8), + ('bAlternateSetting', c_uint8), + ('bNumEndpoints', c_uint8), + ('bInterfaceClass', c_uint8), + ('bInterfaceSubClass', c_uint8), + ('bInterfaceProtocol', c_uint8), + ('iInterface', c_uint8)] + +class _usb_config_desc(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('wTotalLength', c_uint16), + ('bNumInterfaces', c_uint8), + ('bConfigurationValue', c_uint8), + ('iConfiguration', c_uint8), + ('bmAttributes', c_uint8), + ('bMaxPower', c_uint8)] + +class _usb_device_desc(Structure): + _fields_ = [('bLength', c_uint8), + ('bDescriptorType', c_uint8), + ('bcdUSB', c_uint16), + ('bDeviceClass', c_uint8), + ('bDeviceSubClass', c_uint8), + ('bDeviceProtocol', c_uint8), + ('bMaxPacketSize0', c_uint8), + ('idVendor', c_uint16), + ('idProduct', c_uint16), + ('bcdDevice', c_uint16), + ('iManufacturer', c_uint8), + ('iProduct', c_uint8), + ('iSerialNumber', c_uint8), + ('bNumConfigurations', c_uint8)] + +class _openusb_request_result(Structure): + _fields_ = [('status', c_int32), + ('transfered_bytes', c_uint32)] + +class _openusb_ctrl_request(Structure): + class _openusb_ctrl_setup(Structure): + _fields_ = [('bmRequestType', c_uint8), + ('bRequest', c_uint8), + ('wValue', c_uint16), + ('wIndex', c_uint16)] + _fields_ = [('payload', POINTER(c_uint8)), + ('length', c_uint32), + ('timeout', c_uint32), + ('flags', c_uint32), + ('result', _openusb_request_result), + ('next', c_void_p)] + +class _openusb_intr_request(Structure): + _fields_ = [('interval', c_uint16), + ('payload', POINTER(c_uint8)), + ('length', c_uint32), + ('timeout', c_uint32), + ('flags', c_uint32), + ('result', _openusb_request_result), + ('next', c_void_p)] + +class _openusb_bulk_request(Structure): + _fields_ = [('payload', POINTER(c_uint8)), + ('length', c_uint32), + ('timeout', c_uint32), + ('flags', c_uint32), + ('result', _openusb_request_result), + ('next', c_void_p)] + +class _openusb_isoc_pkts(Structure): + class _openusb_isoc_packet(Structure): + _fields_ = [('payload', POINTER(c_uint8)), + ('length', c_uint32)] + _fields_ = [('num_packets', c_uint32), + ('packets', POINTER(_openusb_isoc_packet))] + +class _openusb_isoc_request(Structure): + _fields_ = [('start_frame', c_uint32), + ('flags', c_uint32), + ('pkts', _openusb_isoc_pkts), + ('isoc_results', POINTER(_openusb_request_result)), + ('isoc_status', c_int32), + ('next', c_void_p)] + +_openusb_devid = c_uint64 +_openusb_busid = c_uint64 +_openusb_handle = c_uint64 +_openusb_dev_handle = c_uint64 + +_lib = None +_ctx = None + +def _load_library(): + libname = ctypes.util.find_library('openusb') + if libname is None: + raise OSError('USB library could not be found') + return CDLL(libname) + +def _setup_prototypes(lib): + # int32_t openusb_init(uint32_t flags , openusb_handle_t *handle); + lib.openusb_init.argtypes = [c_uint32, POINTER(_openusb_handle)] + lib.openusb_init.restype = c_int32 + + # void openusb_fini(openusb_handle_t handle ); + lib.openusb_fini.argtypes = [_openusb_handle] + + # uint32_t openusb_get_busid_list(openusb_handle_t handle, + # openusb_busid_t **busids, + # uint32_t *num_busids); + lib.openusb_get_busid_list.argtypes = [ + _openusb_handle, + POINTER(POINTER(_openusb_busid)), + POINTER(c_uint32) + ] + + # void openusb_free_busid_list(openusb_busid_t * busids); + lib.openusb_free_busid_list.argtypes = [POINTER(_openusb_busid)] + + # uint32_t openusb_get_devids_by_bus(openusb_handle_t handle, + # openusb_busid_t busid, + # openusb_devid_t **devids, + # uint32_t *num_devids); + lib.openusb_get_devids_by_bus.argtypes = [ + _openusb_handle, + _openusb_busid, + POINTER(POINTER(_openusb_devid)), + POINTER(c_uint32) + ] + + lib.openusb_get_devids_by_bus.restype = c_int32 + + # void openusb_free_devid_list(openusb_devid_t * devids); + lib.openusb_free_devid_list.argtypes = [POINTER(_openusb_devid)] + + # int32_t openusb_open_device(openusb_handle_t handle, + # openusb_devid_t devid , + # uint32_t flags, + # openusb_dev_handle_t *dev); + lib.openusb_open_device.argtypes = [ + _openusb_handle, + _openusb_devid, + c_uint32, + POINTER(_openusb_dev_handle) + ] + + lib.openusb_open_device.restype = c_int32 + + # int32_t openusb_close_device(openusb_dev_handle_t dev); + lib.openusb_close_device.argtypes = [_openusb_dev_handle] + lib.openusb_close_device.restype = c_int32 + + # int32_t openusb_set_configuration(openusb_dev_handle_t dev, + # uint8_t cfg); + lib.openusb_set_configuration.argtypes = [_openusb_dev_handle, c_uint8] + lib.openusb_set_configuration.restype = c_int32 + + # int32_t openusb_get_configuration(openusb_dev_handle_t dev, + # uint8_t *cfg); + lib.openusb_get_configuration.argtypes = [_openusb_dev_handle, POINTER(c_uint8)] + lib.openusb_get_configuration.restype = c_int32 + + # int32_t openusb_claim_interface(openusb_dev_handle_t dev, + # uint8_t ifc, + # openusb_init_flag_t flags); + lib.openusb_claim_interface.argtypes = [ + _openusb_dev_handle, + c_uint8, + c_int + ] + + lib.openusb_claim_interface.restype = c_int32 + + # int32_t openusb_release_interface(openusb_dev_handle_t dev, + # uint8_t ifc); + lib.openusb_release_interface.argtypes = [ + _openusb_dev_handle, + c_uint8 + ] + + lib.openusb_release_interface.restype = c_int32 + + # int32_topenusb_set_altsetting(openusb_dev_handle_t dev, + # uint8_t ifc, + # uint8_t alt); + lib.openusb_set_altsetting.argtypes = [ + _openusb_dev_handle, + c_uint8, + c_uint8 + ] + lib.openusb_set_altsetting.restype = c_int32 + + # int32_t openusb_reset(openusb_dev_handle_t dev); + lib.openusb_reset.argtypes = [_openusb_dev_handle] + lib.openusb_reset.restype = c_int32 + + # int32_t openusb_parse_device_desc(openusb_handle_t handle, + # openusb_devid_t devid, + # uint8_t *buffer, + # uint16_t buflen, + # usb_device_desc_t *devdesc); + lib.openusb_parse_device_desc.argtypes = [ + _openusb_handle, + _openusb_devid, + POINTER(c_uint8), + c_uint16, + POINTER(_usb_device_desc) + ] + + lib.openusb_parse_device_desc.restype = c_int32 + + # int32_t openusb_parse_config_desc(openusb_handle_t handle, + # openusb_devid_t devid, + # uint8_t *buffer, + # uint16_t buflen, + # uint8_t cfgidx, + # usb_config_desc_t *cfgdesc); + lib.openusb_parse_config_desc.argtypes = [ + _openusb_handle, + _openusb_devid, + POINTER(c_uint8), + c_uint16, + c_uint8, + POINTER(_usb_config_desc) + ] + lib.openusb_parse_config_desc.restype = c_int32 + + # int32_t openusb_parse_interface_desc(openusb_handle_t handle, + # openusb_devid_t devid, + # uint8_t *buffer, + # uint16_t buflen, + # uint8_t cfgidx, + # uint8_t ifcidx, + # uint8_t alt, + # usb_interface_desc_t *ifcdesc); + lib.openusb_parse_interface_desc.argtypes = [ + _openusb_handle, + _openusb_devid, + POINTER(c_uint8), + c_uint16, + c_uint8, + c_uint8, + c_uint8, + POINTER(_usb_interface_desc) + ] + + lib.openusb_parse_interface_desc.restype = c_int32 + + # int32_t openusb_parse_endpoint_desc(openusb_handle_t handle, + # openusb_devid_t devid, + # uint8_t *buffer, + # uint16_t buflen, + # uint8_t cfgidx, + # uint8_t ifcidx, + # uint8_t alt, + # uint8_t eptidx, + # usb_endpoint_desc_t *eptdesc); + lib.openusb_parse_endpoint_desc.argtypes = [ + _openusb_handle, + _openusb_devid, + POINTER(c_uint8), + c_uint16, + c_uint8, + c_uint8, + c_uint8, + c_uint8, + POINTER(_usb_endpoint_desc) + ] + + lib.openusb_parse_interface_desc.restype = c_int32 + + # const char *openusb_strerror(int32_t error ); + lib.openusb_strerror.argtypes = [c_int32] + lib.openusb_strerror.restype = c_char_p + + # int32_t openusb_ctrl_xfer(openusb_dev_handle_t dev, + # uint8_t ifc, + # uint8_t ept, + # openusb_ctrl_request_t *ctrl); + lib.openusb_ctrl_xfer.argtypes = [ + _openusb_dev_handle, + c_uint8, + c_uint8, + POINTER(_openusb_ctrl_request) + ] + + lib.openusb_ctrl_xfer.restype = c_int32 + + # int32_t openusb_intr_xfer(openusb_dev_handle_t dev, + # uint8_t ifc, + # uint8_t ept, + # openusb_intr_request_t *intr); + lib.openusb_intr_xfer.argtypes = [ + _openusb_dev_handle, + c_uint8, + c_uint8, + POINTER(_openusb_intr_request) + ] + + lib.openusb_bulk_xfer.restype = c_int32 + + # int32_t openusb_bulk_xfer(openusb_dev_handle_t dev, + # uint8_t ifc, + # uint8_t ept, + # openusb_bulk_request_t *bulk); + lib.openusb_bulk_xfer.argtypes = [ + _openusb_dev_handle, + c_uint8, + c_uint8, + POINTER(_openusb_bulk_request) + ] + + lib.openusb_bulk_xfer.restype = c_int32 + + # int32_t openusb_isoc_xfer(openusb_dev_handle_t dev, + # uint8_t ifc, + # uint8_t ept, + # openusb_isoc_request_t *isoc); + lib.openusb_isoc_xfer.argtypes = [ + _openusb_dev_handle, + c_uint8, + c_uint8, + POINTER(_openusb_isoc_request) + ] + + lib.openusb_isoc_xfer.restype = c_int32 + +def _check(retval): + ret = retval.value + if ret != 0: + from usb.core import USBError + raise USBError(_lib.openusb_strerror(ret), ret, _openusb_errno[ret]) + return retval + +class _Context(object): + def __init__(self): + self.handle = _openusb_handle() + _check(_lib.openusb_init(0, byref(self.handle))) + def __del__(self): + _lib.openusb_fini(self.handle) + +class _BusIterator(object): + def __init__(self): + self.buslist = POINTER(openusb_busid)() + num_busids = c_uint32() + _check(_lib.openusb_get_busid_list(_ctx.handle, + byref(self.buslist), + byref(num_busids))) + self.num_busids = num_busids.value + def __iter__(self): + for i in range(self.num_busids): + yield self.buslist[i] + def __del__(self): + _lib.openusb_free_busid_list(self.buslist) + +class _DevIterator(object): + def __init__(self, busid): + self.devlist = POINTER(_openusb_devid)() + num_devids = c_uint32() + _check(_lib.openusb_get_devids_by_bus(_ctx.handle, + busid, + byref(self.devlist), + byref(num_devids))) + self.num_devids = num_devids.value + def __iter__(self): + for i in range(self.num_devids): + yield self.devlist[i] + def __del__(self): + _lib.openusb_free_devid_list(self.devlist) + +class _OpenUSB(usb.backend.IBackend): + @methodtrace(_logger) + def enumerate_devices(self): + for bus in _BusIterator(): + for devid in _DevIterator(bus): + yield devid + + @methodtrace(_logger) + def get_device_descriptor(self, dev): + desc = _usb_device_desc() + _check(_lib.openusb_parse_device_desc(_ctx.handle, + dev, + None, + 0, + byref(desc))) + desc.bus = None + desc.address = None + return desc + + @methodtrace(_logger) + def get_configuration_descriptor(self, dev, config): + desc = _usb_config_desc() + _check(_lib.openusb_parse_config_desc(_ctx.handle, + dev, + None, + 0, + config, + byref(desc))) + return desc + + @methodtrace(_logger) + def get_interface_descriptor(self, dev, intf, alt, config): + desc = _usb_interface_desc() + _check(_lib.openusb_parse_interface_desc(_ctx.handle, + dev, + None, + 0, + config, + intf, + alt, + byref(desc))) + return desc + + @methodtrace(_logger) + def get_endpoint_descriptor(self, dev, ep, intf, alt, config): + desc = _usb_endpoint_desc() + _check(_lib.openusb_parse_endpoint_desc(_ctx.handle, + dev, + None, + 0, + config, + intf, + alt, + ep, + byref(desc))) + return desc + + @methodtrace(_logger) + def open_device(self, dev): + handle = _openusb_dev_handle() + _check(_lib.openusb_open_device(_ctx.handle, dev, 0, byref(handle))) + return handle + + @methodtrace(_logger) + def close_device(self, dev_handle): + _lib.openusb_close_device(dev_handle) + + @methodtrace(_logger) + def set_configuration(self, dev_handle, config_value): + _check(_lib.openusb_set_configuration(dev_handle, config_value)) + + @methodtrace(_logger) + def get_configuration(self, dev_handle): + config = c_uint8() + _check(_lib.openusb_get_configuration(dev_handle, byref(config))) + return config.value + + @methodtrace(_logger) + def set_interface_altsetting(self, dev_handle, intf, altsetting): + _check(_lib.set_altsetting(dev_handle, intf, altsetting)) + + @methodtrace(_logger) + def claim_interface(self, dev_handle, intf): + _check(_lib.openusb_claim_interface(dev_handle, intf, 0)) + + @methodtrace(_logger) + def release_interface(self, dev_handle, intf): + _lib.openusb_release_interface(dev_handle, intf) + + @methodtrace(_logger) + def bulk_write(self, dev_handle, ep, intf, data, timeout): + request = _openusb_bulk_request() + memset(byref(request), 0, sizeof(request)) + request.payload, request.length = data.buffer_info() + request.timeout = timeout + _check(_lib.openusb_bulk_xfer(dev_handle, intf, ep, byref(request))) + return request.transfered_bytes.value + + @methodtrace(_logger) + def bulk_read(self, dev_handle, ep, intf, size, timeout): + request = _openusb_bulk_request() + buffer = array.array('B', '\x00' * size) + memset(byref(request), 0, sizeof(request)) + request.payload, request.length = buffer.buffer_info() + request.timeout = timeout + _check(_lib.openusb_bulk_xfer(dev_handle, intf, ep, byref(request))) + return buffer[:request.transfered_bytes.value] + + @methodtrace(_logger) + def intr_write(self, dev_handle, ep, intf, data, timeout): + request = _openusb_intr_request() + memset(byref(request), 0, sizeof(request)) + payload, request.length = data.buffer_info() + request.payload = cast(payload, POINTER(c_uint8)) + request.timeout = timeout + _check(_lib.openusb_intr_xfer(dev_handle, intf, ep, byref(request))) + return request.transfered_bytes.value + + @methodtrace(_logger) + def intr_read(self, dev_handle, ep, intf, size, timeout): + request = _openusb_intr_request() + buffer = array.array('B', '\x00' * size) + memset(byref(request), 0, sizeof(request)) + payload, request.length = buffer.buffer_info() + request.payload = cast(payload, POINTER(c_uint8)) + request.timeout = timeout + _check(_lib.openusb_intr_xfer(dev_handle, intf, ep, byref(request))) + return buffer[:request.transfered_bytes.value] + +# TODO: implement isochronous +# @methodtrace(_logger) +# def iso_write(self, dev_handle, ep, intf, data, timeout): +# pass + +# @methodtrace(_logger) +# def iso_read(self, dev_handle, ep, intf, size, timeout): +# pass + + @methodtrace(_logger) + def ctrl_transfer(self, + dev_handle, + bmRequestType, + bRequest, + wValue, + wIndex, + data_or_wLength, + timeout): + request = _openusb_ctrl_request() + request.setup.bmRequestType = bmRequestType + request.setup.bRequest = bRequest + request.setup.wValue + request.setup.wIndex + request.timeout = timeout + + direction = usb.util.ctrl_direction(bmRequestType) + + if direction == ENDPOINT_OUT: + buffer = data_or_wLength + else: + buffer = array.array('B', '\x00' * data_or_wLength) + + payload, request.length = buffer.buffer_info() + request.payload = cast(payload, POINTER(c_uint8)) + + ret = _check(_lib.openusb_ctrl_xfer(dev_handle, 0, 0, byref(request))) + + if direction == ENDPOINT_OUT: + ret + else: + buffer[:ret] + + @methodtrace(_logger) + def reset_device(self, dev_handle): + _check(_lib.openusb_reset(dev_handle)) + +def get_backend(): + try: + global _lib, _ctx + if _lib is None: + _lib = _load_library() + _setup_prototypes(_lib) + _ctx = _Context() + return _OpenUSB() + except Exception: + _logger.error('Error loading OpenUSB backend', exc_info=True) + return None diff --git a/plugins/wedo_plugin/usb/control.py b/plugins/wedo_plugin/usb/control.py new file mode 100644 index 0000000..8647c14 --- /dev/null +++ b/plugins/wedo_plugin/usb/control.py @@ -0,0 +1,252 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +r"""usb.control - USB standard control requests + +This module exports: + +get_status - get recipeint status +clear_feature - clear a recipient feature +set_feature - set a recipient feature +get_descriptor - get a device descriptor +set_descriptor - set a device descriptor +get_configuration - get a device configuration +set_configuration - set a device configuration +get_interface - get a device interface +set_interface - set a device interface +""" + +__author__ = 'Wander Lairson Costa' + +__all__ = ['get_status', + 'clear_feature', + 'set_feature', + 'get_descriptor', + 'set_descriptor', + 'get_configuration', + 'set_configuration', + 'get_interface', + 'set_interface', + 'ENDPOINT_HALT', + 'FUNCTION_SUSPEND', + 'DEVICE_REMOTE_WAKEUP', + 'U1_ENABLE', + 'U2_ENABLE', + 'LTM_ENABLE'] + +import usb.util as util +import usb.core as core + +def _parse_recipient(recipient, direction): + if recipient is None: + r = util.CTRL_RECIPIENT_DEVICE + wIndex = 0 + elif isinstance(recipient, core.Interface): + r = util.CTRL_RECIPIENT_INTERFACE + wIndex = recipient.bInterfaceNumber + elif isinstance(recipient, core.Endpoint): + r = util.CTRL_RECIPIENT_ENDPOINT + wIndex = recipient.bEndpointAddress + else: + raise ValueError('Invalid recipient.') + bmRequestType = util.build_request_type( + direction, + util.CTRL_TYPE_STANDARD, + r + ) + return (bmRequestType, wIndex) + +# standard feature selectors from USB 2.0/3.0 +ENDPOINT_HALT = 0 +FUNCTION_SUSPEND = 0 +DEVICE_REMOTE_WAKEUP = 1 +U1_ENABLE = 48 +U2_ENABLE = 49 +LTM_ENABLE = 50 + +def get_status(dev, recipient = None): + r"""Return the status for the specified recipient. + + dev is the Device object to which the request will be + sent to. + + The recipient can be None (on which the status will be queried + on the device), an Interface or Endpoint descriptors. + + The status value is returned as an integer with the lower + word being the two bytes status value. + """ + bmRequestType, wIndex = _parse_recipient(recipient, util.CTRL_IN) + ret = dev.ctrl_transfer(bmRequestType = bmRequestType, + bRequest = 0x00, + wIndex = wIndex, + data_or_wLength = 2) + return ret[0] | (ret[1] << 8) + +def clear_feature(dev, feature, recipient = None): + r"""Clear/disable a specific feature. + + dev is the Device object to which the request will be + sent to. + + feature is the feature you want to disable. + + The recipient can be None (on which the status will be queried + on the device), an Interface or Endpoint descriptors. + """ + bmRequestType, wIndex = _parse_recipient(recipient, util.CTRL_OUT) + dev.ctrl_transfer(bmRequestType = bmRequestType, + bRequest = 0x01, + wIndex = wIndex, + wValue = feature) + +def set_feature(dev, feature, recipient = None): + r"""Set/enable a specific feature. + + dev is the Device object to which the request will be + sent to. + + feature is the feature you want to enable. + + The recipient can be None (on which the status will be queried + on the device), an Interface or Endpoint descriptors. + """ + bmRequestType, wIndex = _parse_recipient(recipient, util.CTRL_OUT) + dev.ctrl_transfer(bmRequestType = bmRequestType, + bRequest = 0x03, + wIndex = wIndex, + wValue = feature) + +def get_descriptor(dev, desc_size, desc_type, desc_index, wIndex = 0): + r"""Return the specified descriptor. + + dev is the Device object to which the request will be + sent to. + + desc_size is the descriptor size. + + desc_type and desc_index are the descriptor type and index, + respectively. wIndex index is used for string descriptors + and represents the Language ID. For other types of descriptors, + it is zero. + """ + wValue = desc_index | (desc_type << 8) + bmRequestType = util.build_request_type( + util.CTRL_IN, + util.CTRL_TYPE_STANDARD, + util.CTRL_RECIPIENT_DEVICE + ) + return dev.ctrl_transfer( + bmRequestType = bmRequestType, + bRequest = 0x06, + wValue = wValue, + wIndex = wIndex, + data_or_wLength = desc_size + ) + +def set_descriptor(dev, desc, desc_type, desc_index, wIndex = None): + r"""Update an existing descriptor or add a new one. + + dev is the Device object to which the request will be + sent to. + + The desc parameter is the descriptor to be sent to the device. + desc_type and desc_index are the descriptor type and index, + respectively. wIndex index is used for string descriptors + and represents the Language ID. For other types of descriptors, + it is zero. + """ + wValue = desc_index | (desc_type << 8) + bmRequestType = util.build_request_type( + util.CTRL_OUT, + util.CTRL_TYPE_STANDARD, + util.CTRL_RECIPIENT_DEVICE + ) + dev.ctrl_transfer( + bmRequestType = bmRequestType, + bRequest = 0x07, + wValue = wValue, + wIndex = wIndex, + data_or_wLength = desc + ) + +def get_configuration(dev): + r"""Get the current active configuration of the device. + + dev is the Device object to which the request will be + sent to. + + This function differs from the Device.get_active_configuration + method because the later may use cached data, while this + function always does a device request. + """ + bmRequestType = util.build_request_type( + util.CTRL_IN, + util.CTRL_TYPE_STANDARD, + util.CTRL_RECIPIENT_DEVICE + ) + return dev.ctrl_transfer( + bmRequestType, + bRequest = 0x08, + data_or_wLength = 1 + )[0] + +def set_configuration(dev, bConfigurationNumber): + r"""Set the current device configuration. + + dev is the Device object to which the request will be + sent to. + """ + dev.set_configuration(bConfigurationNumber) + +def get_interface(dev, bInterfaceNumber): + r"""Get the current alternate setting of the interface. + + dev is the Device object to which the request will be + sent to. + """ + bmRequestType = util.build_request_type( + util.CTRL_IN, + util.CTRL_TYPE_STANDARD, + util.CTRL_RECIPIENT_INTERFACE + ) + return dev.ctrl_transfer( + bmRequestType = bmRequestType, + bRequest = 0x0a, + wIndex = bInterfaceNumber, + data_or_wLength = 1 + )[0] + +def set_interface(dev, bInterfaceNumber, bAlternateSetting): + r"""Set the alternate setting of the interface. + + dev is the Device object to which the request will be + sent to. + """ + dev.set_interface_altsetting(bInterfaceNumber, bAlternateSetting) + diff --git a/plugins/wedo_plugin/usb/core.py b/plugins/wedo_plugin/usb/core.py new file mode 100644 index 0000000..c90d011 --- /dev/null +++ b/plugins/wedo_plugin/usb/core.py @@ -0,0 +1,856 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +r"""usb.core - Core USB features. + +This module exports: + +Device - a class representing a USB device. +Configuration - a class representing a configuration descriptor. +Interface - a class representing an interface descriptor. +Endpoint - a class representing an endpoint descriptor. +find() - a function to find USB devices. +""" + +__author__ = 'Wander Lairson Costa' + +__all__ = ['Device', 'Configuration', 'Interface', 'Endpoint', 'find'] + +import usb.util as util +import copy +import operator +import usb._interop as _interop +import logging + +_logger = logging.getLogger('usb.core') + +_DEFAULT_TIMEOUT = 1000 + +def _set_attr(input, output, fields): + for f in fields: + setattr(output, f, int(getattr(input, f))) + +class _ResourceManager(object): + def __init__(self, dev, backend): + self.backend = backend + self._active_cfg_index = None + self.dev = dev + self.handle = None + self._claimed_intf = _interop._set() + self._alt_set = {} + self._ep_type_map = {} + + def managed_open(self): + if self.handle is None: + self.handle = self.backend.open_device(self.dev) + return self.handle + + def managed_close(self): + if self.handle is not None: + self.backend.close_device(self.handle) + self.handle = None + + def managed_set_configuration(self, device, config): + if config is None: + cfg = device[0] + elif isinstance(config, Configuration): + cfg = config + elif config == 0: # unconfigured state + class FakeConfiguration(object): + def __init__(self): + self.index = None + self.bConfigurationValue = 0 + cfg = FakeConfiguration() + else: + cfg = util.find_descriptor(device, bConfigurationValue=config) + self.managed_open() + self.backend.set_configuration(self.handle, cfg.bConfigurationValue) + # cache the index instead of the object to avoid cyclic references + # of the device and Configuration (Device tracks the _ResourceManager, + # which tracks the Configuration, which tracks the Device) + self._active_cfg_index = cfg.index + # after changing configuration, our alternate setting and endpoint type caches + # are not valid anymore + self._ep_type_map.clear() + self._alt_set.clear() + + def managed_claim_interface(self, device, intf): + self.managed_open() + if intf is None: + cfg = self.get_active_configuration(device) + i = cfg[(0,0)].bInterfaceNumber + elif isinstance(intf, Interface): + i = intf.bInterfaceNumber + else: + i = intf + if i not in self._claimed_intf: + self.backend.claim_interface(self.handle, i) + self._claimed_intf.add(i) + + def managed_release_interface(self, device, intf): + if intf is None: + cfg = self.get_active_configuration(device) + i = cfg[(0,0)].bInterfaceNumber + elif isinstance(intf, Interface): + i = intf.bInterfaceNumber + else: + i = intf + if i in self._claimed_intf: + self.backend.release_interface(self.handle, i) + self._claimed_intf.remove(i) + + def managed_set_interface(self, device, intf, alt): + if intf is None: + i = self.get_interface(device, intf) + elif isinstance(intf, Interface): + i = intf + else: + cfg = self.get_active_configuration(device) + if alt is not None: + i = util.find_descriptor(cfg, bInterfaceNumber=intf, bAlternateSetting=alt) + else: + i = util.find_descriptor(cfg, bInterfaceNumber=intf) + self.managed_claim_interface(device, i) + if alt is None: + alt = i.bAlternateSetting + self.backend.set_interface_altsetting(self.handle, i.bInterfaceNumber, alt) + self._alt_set[i.bInterfaceNumber] = alt + + def get_interface(self, device, intf): + # TODO: check the viability of issuing a GET_INTERFACE + # request when we don't have a alternate setting cached + if intf is None: + cfg = self.get_active_configuration(device) + return cfg[(0,0)] + elif isinstance(intf, Interface): + return intf + else: + cfg = self.get_active_configuration(device) + if intf in self._alt_set: + return util.find_descriptor(cfg, + bInterfaceNumber=intf, + bAlternateSetting=self._alt_set[intf]) + else: + return util.find_descriptor(cfg, bInterfaceNumber=intf) + + def get_active_configuration(self, device): + if self._active_cfg_index is None: + self.managed_open() + cfg = util.find_descriptor( + device, + bConfigurationValue=self.backend.get_configuration(self.handle) + ) + if cfg is None: + raise USBError('Configuration not set') + self._active_cfg_index = cfg.index + return cfg + return device[self._active_cfg_index] + + def get_endpoint_type(self, device, address, intf): + intf = self.get_interface(device, intf) + key = (address, intf.bInterfaceNumber, intf.bAlternateSetting) + try: + return self._ep_type_map[key] + except KeyError: + e = util.find_descriptor(intf, bEndpointAddress=address) + etype = util.endpoint_type(e.bmAttributes) + self._ep_type_map[key] = etype + return etype + + def release_all_interfaces(self, device): + claimed = copy.copy(self._claimed_intf) + for i in claimed: + self.managed_release_interface(device, i) + + def dispose(self, device, close_handle = True): + self.release_all_interfaces(device) + if close_handle: + self.managed_close() + self._ep_type_map.clear() + self._alt_set.clear() + self._active_cfg_index = None + +class USBError(IOError): + r"""Exception class for USB errors. + + Backends must raise this exception when USB related errors occur. + The backend specific error code is available through the + 'backend_error_code' member variable. + """ + + def __init__(self, strerror, error_code = None, errno = None): + r"""Initialize the object. + + This initializes the USBError object. The strerror and errno are passed + to the parent object. The error_code parameter is attributed to the + backend_error_code member variable. + """ + IOError.__init__(self, errno, strerror) + self.backend_error_code = error_code + +class Endpoint(object): + r"""Represent an endpoint object. + + This class contains all fields of the Endpoint Descriptor + according to the USB Specification. You may access them as class + properties. For example, to access the field bEndpointAddress + of the endpoint descriptor: + + >>> import usb.core + >>> dev = usb.core.find() + >>> for cfg in dev: + >>> for i in cfg: + >>> for e in i: + >>> print e.bEndpointAddress + """ + + def __init__(self, device, endpoint, interface = 0, + alternate_setting = 0, configuration = 0): + r"""Initialize the Endpoint object. + + The device parameter is the device object returned by the find() + function. endpoint is the endpoint logical index (not the endpoint address). + The configuration parameter is the logical index of the + configuration (not the bConfigurationValue field). The interface + parameter is the interface logical index (not the bInterfaceNumber field) + and alternate_setting is the alternate setting logical index (not the + bAlternateSetting value). Not every interface has more than one alternate + setting. In this case, the alternate_setting parameter should be zero. + By "logical index" we mean the relative order of the configurations returned by the + peripheral as a result of GET_DESCRIPTOR request. + """ + self.device = device + intf = Interface(device, interface, alternate_setting, configuration) + self.interface = intf.bInterfaceNumber + self.index = endpoint + + backend = device._ctx.backend + + desc = backend.get_endpoint_descriptor( + device._ctx.dev, + endpoint, + interface, + alternate_setting, + configuration + ) + + _set_attr( + desc, + self, + ( + 'bLength', + 'bDescriptorType', + 'bEndpointAddress', + 'bmAttributes', + 'wMaxPacketSize', + 'bInterval', + 'bRefresh', + 'bSynchAddress' + ) + ) + + def write(self, data, timeout = None): + r"""Write data to the endpoint. + + The parameter data contains the data to be sent to the endpoint and + timeout is the time limit of the operation. The transfer type and + endpoint address are automatically inferred. + + The method returns the number of bytes written. + + For details, see the Device.write() method. + """ + return self.device.write(self.bEndpointAddress, data, self.interface, timeout) + + def read(self, size, timeout = None): + r"""Read data from the endpoint. + + The parameter size is the number of bytes to read and timeout is the + time limit of the operation.The transfer type and endpoint address + are automatically inferred. + + The method returns an array.array object with the data read. + + For details, see the Device.read() method. + """ + return self.device.read(self.bEndpointAddress, size, self.interface, timeout) + +class Interface(object): + r"""Represent an interface object. + + This class contains all fields of the Interface Descriptor + according to the USB Specification. You may access them as class + properties. For example, to access the field bInterfaceNumber + of the interface descriptor: + + >>> import usb.core + >>> dev = usb.core.find() + >>> for cfg in dev: + >>> for i in cfg: + >>> print i.bInterfaceNumber + """ + + def __init__(self, device, interface = 0, + alternate_setting = 0, configuration = 0): + r"""Initialize the interface object. + + The device parameter is the device object returned by the find() + function. The configuration parameter is the logical index of the + configuration (not the bConfigurationValue field). The interface + parameter is the interface logical index (not the bInterfaceNumber field) + and alternate_setting is the alternate setting logical index (not the + bAlternateSetting value). Not every interface has more than one alternate + setting. In this case, the alternate_setting parameter should be zero. + By "logical index" we mean the relative order of the configurations returned by the + peripheral as a result of GET_DESCRIPTOR request. + """ + self.device = device + self.alternate_index = alternate_setting + self.index = interface + self.configuration = configuration + + backend = device._ctx.backend + + desc = backend.get_interface_descriptor( + self.device._ctx.dev, + interface, + alternate_setting, + configuration + ) + + _set_attr( + desc, + self, + ( + 'bLength', + 'bDescriptorType', + 'bInterfaceNumber', + 'bAlternateSetting', + 'bNumEndpoints', + 'bInterfaceClass', + 'bInterfaceSubClass', + 'bInterfaceProtocol', + 'iInterface', + ) + ) + + def set_altsetting(self): + r"""Set the interface alternate setting.""" + self.device.set_interface_altsetting( + self.bInterfaceNumber, + self.bAlternateSetting + ) + + def __iter__(self): + r"""Iterate over all endpoints of the interface.""" + for i in range(self.bNumEndpoints): + yield Endpoint( + self.device, + i, + self.index, + self.alternate_index, + self.configuration + ) + def __getitem__(self, index): + r"""Return the Endpoint object in the given position.""" + return Endpoint( + self.device, + index, + self.index, + self.alternate_index, + self.configuration + ) + +class Configuration(object): + r"""Represent a configuration object. + + This class contains all fields of the Configuration Descriptor + according to the USB Specification. You may access them as class + properties. For example, to access the field bConfigurationValue + of the configuration descriptor: + + >>> import usb.core + >>> dev = usb.core.find() + >>> for cfg in dev: + >>> print cfg.bConfigurationValue + """ + + def __init__(self, device, configuration = 0): + r"""Initialize the configuration object. + + The device parameter is the device object returned by the find() + function. The configuration parameter is the logical index of the + configuration (not the bConfigurationValue field). By "logical index" + we mean the relative order of the configurations returned by the + peripheral as a result of GET_DESCRIPTOR request. + """ + self.device = device + self.index = configuration + + backend = device._ctx.backend + + desc = backend.get_configuration_descriptor( + self.device._ctx.dev, + configuration + ) + + _set_attr( + desc, + self, + ( + 'bLength', + 'bDescriptorType', + 'wTotalLength', + 'bNumInterfaces', + 'bConfigurationValue', + 'iConfiguration', + 'bmAttributes', + 'bMaxPower' + ) + ) + + def set(self): + r"""Set this configuration as the active one.""" + self.device.set_configuration(self.bConfigurationValue) + + def __iter__(self): + r"""Iterate over all interfaces of the configuration.""" + for i in range(self.bNumInterfaces): + alt = 0 + try: + while True: + yield Interface(self.device, i, alt, self.index) + alt += 1 + except (USBError, IndexError): + pass + def __getitem__(self, index): + r"""Return the Interface object in the given position. + + index is a tuple of two values with interface index and + alternate setting index, respectivally. Example: + + >>> interface = config[(0, 0)] + """ + return Interface(self.device, index[0], index[1], self.index) + + +class Device(object): + r"""Device object. + + This class contains all fields of the Device Descriptor according + to the USB Specification. You may access them as class properties. + For example, to access the field bDescriptorType of the device + descriptor: + + >>> import usb.core + >>> dev = usb.core.find() + >>> dev.bDescriptorType + + Additionally, the class provides methods to communicate with + the hardware. Typically, an application will first call the + set_configuration() method to put the device in a known configured + state, optionally call the set_interface_altsetting() to select the + alternate setting (if there is more than one) of the interface used, + and call the write() and read() method to send and receive data. + + When working in a new hardware, one first try would be like this: + + >>> import usb.core + >>> dev = usb.core.find(idVendor=myVendorId, idProduct=myProductId) + >>> dev.set_configuration() + >>> dev.write(1, 'test') + + This sample finds the device of interest (myVendorId and myProductId should be + replaced by the corresponding values of your device), then configures the device + (by default, the configuration value is 1, which is a typical value for most + devices) and then writes some data to the endpoint 0x01. + + Timeout values for the write, read and ctrl_transfer methods are specified in + miliseconds. If the parameter is omitted, Device.default_timeout value will + be used instead. This property can be set by the user at anytime. + """ + + def __init__(self, dev, backend): + r"""Initialize the Device object. + + Library users should normally get a Device instance through + the find function. The dev parameter is the identification + of a device to the backend and its meaning is opaque outside + of it. The backend parameter is a instance of a backend + object. + """ + self._ctx = _ResourceManager(dev, backend) + self.__default_timeout = _DEFAULT_TIMEOUT + + desc = backend.get_device_descriptor(dev) + + _set_attr( + desc, + self, + ( + 'bLength', + 'bDescriptorType', + 'bcdUSB', + 'bDeviceClass', + 'bDeviceSubClass', + 'bDeviceProtocol', + 'bMaxPacketSize0', + 'idVendor', + 'idProduct', + 'bcdDevice', + 'iManufacturer', + 'iProduct', + 'iSerialNumber', + 'bNumConfigurations', + 'address', + 'bus' + ) + ) + + self.bus = int(desc.bus) if desc.bus is not None else None + self.address = int(desc.address) if desc.address is not None else None + + def set_configuration(self, configuration = None): + r"""Set the active configuration. + + The configuration parameter is the bConfigurationValue field of the + configuration you want to set as active. If you call this method + without parameter, it will use the first configuration found. + As a device hardly ever has more than one configuration, calling + the method without parameter is enough to get the device ready. + """ + self._ctx.managed_set_configuration(self, configuration) + + def get_active_configuration(self): + r"""Return a Configuration object representing the current configuration set.""" + return self._ctx.get_active_configuration(self) + + def set_interface_altsetting(self, interface = None, alternate_setting = None): + r"""Set the alternate setting for an interface. + + When you want to use an interface and it has more than one alternate setting, + you should call this method to select the alternate setting you would like + to use. If you call the method without one or the two parameters, it will + be selected the first one found in the Device in the same way of set_configuration + method. + + Commonly, an interface has only one alternate setting and this call is + not necessary. For most of the devices, either it has more than one alternate + setting or not, it is not harmful to make a call to this method with no arguments, + as devices will silently ignore the request when there is only one alternate + setting, though the USB Spec allows devices with no additional alternate setting + return an error to the Host in response to a SET_INTERFACE request. + + If you are in doubt, you may want to call it with no arguments wrapped by + a try/except clause: + + >>> try: + >>> dev.set_interface_altsetting() + >>> except usb.core.USBError: + >>> pass + """ + self._ctx.managed_set_interface(self, interface, alternate_setting) + + def reset(self): + r"""Reset the device.""" + self._ctx.dispose(self, False) + self._ctx.backend.reset_device(self._ctx.handle) + self._ctx.dispose(self, True) + + def write(self, endpoint, data, interface = None, timeout = None): + r"""Write data to the endpoint. + + This method is used to send data to the device. The endpoint parameter + corresponds to the bEndpointAddress member whose endpoint you want to + communicate with. The interface parameter is the bInterfaceNumber field + of the interface descriptor which contains the endpoint. If you do not + provide one, the first one found will be used, as explained in the + set_interface_altsetting() method. + + The data parameter should be a sequence like type convertible to + array type (see array module). + + The timeout is specified in miliseconds. + + The method returns the number of bytes written. + """ + backend = self._ctx.backend + + fn_map = { + util.ENDPOINT_TYPE_BULK:backend.bulk_write, + util.ENDPOINT_TYPE_INTR:backend.intr_write, + util.ENDPOINT_TYPE_ISO:backend.iso_write + } + + intf = self._ctx.get_interface(self, interface) + fn = fn_map[self._ctx.get_endpoint_type(self, endpoint, intf)] + self._ctx.managed_claim_interface(self, intf) + + return fn( + self._ctx.handle, + endpoint, + intf.bInterfaceNumber, + _interop.as_array(data), + self.__get_timeout(timeout) + ) + + def read(self, endpoint, size, interface = None, timeout = None): + r"""Read data from the endpoint. + + This method is used to receive data from the device. The endpoint parameter + corresponds to the bEndpointAddress member whose endpoint you want to + communicate with. The interface parameter is the bInterfaceNumber field + of the interface descriptor which contains the endpoint. If you do not + provide one, the first one found will be used, as explained in the + set_interface_altsetting() method. The size parameters tells how many + bytes you want to read. + + The timeout is specified in miliseconds. + + The method returns an array object with the data read. + """ + backend = self._ctx.backend + + fn_map = { + util.ENDPOINT_TYPE_BULK:backend.bulk_read, + util.ENDPOINT_TYPE_INTR:backend.intr_read, + util.ENDPOINT_TYPE_ISO:backend.iso_read + } + + intf = self._ctx.get_interface(self, interface) + fn = fn_map[self._ctx.get_endpoint_type(self, endpoint, intf)] + self._ctx.managed_claim_interface(self, intf) + + return fn( + self._ctx.handle, + endpoint, + intf.bInterfaceNumber, + size, + self.__get_timeout(timeout) + ) + + + def ctrl_transfer(self, bmRequestType, bRequest, wValue=0, wIndex=0, + data_or_wLength = None, timeout = None): + r"""Do a control transfer on the endpoint 0. + + This method is used to issue a control transfer over the + endpoint 0(endpoint 0 is required to always be a control endpoint). + + The parameters bmRequestType, bRequest, wValue and wIndex are the + same of the USB Standard Control Request format. + + Control requests may or may not have a data payload to write/read. + In cases which it has, the direction bit of the bmRequestType + field is used to infere the desired request direction. For + host to device requests (OUT), data_or_wLength parameter is + the data payload to send, and it must be a sequence type convertible + to an array object. In this case, the return value is the number of data + payload written. For device to host requests (IN), data_or_wLength + is the wLength parameter of the control request specifying the + number of bytes to read in data payload. In this case, the return + value is the data payload read, as an array object. + """ + if util.ctrl_direction(bmRequestType) == util.CTRL_OUT: + a = _interop.as_array(data_or_wLength) + elif data_or_wLength is None: + a = 0 + else: + a = data_or_wLength + + self._ctx.managed_open() + + return self._ctx.backend.ctrl_transfer( + self._ctx.handle, + bmRequestType, + bRequest, + wValue, + wIndex, + a, + self.__get_timeout(timeout) + ) + + def is_kernel_driver_active(self, interface): + r"""Determine if there is kernel driver associated with the interface. + + If a kernel driver is active, and the object will be unable to perform I/O. + """ + self._ctx.managed_open() + return self._ctx.backend.is_kernel_driver_active(self._ctx.handle, interface) + + def detach_kernel_driver(self, interface): + r"""Detach a kernel driver. + + If successful, you will then be able to perform I/O. + """ + self._ctx.managed_open() + self._ctx.backend.detach_kernel_driver(self._ctx.handle, interface) + + def attach_kernel_driver(self, interface): + r"""Re-attach an interface's kernel driver, which was previously + detached using detach_kernel_driver().""" + self._ctx.managed_open() + self._ctx.backend.attach_kernel_driver(self._ctx.handle, interface) + + def __iter__(self): + r"""Iterate over all configurations of the device.""" + for i in range(self.bNumConfigurations): + yield Configuration(self, i) + + def __getitem__(self, index): + r"""Return the Configuration object in the given position.""" + return Configuration(self, index) + + def __del__(self): + self._ctx.dispose(self) + + def __get_timeout(self, timeout): + if timeout is not None: + return timeout + return self.__default_timeout + + def __set_def_tmo(self, tmo): + if tmo < 0: + raise ValueError('Timeout cannot be a negative value') + self.__default_timeout = tmo + + def __get_def_tmo(self): + return self.__default_timeout + + default_timeout = property( + __get_def_tmo, + __set_def_tmo, + doc = 'Default timeout for transfer I/O functions' + ) + +def find(find_all=False, backend = None, custom_match = None, **args): + r"""Find an USB device and return it. + + find() is the function used to discover USB devices. + You can pass as arguments any combination of the + USB Device Descriptor fields to match a device. For example: + + find(idVendor=0x3f4, idProduct=0x2009) + + will return the Device object for the device with + idVendor Device descriptor field equals to 0x3f4 and + idProduct equals to 0x2009. + + If there is more than one device which matchs the criteria, + the first one found will be returned. If a matching device cannot + be found the function returns None. If you want to get all + devices, you can set the parameter find_all to True, then find + will return an list with all matched devices. If no matching device + is found, it will return an empty list. Example: + + printers = find(find_all=True, bDeviceClass=7) + + This call will get all the USB printers connected to the system. + (actually may be not, because some devices put their class + information in the Interface Descriptor). + + You can also use a customized match criteria: + + dev = find(custom_match = lambda d: d.idProduct=0x3f4 and d.idvendor=0x2009) + + A more accurate printer finder using a customized match would be like + so: + + def is_printer(dev): + import usb.util + if dev.bDeviceClass == 7: + return True + for cfg in dev: + if usb.util.find_descriptor(cfg, bInterfaceClass=7) is not None: + return True + + printers = find(find_all=True, custom_match = is_printer) + + Now even if the device class code is in the interface descriptor the + printer will be found. + + You can combine a customized match with device descriptor fields. In this + case, the fields must match and the custom_match must return True. In the our + previous example, if we would like to get all printers belonging to the + manufacturer 0x3f4, the code would be like so: + + printers = find(find_all=True, idVendor=0x3f4, custom_match=is_printer) + + If you want to use find as a 'list all devices' function, just call + it with find_all = True: + + devices = find(find_all=True) + + Finally, you may pass a custom backend to the find function: + + find(backend = MyBackend()) + + PyUSB has builtin backends for libusb 0.1, libusb 1.0 and OpenUSB. + If you do not supply a backend explicitly, find() function will select + one of the predefineds backends according to system availability. + + Backends are explained in the usb.backend module. + """ + + def device_iter(k, v): + for dev in backend.enumerate_devices(): + d = Device(dev, backend) + if (custom_match is None or custom_match(d)) and \ + _interop._reduce( + lambda a, b: a and b, + map( + operator.eq, + v, + map(lambda i: getattr(d, i), k) + ), + True + ): + yield d + + if backend is None: + import usb.backend.libusb10 as libusb10 + import usb.backend.libusb01 as libusb01 + import usb.backend.openusb as openusb + + for m in (libusb10, openusb, libusb01): + backend = m.get_backend() + if backend is not None: + _logger.info('find(): using backend "%s"', m.__name__) + break + else: + raise ValueError('No backend available') + + k, v = args.keys(), args.values() + + if find_all: + return [d for d in device_iter(k, v)] + else: + try: + return _interop._next(device_iter(k, v)) + except StopIteration: + return None diff --git a/plugins/wedo_plugin/usb/legacy.py b/plugins/wedo_plugin/usb/legacy.py new file mode 100644 index 0000000..0c9c52c --- /dev/null +++ b/plugins/wedo_plugin/usb/legacy.py @@ -0,0 +1,334 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +import usb.core as core +import usb.util as util +import usb._interop as _interop +import usb.control as control + +__author__ = 'Wander Lairson Costa' + +USBError = core.USBError + +CLASS_AUDIO = 1 +CLASS_COMM = 2 +CLASS_DATA = 10 +CLASS_HID = 3 +CLASS_HUB = 9 +CLASS_MASS_STORAGE = 8 +CLASS_PER_INTERFACE = 0 +CLASS_PRINTER = 7 +CLASS_VENDOR_SPEC = 255 +DT_CONFIG = 2 +DT_CONFIG_SIZE = 9 +DT_DEVICE = 1 +DT_DEVICE_SIZE = 18 +DT_ENDPOINT = 5 +DT_ENDPOINT_AUDIO_SIZE = 9 +DT_ENDPOINT_SIZE = 7 +DT_HID = 33 +DT_HUB = 41 +DT_HUB_NONVAR_SIZE = 7 +DT_INTERFACE = 4 +DT_INTERFACE_SIZE = 9 +DT_PHYSICAL = 35 +DT_REPORT = 34 +DT_STRING = 3 +ENDPOINT_ADDRESS_MASK = 15 +ENDPOINT_DIR_MASK = 128 +ENDPOINT_IN = 128 +ENDPOINT_OUT = 0 +ENDPOINT_TYPE_BULK = 2 +ENDPOINT_TYPE_CONTROL = 0 +ENDPOINT_TYPE_INTERRUPT = 3 +ENDPOINT_TYPE_ISOCHRONOUS = 1 +ENDPOINT_TYPE_MASK = 3 +ERROR_BEGIN = 500000 +MAXALTSETTING = 128 +MAXCONFIG = 8 +MAXENDPOINTS = 32 +MAXINTERFACES = 32 +RECIP_DEVICE = 0 +RECIP_ENDPOINT = 2 +RECIP_INTERFACE = 1 +RECIP_OTHER = 3 +REQ_CLEAR_FEATURE = 1 +REQ_GET_CONFIGURATION = 8 +REQ_GET_DESCRIPTOR = 6 +REQ_GET_INTERFACE = 10 +REQ_GET_STATUS = 0 +REQ_SET_ADDRESS = 5 +REQ_SET_CONFIGURATION = 9 +REQ_SET_DESCRIPTOR = 7 +REQ_SET_FEATURE = 3 +REQ_SET_INTERFACE = 11 +REQ_SYNCH_FRAME = 12 +TYPE_CLASS = 32 +TYPE_RESERVED = 96 +TYPE_STANDARD = 0 +TYPE_VENDOR = 64 + +class Endpoint(object): + r"""Endpoint descriptor object.""" + def __init__(self, ep): + self.address = ep.bEndpointAddress + self.interval = ep.bInterval + self.maxPacketSize = ep.wMaxPacketSize + self.type = util.endpoint_type(ep.bmAttributes) + +class Interface(object): + r"""Interface descriptor object.""" + def __init__(self, intf): + self.alternateSetting = intf.bAlternateSetting + self.interfaceNumber = intf.bInterfaceNumber + self.iInterface = intf.iInterface + self.interfaceClass = intf.bInterfaceClass + self.interfaceSubClass = intf.bInterfaceSubClass + self.interfaceProtocol = intf.bInterfaceProtocol + self.endpoints = [Endpoint(e) for e in intf] + +class Configuration(object): + r"""Configuration descriptor object.""" + def __init__(self, cfg): + self.iConfiguration = cfg.iConfiguration + self.maxPower = cfg.bMaxPower << 2 + self.remoteWakeup = (cfg.bmAttributes >> 5) & 1 + self.selfPowered = (cfg.bmAttributes >> 6) & 1 + self.totalLength = cfg.wTotalLength + self.value = cfg.bConfigurationValue + self.interfaces = [ + list(g) for k, g in _interop._groupby( + _interop._sorted( + [Interface(i) for i in cfg], + key=lambda i: i.interfaceNumber + ), + lambda i: i.alternateSetting) + ] + +class DeviceHandle(object): + def __init__(self, dev): + self.dev = dev + self.__claimed_interface = -1 + + def bulkWrite(self, endpoint, buffer, timeout = 100): + r"""Perform a bulk write request to the endpoint specified. + + Arguments: + endpoint: endpoint number. + buffer: sequence data buffer to write. + This parameter can be any sequence type. + timeout: operation timeout in miliseconds. (default: 100) + Returns the number of bytes written. + """ + return self.dev.write(endpoint, buffer, self.__claimed_interface, timeout) + + def bulkRead(self, endpoint, size, timeout = 100): + r"""Performs a bulk read request to the endpoint specified. + + Arguments: + endpoint: endpoint number. + size: number of bytes to read. + timeout: operation timeout in miliseconds. (default: 100) + Return a tuple with the data read. + """ + return self.dev.read(endpoint, size, self.__claimed_interface, timeout) + + def interruptWrite(self, endpoint, buffer, timeout = 100): + r"""Perform a interrupt write request to the endpoint specified. + + Arguments: + endpoint: endpoint number. + buffer: sequence data buffer to write. + This parameter can be any sequence type. + timeout: operation timeout in miliseconds. (default: 100) + Returns the number of bytes written. + """ + return self.dev.write(endpoint, buffer, self.__claimed_interface, timeout) + + def interruptRead(self, endpoint, size, timeout = 100): + r"""Performs a interrupt read request to the endpoint specified. + + Arguments: + endpoint: endpoint number. + size: number of bytes to read. + timeout: operation timeout in miliseconds. (default: 100) + Return a tuple with the data read. + """ + return self.dev.read(endpoint, size, self.__claimed_interface, timeout) + + def controlMsg(self, requestType, request, buffer, value = 0, index = 0, timeout = 100): + r"""Perform a control request to the default control pipe on a device. + + Arguments: + requestType: specifies the direction of data flow, the type + of request, and the recipient. + request: specifies the request. + buffer: if the transfer is a write transfer, buffer is a sequence + with the transfer data, otherwise, buffer is the number of + bytes to read. + value: specific information to pass to the device. (default: 0) + index: specific information to pass to the device. (default: 0) + timeout: operation timeout in miliseconds. (default: 100) + Return the number of bytes written. + """ + return self.dev.ctrl_transfer( + requestType, + request, + wValue = value, + wIndex = index, + data_or_wLength = buffer, + timeout = timeout + ) + + def clearHalt(self, endpoint): + r"""Clears any halt status on the specified endpoint. + + Arguments: + endpoint: endpoint number. + """ + cfg = self.dev.get_active_configuration() + intf = util.find_descriptor(cfg, bInterfaceNumber = self.__claimed_interface) + e = util.find_descriptor(intf, bEndpointAddress = endpoint) + control.clear_feature(self.dev, control.ENDPOINT_HALT, e) + + def claimInterface(self, interface): + r"""Claims the interface with the Operating System. + + Arguments: + interface: interface number or an Interface object. + """ + if_num = interface.interfaceNumber \ + if isinstance(interface, Interface) else interface + + util.claim_interface(self.dev, if_num) + self.__claimed_interface = if_num + + def releaseInterface(self): + r"""Release an interface previously claimed with claimInterface.""" + util.release_interface(self.dev, self.__claimed_interface) + self.__claimed_interface = -1 + + def reset(self): + r"""Reset the specified device by sending a RESET + down the port it is connected to.""" + self.dev.reset() + + def resetEndpoint(self, endpoint): + r"""Reset all states for the specified endpoint. + + Arguments: + endpoint: endpoint number. + """ + self.clearHalt(endpoint) + + def setConfiguration(self, configuration): + r"""Set the active configuration of a device. + + Arguments: + configuration: a configuration value or a Configuration object. + """ + self.dev.set_configuration(configuration) + + def setAltInterface(self, alternate): + r"""Sets the active alternate setting of the current interface. + + Arguments: + alternate: an alternate setting number or an Interface object. + """ + self.dev.set_interface_altsetting(self.__claimed_interface, alternate) + + def getString(self, index, length, langid = None): + r"""Retrieve the string descriptor specified by index + and langid from a device. + + Arguments: + index: index of descriptor in the device. + length: number of bytes of the string + langid: Language ID. If it is omittedi, will be + used the first language. + """ + return util.get_string(self.dev, length, index, langid).encode('ascii') + + def getDescriptor(self, desc_type, desc_index, length, endpoint = -1): + r"""Retrieves a descriptor from the device identified by the type + and index of the descriptor. + + Arguments: + desc_type: descriptor type. + desc_index: index of the descriptor. + len: descriptor length. + endpoint: ignored. + """ + return control.get_descriptor(self.dev, length, desc_type, desc_index) + + def detachKernelDriver(self, interface): + r"""Detach a kernel driver from the interface (if one is attached, + we have permission and the operation is supported by the OS) + + Arguments: + interface: interface number or an Interface object. + """ + self.dev.detach_kernel_driver(interface) + +class Device(object): + r"""Device descriptor object""" + def __init__(self, dev): + self.deviceClass = dev.bDeviceClass + self.deviceSubClass = dev.bDeviceSubClass + self.deviceProtocol = dev.bDeviceProtocol + self.deviceVersion = dev.bcdDevice + self.devnum = None + self.filename = '' + self.iManufacturer = dev.iManufacturer + self.iProduct = dev.iProduct + self.iSerialNumber = dev.iSerialNumber + self.idProduct = dev.idProduct + self.idVendor = dev.idVendor + self.maxPacketSize = dev.bMaxPacketSize0 + self.usbVersion = dev.bcdUSB + self.configurations = [Configuration(c) for c in dev] + self.dev = dev + + def open(self): + r"""Open the device for use. + + Return a DeviceHandle object + """ + return DeviceHandle(self.dev) + +class Bus(object): + r"""Bus object.""" + def __init__(self): + self.dirname = '' + self.localtion = 0 + self.devices = [Device(d) for d in core.find(find_all=True)] + +def busses(): + r"""Return a tuple with the usb busses.""" + return (Bus(),) + diff --git a/plugins/wedo_plugin/usb/util.py b/plugins/wedo_plugin/usb/util.py new file mode 100644 index 0000000..1f8cee3 --- /dev/null +++ b/plugins/wedo_plugin/usb/util.py @@ -0,0 +1,260 @@ +# Copyright (C) 2009-2011 Wander Lairson Costa +# +# The following terms apply to all files associated +# with the software unless explicitly disclaimed in individual files. +# +# The authors hereby grant permission to use, copy, modify, distribute, +# and license this software and its documentation for any purpose, provided +# that existing copyright notices are retained in all copies and that this +# notice is included verbatim in any distributions. No written agreement, +# license, or royalty fee is required for any of the authorized uses. +# Modifications to this software may be copyrighted by their authors +# and need not follow the licensing terms described here, provided that +# the new terms are clearly indicated on the first page of each file where +# they apply. +# +# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +# +# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +# MODIFICATIONS. + +r"""usb.util - Utility functions. + +This module exports: + +endpoint_address - return the endpoint absolute address. +endpoint_direction - return the endpoint transfer direction. +endpoint_type - return the endpoint type +ctrl_direction - return the direction of a control transfer +build_request_type - build a bmRequestType field of a control transfer. +find_descriptor - find an inner descriptor. +claim_interface - explicitly claim an interface. +release_interface - explicitly release an interface. +dispose_resources - release internal resources allocated by the object. +get_string - retrieve a string descriptor from the device. +""" + +__author__ = 'Wander Lairson Costa' + +import operator +import usb._interop as _interop + +# descriptor type +DESC_TYPE_DEVICE = 0x01 +DESC_TYPE_CONFIG = 0x02 +DESC_TYPE_STRING = 0x03 +DESC_TYPE_INTERFACE = 0x04 +DESC_TYPE_ENDPOINT = 0x05 + +# endpoint direction +ENDPOINT_IN = 0x80 +ENDPOINT_OUT = 0x00 + +# endpoint type +ENDPOINT_TYPE_CTRL = 0x00 +ENDPOINT_TYPE_ISO = 0x01 +ENDPOINT_TYPE_BULK = 0x02 +ENDPOINT_TYPE_INTR = 0x03 + +# control request type +CTRL_TYPE_STANDARD = (0 << 5) +CTRL_TYPE_CLASS = (1 << 5) +CTRL_TYPE_VENDOR = (2 << 5) +CTRL_TYPE_RESERVED = (3 << 5) + +# control request recipient +CTRL_RECIPIENT_DEVICE = 0 +CTRL_RECIPIENT_INTERFACE = 1 +CTRL_RECIPIENT_ENDPOINT = 2 +CTRL_RECIPIENT_OTHER = 3 + +# control request direction +CTRL_OUT = 0x00 +CTRL_IN = 0x80 + +_ENDPOINT_ADDR_MASK = 0x0f +_ENDPOINT_DIR_MASK = 0x80 +_ENDPOINT_TRANSFER_TYPE_MASK = 0x03 +_CTRL_DIR_MASK = 0x80 + +def endpoint_address(address): + r"""Return the endpoint absolute address. + + The address parameter is the bEndpointAddress field + of the endpoint descriptor. + """ + return address & _ENDPOINT_ADDR_MASK + +def endpoint_direction(address): + r"""Return the endpoint direction. + + The address parameter is the bEndpointAddress field + of the endpoint descriptor. + The possible return values are ENDPOINT_OUT or ENDPOINT_IN. + """ + return address & _ENDPOINT_DIR_MASK + +def endpoint_type(bmAttributes): + r"""Return the transfer type of the endpoint. + + The bmAttributes parameter is the bmAttributes field + of the endpoint descriptor. + The possible return values are: ENDPOINT_TYPE_CTRL, + ENDPOINT_TYPE_ISO, ENDPOINT_TYPE_BULK or ENDPOINT_TYPE_INTR. + """ + return bmAttributes & _ENDPOINT_TRANSFER_TYPE_MASK + +def ctrl_direction(bmRequestType): + r"""Return the direction of a control request. + + The bmRequestType parameter is the value of the + bmRequestType field of a control transfer. + The possible return values are CTRL_OUT or CTRL_IN. + """ + return bmRequestType & _CTRL_DIR_MASK + +def build_request_type(direction, type, recipient): + r"""Build a bmRequestType field for control requests. + + These is a conventional function to build a bmRequestType + for a control request. + + The direction parameter can be CTRL_OUT or CTRL_IN. + The type parameter can be CTRL_TYPE_STANDARD, CTRL_TYPE_CLASS, + CTRL_TYPE_VENDOR or CTRL_TYPE_RESERVED values. + The recipient can be CTRL_RECIPIENT_DEVICE, CTRL_RECIPIENT_INTERFACE, + CTRL_RECIPIENT_ENDPOINT or CTRL_RECIPIENT_OTHER. + + Return the bmRequestType value. + """ + return recipient | type | direction + +def find_descriptor(desc, find_all=False, custom_match=None, **args): + r"""Find an inner descriptor. + + find_descriptor works in the same way the core.find() function does, + but it acts on general descriptor objects. For example, suppose you + have a Device object called dev and want a Configuration of this + object with its bConfigurationValue equals to 1, the code would + be like so: + + >>> cfg = util.find_descriptor(dev, bConfigurationValue=1) + + You can use any field of the Descriptor as a match criteria, and you + can supply a customized match just like core.find() does. The + find_descriptor function also accepts the find_all parameter to get + a list of descriptor instead of just one. + """ + def desc_iter(k, v): + for d in desc: + if (custom_match is None or custom_match(d)) and \ + _interop._reduce( + lambda a, b: a and b, + map( + operator.eq, + v, + map(lambda i: getattr(d, i), k) + ), + True + ): + yield d + + k, v = args.keys(), args.values() + + if find_all: + return [d for d in desc_iter(k, v)] + else: + try: + return _interop._next(desc_iter(k, v)) + except StopIteration: + return None + +def claim_interface(device, interface): + r"""Explicitly claim an interface. + + PyUSB users normally do not have to worry about interface claiming, + as the library takes care of it automatically. But there are situations + where you need deterministic interface claiming. For these uncommon + cases, you can use claim_interface. + + If the interface is already claimed, either through a previously call + to claim_interface or internally by the device object, nothing happens. + """ + device._ctx.managed_claim_interface(device, interface) + +def release_interface(device, interface): + r"""Explicitly release an interface. + + This function is used to release an interface previously claimed, + either through a call to claim_interface or internally by the + device object. + + Normally, you do not need to worry about claiming policies, as + the device object takes care of it automatically. + """ + device._ctx.managed_release_interface(device, interface) + +def dispose_resources(device): + r"""Release internal resources allocated by the object. + + Sometimes you need to provide deterministic resources + freeing, for example to allow another application to + talk to the device. As Python does not provide deterministic + destruction, this function releases all internal resources + allocated by the device, like device handle and interface + policy. + + After calling this function, you can continue using the device + object normally. If the resources will be necessary again, it + will allocate them automatically. + """ + device._ctx.dispose(device) + +def get_string(dev, length, index, langid = None): + r"""Retrieve a string descriptor from the device. + + dev is the Device object to which the request will be + sent to. + + length is the length of string in number of characters. + + index is the string descriptor index and langid is the Language + ID of the descriptor. If langid is omitted, the string descriptor + of the first Language ID will be returned. + + The return value is the unicode string present in the descriptor. + """ + from usb.control import get_descriptor + if langid is None: + # Asking for the zero'th index is special - it returns a string + # descriptor that contains all the language IDs supported by the device. + # Typically there aren't many - often only one. The language IDs are 16 + # bit numbers, and they start at the third byte in the descriptor. See + # USB 2.0 specification section 9.6.7 for more information. + # + # Note from libusb 1.0 sources (descriptor.c) + buf = get_descriptor( + dev, + 1024, + DESC_TYPE_STRING, + 0 + ) + assert len(buf) >= 4 + langid = buf[2] | (buf[3] << 8) + + buf = get_descriptor( + dev, + length * 2 + 2, # string is utf16 + 2 bytes of the descriptor + DESC_TYPE_STRING, + index, + langid + ) + return buf[2:].tostring().decode('utf-16-le') diff --git a/plugins/wedo_plugin/wedo_plugin.py b/plugins/wedo_plugin/wedo_plugin.py new file mode 100644 index 0000000..c0cbe12 --- /dev/null +++ b/plugins/wedo_plugin/wedo_plugin.py @@ -0,0 +1,304 @@ +#Copyright (c) 2012, Tony Forster, Ian Daniher, Walter Bender +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +from gettext import gettext as _ + +from plugins.plugin import Plugin +from WeDoMore import WeDo, scan_for_devices, UNAVAILABLE + +from TurtleArt.tapalette import make_palette +from TurtleArt.taconstants import XO1, XO15 +from TurtleArt.talogo import primitive_dictionary + +import logging +_logger = logging.getLogger('turtleart-activity WeDo plugin') + + +class Wedo_plugin(Plugin): + + def __init__(self, parent): + ''' Scan for WeDo devices ''' + self.WeDos = [] + device_list = scan_for_devices() + for i, dev in enumerate(device_list): + self.WeDos.append(WeDo(device=dev)) + self.WeDos[-1].number = i + self._parent = parent + if len(self.WeDos) == 0: + self._status = False # no WeDo devices found + self.active_wedo = None + else: + self._status = True + self.active_wedo = 0 + + def setup(self): + ''' Setup palettes ''' + palette = make_palette('WeDo', colors=["#FF6060", "#A06060"], + help_string=_('Palette of WeDo blocks')) + + primitive_dictionary['wedoselect'] = self.wedo_select + palette.add_block('wedoselect', + style='basic-style-1arg', + default = 1, + label=_('WeDo'), + help_string=_('set current WeDo device'), + prim_name = 'wedoselect') + + self._parent.lc.def_prim( + 'wedoselect', 1, + lambda self, n: primitive_dictionary['wedoselect'](n)) + + primitive_dictionary['wedocount'] = self.wedo_count + palette.add_block('wedogetcount', + style='box-style', + label=_('number of WeDos'), + help_string=_('number of WeDo devices'), + prim_name = 'wedocount') + + self._parent.lc.def_prim( + 'wedocount', 0, lambda self: primitive_dictionary['wedocount']()) + + primitive_dictionary['wedotilt'] = self.wedo_gettilt + palette.add_block('tilt', + style='box-style', + label=_('tilt'), + help_string=_('tilt sensor output: (-1 == no tilt,\ + 0 == tilt forward, 3 == tilt back, 1 == tilt left, 2 == tilt right)'), + value_block=True, + prim_name = 'wedotilt') + self._parent.lc.def_prim( + 'wedotilt', 0, lambda self: primitive_dictionary['wedotilt']()) + + primitive_dictionary['wedodistance'] = self.wedo_getdistance + palette.add_block('wedodistance', + style='box-style', + label=_('distance'), + help_string=_('distance sensor output'), + value_block=True, + prim_name = 'wedodistance') + self._parent.lc.def_prim( + 'wedodistance', 0, + lambda self: primitive_dictionary['wedodistance']()) + + primitive_dictionary['wedogetMotorA'] = self.wedo_getmotora + palette.add_block('wedogetMotorA', + style='box-style', + label=_('Motor A'), + help_string=_('returns the current value of Motor A'), + value_block=True, + prim_name = 'wedogetMotorA') + + self._parent.lc.def_prim( + 'wedogetMotorA', 0, + lambda self: primitive_dictionary['wedogetMotorA']()) + + primitive_dictionary['wedogetMotorB'] = self.wedo_getmotorb + palette.add_block('wedogetMotorB', + style='box-style', + label=_('Motor B'), + help_string=_('returns the current value of Motor B'), + value_block=True, + prim_name = 'wedogetMotorB') + self._parent.lc.def_prim( + 'wedogetMotorB', 0, + lambda self: primitive_dictionary['wedogetMotorB']()) + + primitive_dictionary['wedosetMotorA'] = self.wedo_setmotora + palette.add_block('wedosetMotorA', + style = 'basic-style-1arg', + label = _('Motor A'), + default = 30, + prim_name = 'wedosetMotorA', + help_string = _('set the value for Motor A')) + self._parent.lc.def_prim( + 'wedosetMotorA', 1, + lambda self, a: primitive_dictionary['wedosetMotorA'](a)) + + primitive_dictionary['wedosetMotorB'] = self.wedo_setmotorb + palette.add_block('wedosetMotorB', + style = 'basic-style-1arg', + label = _('Motor B'), + default = 30, + prim_name = 'wedosetMotorB', + help_string = _('set the value for Motor B')) + self._parent.lc.def_prim( + 'wedosetMotorB', 1, + lambda self, b: primitive_dictionary['wedosetMotorB'](b)) + + def wedo_select(self, i): + ''' Select current device ''' + if self.wedo_count() == 0: + self.active_wedo = None + self._parent.showlabel( + 'status', _('WeDo is unavailable')) + return + if type(i) == unicode: + i = str(i.encode('ascii', 'replace')) + if type(i) == float or type(i) == str: + i = int(i) + if type(i) != int: + i = 1 + if i < 0: + i = -i + if i < 0 or i > self.wedo_count() - 1: + self._parent.showlabel( + 'status', _('WeDo %d is unavailable; defaulting to 1') % (i)) + i -= 1 # Userspace counts from 1; internally, we count from 0 + if i > self.wedo_count() - 1: + i = 0 + self.active_wedo = i + + def wedo_count(self): + ''' How many devices are available? ''' + n = len(self.WeDos) + for wedo in self.WeDos: + if wedo.dev is None: + n -= 1 + return n + + def wedo_find(self): + ''' Find an available device ''' + for wedo in self.WeDos: + if wedo.dev is not None: + return self.WeDos.index(wedo) + return None + + def wedo_gettilt(self): + if self.active_wedo is None: + self.active_wedo = self.wedo_find() + if self.active_wedo is None: + self._parent.showlabel('status', _('WeDo is unavailable')) + return -1 + tilt = self.WeDos[self.active_wedo].getTilt() + if tilt == UNAVAILABLE: + # Should we look for tilt on another WeDo? + self._parent.showlabel( + 'status', _('%s is unavailable on WeDo %d') % ( + _('tilt'), self.active_wedo + 1)) + return -1 + else: + return tilt + + def wedo_getdistance(self): + if self.active_wedo is None: + self.active_wedo = self.wedo_find() + if self.active_wedo is None: + self._parent.showlabel('status', _('WeDo is unavailable')) + return 0 + distance = self.WeDos[self.active_wedo].getDistance() + if distance == UNAVAILABLE: + # Should we look for distance on another WeDo? + self._parent.showlabel( + 'status', _('%s is unavailable on WeDo %d') % ( + _('distance'), self.active_wedo + 1)) + return 0 + else: + return distance + + def wedo_getmotora(self): + if self.active_wedo is None: + self.active_wedo = self.wedo_find() + if self.active_wedo is None: + self._parent.showlabel('status', _('WeDo is unavailable')) + return 0 + speed = self.WeDos[self.active_wedo].getMotorA() + if speed == UNAVAILABLE: + self._parent.showlabel( + 'status', _('%s is unavailable on WeDo %d') % ( + _('Motor A'), self.active_wedo + 1)) + return 0 + else: + return speed + + def wedo_getmotorb(self): + if self.active_wedo is None: + self.active_wedo = self.wedo_find() + if self.active_wedo is None: + self._parent.showlabel('status', _('WeDo is unavailable')) + return 0 + speed = self.WeDos[self.active_wedo].getMotorB() + if speed == UNAVAILABLE: + self._parent.showlabel( + 'status', _('%s is unavailable on WeDo %d') % ( + _('Motor B'), self.active_wedo + 1)) + return 0 + else: + return speed + + def wedo_setmotora(self, speed): + if self.active_wedo is None: + self.active_wedo = self.wedo_find() + if self.active_wedo is None: + self._parent.showlabel('status', _('WeDo is unavailable')) + return + status = self.WeDos[self.active_wedo].setMotorA(speed) + if status == UNAVAILABLE: + self._parent.showlabel( + 'status', _('%s is unavailable on WeDo %d') % ( + _('Motor A'), self.active_wedo + 1)) + + def wedo_setmotorb(self, speed): + if self.active_wedo is None: + self.active_wedo = self.wedo_find() + if self.active_wedo is None: + self._parent.showlabel('status', _('WeDo is unavailable')) + return + status = self.WeDos[self.active_wedo].setMotorB(speed) + if status == UNAVAILABLE: + self._parent.showlabel( + 'status', _('%s is unavailable on WeDo %d') % ( + _('Motor B'), self.active_wedo + 1)) + + def start(self): + ''' Each time program starts, scan for devices and reset status ''' + for wedo in self.WeDos: + wedo.dev = None + self.active_wedo = None + device_list = scan_for_devices() + if len(device_list) > 0: + self.status = True + if self.active_wedo is None: + self.active_wedo = 0 + else: + self.status = False + for i, dev in enumerate(device_list): + if i < len(self.WeDos): + self.WeDos[i].dev = dev + self.WeDos[i].number = i + status = self.WeDos[i].init_device() # Reinitial device + if status == UNAVAILABLE: + self._parent.showlabel('status', _('WeDo is unavailable')) + else: + self.WeDos.append(WeDo(device=dev)) + self.WeDos[i].number = i + + def stop(self): + if self._status: + for wedo in self.WeDos: + if wedo.dev is not None: + wedo.setMotors(0, 0) + + def goto_background(self): + pass + + def return_to_foreground(self): + pass + + def quit(self): + if self._status: + for wedo in self.WeDos: + if wedo.dev is not None: + wedo.setMotors(0, 0) diff --git a/po/af.po b/po/af.po index b686ae1..e185cde 100644 --- a/po/af.po +++ b/po/af.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# af.po (TURTLEART) #-#-#-#-#\n" "Project-Id-Version: TURTLEART\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,585 +43,1895 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -#, fuzzy -msgid "Palette of turtle commands" -msgstr "palet van skilpadbevele" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "vorentoe" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:132 -#, fuzzy -msgid "moves turtle forward" -msgstr "skuif die skilpad vorentoe" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "agtertoe" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -#, fuzzy -msgid "moves turtle backward" -msgstr "skuif die skilpad agtertoe" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "maak skoon" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -#, fuzzy -msgid "clears the screen and reset the turtle" -msgstr "maak die skerm skoon en herstel die skilpad" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "links" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:166 -#, fuzzy -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "draai die skilpad anti-kloksgewys (gee die hoek in grade)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "regs" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:178 -#, fuzzy -msgid "turns turtle clockwise (angle in degrees)" -msgstr "draai die skilpad kloksgewys (gee die hoek in grade)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "boog" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "hoek" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radius" +#: taextras.py:86 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 "" -#: TurtleArt/tabasics.py:190 -#, fuzzy -msgid "moves turtle along an arc" -msgstr "skuif die skilpad in 'n boog" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "stel xy" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "hoogte" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "wydte" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -#, fuzzy +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "skuif die skilpad na posisie x, y; (0,0) is in die middel van die skem." +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "stel rigting" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -#, fuzzy -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "stel die rigting van die skilpad (0 is na die bokant van die skerm.)" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x-koord" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -"hou die huidige x-koordinaat van die skilpad (kan gebruik word i.p.v. 'n " -"nommerblok)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y-koord" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:270 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"hou die huidige y-koordinaat van die skilpad (kan gebruik word i.p.v. 'n " -"nommerblok)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "rigting" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:274 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -"hou die huidige rigting van die skilpad (kan gebruik word i.p.v. 'n " -"nommerblok)" -#: TurtleArt/tabasics.py:282 -#, fuzzy -msgid "Palette of pen commands" -msgstr "palet van penbevele" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "vul skerm" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "kleur" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "skadu" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "regs" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "vul die agtergrond met (kleur, skadu)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "klank" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:320 +msgid "grey" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "stel kleur" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -#, fuzzy -msgid "sets color of the line drawn by the turtle" -msgstr "stel die" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "stel skadu" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -#, fuzzy -msgid "sets shade of the line drawn by the turtle" -msgstr "stel die skadu van die lyn wat die skilpad teken" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -#: TurtleArt/tabasics.py:340 -#, fuzzy -msgid "sets gray level of the line drawn by the turtle" -msgstr "stel die skadu van die lyn wat die skilpad teken" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" msgstr "" -"hou die huidige kleur van die pen (kan gebruk word i.p.v. 'n nommerblok)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" +#: taextras.py:329 +msgid "NXT not found" msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" -msgstr "hou die huidige skaal (kan gebruik word i.p.v. 'n nommerblok)" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pen op" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -#, fuzzy -msgid "Turtle will not draw when moved." -msgstr "skilpad sal nie teken wanneer hy geskuif word nie." +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pen af" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -#, fuzzy -msgid "Turtle will draw when moved." -msgstr "skilpad sal teken wanneer hy geskuif word." +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "stel pengrootte" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -#, fuzzy -msgid "sets size of the line drawn by the turtle" -msgstr "stel die grootte van die lyn wat die skilpad teken" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" +#: taextras.py:337 +msgid "Get the name of a brick." msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:338 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" +#: taextras.py:339 +msgid "frequency" msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "pengrootte" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "hou die huidige pengrootte (kan gebruk word i.p.v. 'n nommerblok)" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:441 -#, fuzzy -msgid "Palette of pen colors" -msgstr "palet van penbevele" +#: taextras.py:344 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 #, fuzzy -msgid "red" +msgid "read" msgstr "rooi" -#: TurtleArt/tabasics.py:444 -#, fuzzy -msgid "orange" -msgstr "oranje" +#: taextras.py:370 +msgid "sensor" +msgstr "" -#: TurtleArt/tabasics.py:446 -#, fuzzy -msgid "yellow" -msgstr "geel" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" +#: taextras.py:372 +msgid "PORT 2" msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" +#: taextras.py:373 +msgid "PORT 2 of the brick" msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" +#: taextras.py:374 +msgid "light sensor" msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" +#: taextras.py:375 +msgid "grey sensor" msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" +#: taextras.py:376 +msgid "PORT 3" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "agtertoe" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "stel tekskleur" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArt/tabasics.py:463 -#, fuzzy -msgid "sets color of text drawn by the turtle" -msgstr "stel die kleur van die lyn wat die skilpad teken" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "stel teksgrootte" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: TurtleArt/tabasics.py:474 -#, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "stel die grootte van die teks wat die skilpad teken" +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:557 -#, fuzzy -msgid "Palette of numeric operators" -msgstr "palet van numeriese bewerkers" +#: taextras.py:382 +msgid "sound sensor" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" +#: taextras.py:383 +msgid "color sensor" msgstr "" -#: TurtleArt/tabasics.py:567 +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 #, fuzzy -msgid "adds two alphanumeric inputs" -msgstr "tel twee numeriese insetwaardes bymekaar" +msgid "mode" +msgstr "modulo" -#: TurtleArt/tabasics.py:575 -msgid "minus" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "trek die onderste numeriese insetwaarde van die boonste een af" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "vermenigvuldig twee numeriese insetwaardes" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" +#: taextras.py:423 +msgid "analog read" msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:424 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"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 "" -"deel die boonste numeriese insetwaarde (teller) deur die onderste een " -"(noemer)" -#: TurtleArt/tabasics.py:614 -msgid "identity" +#: taextras.py:426 +msgid "digital write" msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identitietsbewerker om blokke uit te brei" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "modulo" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modulêre (reswaarde) operateur" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" +#: taextras.py:430 +msgid "Set HIGH value for digital port." msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." msgstr "" -#: TurtleArt/tabasics.py:639 -#, fuzzy -msgid "calculates square root" -msgstr "werk die vierkantswortel uit" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "ewekansig" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "maks" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: TurtleArt/tabasics.py:650 -#, fuzzy -msgid "returns random number between minimum (top) and maximum (bottom) values" +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" msgstr "" -"gee 'n ewekansige nommerwaarde tussen minimum- (links) en maksimumwaardes " -"(regs)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "syfer" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "gebruik as numeriese insetwaarde in wiskundige operateurs" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logiese groter-as bewerker" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logiese kleiner-as bewerker" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logiese gelyk-aan bewerker" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "NIE" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logiese NIE-bewerker" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "EN" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logiese EN-bewerker" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "OF" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logiese OF-bewerker" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 #, fuzzy -msgid "Palette of flow operators" -msgstr "palet van vloeibewerkers" +msgid "samples" +msgstr "" +"#-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# af.po (TURTLEART) #-#-#-#-#\n" +"Voorbeelde" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "wag" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "vir altyd" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:758 -#, fuzzy -msgid "loops forever" -msgstr "gaan vir altyd in 'n lus in" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "herhaal" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:770 -#, fuzzy -msgid "loops specified number of times" -msgstr "gaan 'n gespesifiseerde hoeveelheid kere in 'n lus in" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "as" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "dan" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "AS-DAN-bewerker wat boolse bewerkers van die Syferpalet gebruik" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "andersins" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" +#: taextras.py:486 +msgid "read analog sensor input voltage" msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "AS-DAN-ANDERS-bewerker wat boolse bewerkers van die Syferpalet gebruik" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" +#: taextras.py:489 +msgid "read square wave 1 voltage" msgstr "" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "titel" + +#: TurtleArt/tabasics.py:446 +#, fuzzy +msgid "yellow" +msgstr "geel" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "AS-DAN-bewerker wat boolse bewerkers van die Syferpalet gebruik" + #: TurtleArt/tabasics.py:812 #, fuzzy msgid "jogs stack right" msgstr "skuif stapel regs" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Joernaal media-objek" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "hokkie 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "hokkie 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Stap" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "vermenigvuldig twee numeriese insetwaardes" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Versteek palet" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar Joernaal video-objek" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "x-koordinaat van die regterkant van die skerm" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +#, fuzzy +msgid "Palette of extra options" +msgstr "palet van ekstra opsies" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "rigting" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +#, fuzzy +msgid "draws text or show media from the Journal" +msgstr "teken teks of wys media van die Joernaal" #: TurtleArt/tabasics.py:820 #, fuzzy msgid "jogs stack down" msgstr "skuif stapel af" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modulêre (reswaarde) operateur" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "onderkant" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "" +"voer die kode uit wat in die tamyblock.py module onder die Joernaal gevind " +"word" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pen af" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "wag" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "hokkie" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#, fuzzy +msgid "invokes named action stack" +msgstr "roep die beoemde aksiestapel in" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "aksie" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +#, fuzzy +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "AS-DAN-ANDERS-bewerker wat boolse bewerkers van die Syferpalet gebruik" + +#: TurtleArt/tabasics.py:922 +#, fuzzy +msgid "Variable 2 (numeric value)" +msgstr "veranderlike 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "wydte van die werksoppervlak" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "maak hoop skoon" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "benoemde veranderlike" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "teks" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "stel pengrootte" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "voorleggingstemplaat: Kies 'n Joernaalobjek (sonder beskrywing)" + +#: TurtleArt/tabasics.py:958 +#, fuzzy +msgid "top of Action 1 stack" +msgstr "bokant van aksie 1 stapel" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#, fuzzy +msgid "Palette of flow operators" +msgstr "palet van vloeibewerkers" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "AS-DAN-ANDERS-bewerker wat boolse bewerkers van die Syferpalet gebruik" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "stel rigting" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#, fuzzy +msgid "declutters canvas by hiding blocks" +msgstr "maak werksoppervlak skoon deur blokke te versteek" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "stringwaarde" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "beskrywing" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "stel teksgrootte" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "voorleggingstemplaat: Kies vier Joernaalobjekte" + +#: TurtleArt/tabasics.py:340 +#, fuzzy +msgid "sets gray level of the line drawn by the turtle" +msgstr "stel die skadu van die lyn wat die skilpad teken" + #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "stop aksie" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "skadu" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "vul die agtergrond met (kleur, skadu)" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pen op" + +#: TurtleArt/tabasics.py:444 +#, fuzzy +msgid "orange" +msgstr "oranje" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +#, fuzzy +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "dan" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "NIE" + +#: TurtleArt/tabasics.py:178 +#, fuzzy +msgid "turns turtle clockwise (angle in degrees)" +msgstr "draai die skilpad kloksgewys (gee die hoek in grade)" + +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" +msgstr "hou die huidige skaal (kan gebruik word i.p.v. 'n nommerblok)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "x-koordinaat van die linkerkant van die skerm" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "Skilpad" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "versteek blokke" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logiese kleiner-as bewerker" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "stoor in hokkie 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "stoor in hokkie 2" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" +"hou die huidige x-koordinaat van die skilpad (kan gebruik word i.p.v. 'n " +"nommerblok)" -#: TurtleArt/tabasics.py:838 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "druk" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Stoor as Logo" + +#: TurtleArt/tabasics.py:317 #, fuzzy -msgid "Palette of variable blocks" -msgstr "palet van veranderlike blokke" +msgid "sets color of the line drawn by the turtle" +msgstr "stel die" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "begin" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "stel tekskleur" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "syfer" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "bokant" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "stel skaal" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "koppel die aksie aan die die nutsbalk se uitvoerknoppies" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "hoogte van die werksoppervlak" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "voorlegging" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "EN" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "hou die huidige pengrootte (kan gebruk word i.p.v. 'n nommerblok)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "stel kleur" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "laai my blok" + +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "palet van penbevele" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +#, fuzzy +msgid "shows values in FILO (first-in last-out heap)" +msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +#, fuzzy +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "AS-DAN-ANDERS-bewerker wat boolse bewerkers van die Syferpalet gebruik" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logiese NIE-bewerker" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "y-koordinaat van die onderkant van die skerm" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "voorleggingstemplaat: Kies 'n Joernaalobjek (met beskrywing)" + +#: TurtleArt/tabasics.py:557 +#, fuzzy +msgid "Palette of numeric operators" +msgstr "palet van numeriese bewerkers" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "vir altyd" + +#: TurtleArt/tabasics.py:329 +#, fuzzy +msgid "sets shade of the line drawn by the turtle" +msgstr "stel die skadu van die lyn wat die skilpad teken" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "maak skoon" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "voorleggingstemplaat: Kies twee Joernaalobjekte" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "Wys blokke" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Volskerm" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "wys" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -608,121 +1943,655 @@ msgstr "koppel die aksie aan die die nutsbalk se uitvoerknoppies" msgid "text" msgstr "teks" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "stringwaarde" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "ewekansig" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "aksie" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logiese groter-as bewerker" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "bokant van benoembare aksiestapel" +#: TurtleArt/tabasics.py:166 +#, fuzzy +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "draai die skilpad anti-kloksgewys (gee die hoek in grade)" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#: TurtleArt/tabasics.py:454 #, fuzzy -msgid "invokes named action stack" -msgstr "roep die beoemde aksiestapel in" +msgid "black" +msgstr "agtertoe" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "stoor in hokkie 1" +#: TurtleArt/tabasics.py:639 +#, fuzzy +msgid "calculates square root" +msgstr "werk die vierkantswortel uit" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"hou die huidige y-koordinaat van die skilpad (kan gebruik word i.p.v. 'n " +"nommerblok)" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "bokant" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x-koord" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Hulp" + +#: TurtleArt/tabasics.py:463 +#, fuzzy +msgid "sets color of text drawn by the turtle" +msgstr "stel die kleur van die lyn wat die skilpad teken" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "sleutelbord" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "boog" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radius" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "stel skadu" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logiese EN-bewerker" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Voer uit" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "wys die hoop" + +#: TurtleArt/tabasics.py:217 +#, fuzzy +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "stel die rigting van die skilpad (0 is na die bokant van die skerm.)" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "Titel:" + +#: TurtleArt/tabasics.py:838 +#, fuzzy +msgid "Palette of variable blocks" +msgstr "palet van veranderlike blokke" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "gebruik as numeriese insetwaarde in wiskundige operateurs" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "voorlegging" + +#: TurtleArt/tabasics.py:912 +#, fuzzy +msgid "Variable 1 (numeric value)" +msgstr "veranderlike 1" + +#: TurtleArt/tabasics.py:567 +#, fuzzy +msgid "adds two alphanumeric inputs" +msgstr "tel twee numeriese insetwaardes bymekaar" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "andersins" + +#: TurtleArt/tabasics.py:379 +#, fuzzy +msgid "Turtle will not draw when moved." +msgstr "skilpad sal nie teken wanneer hy geskuif word nie." + +#. #-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# af.po (TURTLEART) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "haal af" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "pengrootte" + +#: TurtleArt/tabasics.py:190 +#, fuzzy +msgid "moves turtle along an arc" +msgstr "skuif die skilpad in 'n boog" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logiese gelyk-aan bewerker" + +#: TurtleArt/tabasics.py:441 +#, fuzzy +msgid "Palette of pen colors" +msgstr "palet van penbevele" #: TurtleArt/tabasics.py:888 #, fuzzy msgid "stores numeric value in Variable 1" msgstr "stoor die numeriese waarde in veranderlike 1" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "stoor in hokkie 2" - #: TurtleArt/tabasics.py:901 #, fuzzy msgid "stores numeric value in Variable 2" msgstr "stoor die numeriese waarde in veranderlike 2" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "hokkie 1" +#: TurtleArt/tabasics.py:143 +#, fuzzy +msgid "moves turtle backward" +msgstr "skuif die skilpad agtertoe" -#: TurtleArt/tabasics.py:912 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "y-koordinaat van die bokant van die skerm" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Wys blokke" + +#: gnome_plugins/collaboration_plugin.py:304 #, fuzzy -msgid "Variable 1 (numeric value)" -msgstr "veranderlike 1" +msgid "Colors" +msgstr "kleur" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "hokkie 2" +#: TurtleArt/tabasics.py:398 +#, fuzzy +msgid "sets size of the line drawn by the turtle" +msgstr "stel die grootte van die lyn wat die skilpad teken" -#: TurtleArt/tabasics.py:922 +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 #, fuzzy -msgid "Variable 2 (numeric value)" -msgstr "veranderlike 2" +msgid "orientation" +msgstr "voorlegging" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y-koord" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "as" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#, fuzzy +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"skuif die skilpad na posisie x, y; (0,0) is in die middel van die skem." + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +#, fuzzy +msgid "Stop" +msgstr "bokant" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#, fuzzy +msgid "action 2" +msgstr "aksie" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +#, fuzzy +msgid "action 1" +msgstr "aksie" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopieer" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Plak" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "maak hoop skoon" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#, fuzzy +msgid "pops value off FILO (first-in last-out heap)" +msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Maak skoon" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +#, fuzzy +msgid "Palette of presentation templates" +msgstr "palet van voorleggingstemplate" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "hoek" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "links" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "trek die onderste numeriese insetwaarde van die boonste een af" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "vra vir inset van die sleutelbord (word in sleutelbord-blok gestoor)" + +#: TurtleArt/tabasics.py:154 +#, fuzzy +msgid "clears the screen and reset the turtle" +msgstr "maak die skerm skoon en herstel die skilpad" + +#: TurtleArt/tabasics.py:977 +#, fuzzy +msgid "invokes Action 1 stack" +msgstr "roep aksie 1 stapel in" + +#: TurtleArt/tabasics.py:123 +#, fuzzy +msgid "Palette of turtle commands" +msgstr "palet van skilpadbevele" + +#: TurtleArt/tabasics.py:758 +#, fuzzy +msgid "loops forever" +msgstr "gaan vir altyd in 'n lus in" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projek" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Ontfout" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "Wys blokke" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar Journal beskrywingsveld" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "skaal" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "onderkant" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Beskrywing:" + +#: TurtleArt/tabasics.py:388 +#, fuzzy +msgid "Turtle will draw when moved." +msgstr "skilpad sal teken wanneer hy geskuif word." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Joernaal oudio-objek" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Stop die skilpad" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Skilpad" #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "stoor in" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "hokkie" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Versteek blokke" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "OF" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +#, fuzzy +msgid "presentation template: list of bullets" +msgstr "voorleggingstemplaat: Kollys met sewe kolle" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identitietsbewerker om blokke uit te brei" + +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "stel die grootte van die teks wat die skilpad teken" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" msgstr "" +"hou die huidige rigting van die skilpad (kan gebruik word i.p.v. 'n " +"nommerblok)" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" +#: TurtleArt/tabasics.py:650 +#, fuzzy +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"gee 'n ewekansige nommerwaarde tussen minimum- (links) en maksimumwaardes " +"(regs)" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" msgstr "" +"hou die huidige kleur van die pen (kan gebruk word i.p.v. 'n nommerblok)" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Wys palet" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Stoor flitsbeeld" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "begin" + +#: TurtleArt/tabasics.py:132 +#, fuzzy +msgid "moves turtle forward" +msgstr "skuif die skilpad vorentoe" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "vorentoe" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "agtertoe" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#, fuzzy +msgid "sets the scale of media" +msgstr "stel die skaal van die media" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "voorlegging" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "voorlegging" + +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "bokant van benoembare aksiestapel" #: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 #, fuzzy msgid "stores numeric value in named variable" msgstr "stoor numeriese waarde in benoemde veranderlike" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "benoemde veranderlike" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logiese OF-bewerker" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +#: TurtleArt/tabasics.py:770 #, fuzzy -msgid "action 1" -msgstr "aksie" +msgid "loops specified number of times" +msgstr "gaan 'n gespesifiseerde hoeveelheid kere in 'n lus in" -#: TurtleArt/tabasics.py:958 +#: TurtleArt/tabasics.py:987 #, fuzzy -msgid "top of Action 1 stack" -msgstr "bokant van aksie 1 stapel" +msgid "invokes Action 2 stack" +msgstr "roep aksie 2 stapel in" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 #, fuzzy -msgid "action 2" -msgstr "aksie" +msgid "setxy" +msgstr "stel xy" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "vul skerm" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "stel xy" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "herhaal" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Stoor as prent" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Redigeer" #: TurtleArt/tabasics.py:967 #, fuzzy msgid "top of Action 2 stack" msgstr "bokant van aksie 2 stapel" -#: TurtleArt/tabasics.py:977 +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"deel die boonste numeriese insetwaarde (teller) deur die onderste een " +"(noemer)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "maks" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "" +"vertoon die waarde in die statusblokkie aan die onderkant van die skerm" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 #, fuzzy -msgid "invokes Action 1 stack" -msgstr "roep aksie 1 stapel in" +msgid "holds results of query-keyboard block as ASCII" +msgstr "hou die resultaat van die sleutelbord-navraagblok" -#: TurtleArt/tabasics.py:987 +#. #-#-#-#-# af.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# af.po (TURTLEART) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "druk" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "regs" + +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "" + +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "" + +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:443 #, fuzzy -msgid "invokes Action 2 stack" -msgstr "roep aksie 2 stapel in" +msgid "red" +msgstr "rooi" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "modulo" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "" + +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "" #: TurtleArt/tabasics.py:995 msgid "trash" @@ -757,33 +2626,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "titel" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Stop die skilpad" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Wys blokke" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Versteek blokke" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -821,16 +2663,6 @@ msgstr "" msgid "click to open" msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -#, fuzzy -msgid "orientation" -msgstr "voorlegging" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "teks" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -846,33 +2678,14 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Stoor as Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Stoor as prent" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Stoor flitsbeeld" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -882,14 +2695,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Wys palet" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Versteek palet" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -898,42 +2703,20 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Redigeer" - #: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 #: TurtleArtActivity.py:747 turtleblocks.py:382 msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projek" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopieer" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Plak" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Volskerm" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -946,11 +2729,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "Wys blokke" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -960,27 +2738,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Maak skoon" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Voer uit" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Stap" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Hulp" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -#, fuzzy -msgid "Stop" -msgstr "bokant" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1092,11 +2849,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "kleur" - #: 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 @@ -1125,15 +2877,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "Titel:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Beskrywing:" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" @@ -1168,11 +2911,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "klank" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1199,13 +2937,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1232,15 +2963,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1277,27 +2999,11 @@ msgstr "" msgid "while" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -#, fuzzy -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "AS-DAN-ANDERS-bewerker wat boolse bewerkers van die Syferpalet gebruik" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 msgid "until" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#, fuzzy -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "AS-DAN-ANDERS-bewerker wat boolse bewerkers van die Syferpalet gebruik" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "bokant" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1306,59 +3012,18 @@ msgstr "" msgid "journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Joernaal media-objek" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 msgid "audio" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Joernaal oudio-objek" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar Joernaal video-objek" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "beskrywing" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar Journal beskrywingsveld" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "wys" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -#, fuzzy -msgid "draws text or show media from the Journal" -msgstr "teken teks of wys media van die Joernaal" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "stel skaal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -#, fuzzy -msgid "sets the scale of media" -msgstr "stel die skaal van die media" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 msgid "save picture" msgstr "" @@ -1380,10 +3045,6 @@ msgstr "" msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "skaal" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1482,19 +3143,6 @@ msgstr "" msgid "query keyboard" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "vra vir inset van die sleutelbord (word in sleutelbord-blok gestoor)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "sleutelbord" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "hou die resultaat van die sleutelbord-navraagblok" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 msgid "read pixel" msgstr "" @@ -1511,62 +3159,14 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -#, fuzzy -msgid "Palette of extra options" -msgstr "palet van ekstra opsies" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "druk" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -#, fuzzy -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "wys die hoop" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -#, fuzzy -msgid "shows values in FILO (first-in last-out heap)" -msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "maak hoop skoon" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "haal af" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -#, fuzzy -msgid "pops value off FILO (first-in last-out heap)" -msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "maak hoop skoon" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" @@ -1581,14 +3181,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "druk" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "vertoon die waarde in die statusblokkie aan die onderkant van die skerm" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 msgid "Python chr operator" msgstr "" @@ -1627,14 +3219,6 @@ msgstr "" msgid "Python block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "" -"voer die kode uit wat in die tamyblock.py module onder die Joernaal gevind " -"word" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 msgid "Cartesian" msgstr "" @@ -1651,12 +3235,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "Skilpad" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1681,18 +3259,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "laai my blok" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "stel xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1701,25 +3267,6 @@ msgstr "" msgid "selects a palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -#, fuzzy -msgid "Palette of presentation templates" -msgstr "palet van voorleggingstemplate" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "versteek blokke" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -#, fuzzy -msgid "declutters canvas by hiding blocks" -msgstr "maak werksoppervlak skoon deur blokke te versteek" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "Wys blokke" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1737,70 +3284,6 @@ msgstr "" msgid "presentation bulleted list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -#, fuzzy -msgid "presentation template: list of bullets" -msgstr "voorleggingstemplaat: Kollys met sewe kolle" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "voorleggingstemplaat: Kies 'n Joernaalobjek (sonder beskrywing)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "voorleggingstemplaat: Kies 'n Joernaalobjek (met beskrywing)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "voorleggingstemplaat: Kies vier Joernaalobjekte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "voorleggingstemplaat: Kies twee Joernaalobjekte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "x-koordinaat van die linkerkant van die skerm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "onderkant" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "y-koordinaat van die onderkant van die skerm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "wydte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "wydte van die werksoppervlak" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "x-koordinaat van die regterkant van die skerm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "y-koordinaat van die bokant van die skerm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "hoogte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "hoogte van die werksoppervlak" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 msgid "title x" msgstr "" @@ -1821,32 +3304,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "onderkant" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "voorlegging" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "voorlegging" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "voorlegging" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "voorlegging" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1874,11 +3331,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "bokant" - #: pysamples/grecord.py:217 msgid "play" msgstr "" @@ -1956,14 +3408,6 @@ msgstr "" msgid "Tools" msgstr "" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Ontfout" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Skilpad" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1976,22 +3420,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "regs" - -#, fuzzy -#~ msgid "read" -#~ msgstr "rooi" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "modulo" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Voorbeelde" - #~ msgid "Save as HTML" #~ msgstr "Stoor as HTML" @@ -2050,7 +3478,8 @@ msgstr "" #~ "hou die huidige skadu van die pen (kan gebruk word i.p.v. 'n nommerblok)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" #~ "'n programmeerbare blok: voeg jou eie wiskundige vergelyking in die blok, " #~ "bv. sin(x)" diff --git a/po/am.po b/po/am.po index e0170b1..4e30350 100644 --- a/po/am.po +++ b/po/am.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# am.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# am.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# am.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# am.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1604 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "ቀለም" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "ቀኝ" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr " አርእስት" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "እርምጃ" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "ቀጥል" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "ሚስጢራዊ ቃል፦" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "አጣጣል" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "እንጂ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "አትም" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "ቁጥር" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "ላይኛ" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "ተወው ሻር" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "ሙሉ እስክሪን" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "ጽሑፍ" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "ኋላ" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "ላይኛ" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr " አርእስት፦" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "ቀለም" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "ክፈት" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "ቁም ቁሚ አቁም አቁሚ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ድምፅ" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "መሣሪያዎች" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "ግራ" + +#: gnome_plugins/collaboration_plugin.py:300 +#, fuzzy +msgid "Password" +msgstr "ሚስጢራዊ ቃል፦" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "ውጣ" + +#: turtleblocks.py:354 +msgid "New" +msgstr "አዲስ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "ሚዛን" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "መጽሔት" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "ጀምር" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "ኋላ" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#, fuzzy +msgid "fill screen" +msgstr "ሙሉ እስክሪን" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -42,10 +1665,6 @@ msgstr "" msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "ኋላ" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" @@ -58,11 +1677,6 @@ msgstr "" msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "ግራ" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -96,14 +1710,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -154,17 +1760,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#, fuzzy -msgid "fill screen" -msgstr "ሙሉ እስክሪን" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "ቀለም" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -302,11 +1897,6 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "ኋላ" - #: TurtleArt/tabasics.py:460 msgid "set text color" msgstr "" @@ -404,10 +1994,6 @@ msgstr "" msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "ቁጥር" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -436,10 +2022,6 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "እንጂ" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" @@ -545,25 +2127,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "ጀምር" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "ጽሑፍ" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -625,10 +2192,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -701,18 +2264,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr " አርእስት" - #: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 msgid "Stop turtle" @@ -768,10 +2319,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "ቀጥል" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -870,11 +2417,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "ሙሉ እስክሪን" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -908,18 +2450,10 @@ msgstr "" msgid "Run" msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "እርምጃ" - #: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 msgid "Help" msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "ቁም ቁሚ አቁም አቁሚ" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1023,20 +2557,10 @@ msgstr "" msgid "Port" msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -#, fuzzy -msgid "Password" -msgstr "ሚስጢራዊ ቃል፦" - #: gnome_plugins/collaboration_plugin.py:302 msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "ቀለም" - #: 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 @@ -1061,14 +2585,6 @@ msgstr "" msgid "Username:" msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "ሚስጢራዊ ቃል፦" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr " አርእስት፦" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1077,10 +2593,6 @@ msgstr "" msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "ተወው ሻር" - #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "" @@ -1107,11 +2619,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1127,24 +2634,11 @@ msgstr "" msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "አጣጣል" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1171,15 +2665,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1229,28 +2714,14 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "ላይኛ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "መጽሔት" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ድምፅ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" @@ -1315,10 +2786,6 @@ msgstr "" msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "ሚዛን" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1445,10 +2912,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1510,10 +2973,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "አትም" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1697,10 +3156,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1713,10 +3168,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1789,11 +3240,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "ላይኛ" - #: pysamples/grecord.py:217 msgid "play" msgstr "" @@ -1831,14 +3277,6 @@ msgstr "" msgid "Configuration directory not writable: %s" msgstr "" -#: turtleblocks.py:354 -msgid "New" -msgstr "አዲስ" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "ክፈት" - #: turtleblocks.py:356 msgid "Save" msgstr "" @@ -1847,10 +3285,6 @@ msgstr "" msgid "Save as" msgstr "" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "ውጣ" - #: turtleblocks.py:363 msgid "File" msgstr "" @@ -1867,10 +3301,6 @@ msgstr "" msgid "Show/hide blocks" msgstr "" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "መሣሪያዎች" - #: turtleblocks.py:402 msgid "Debug" msgstr "" @@ -1891,10 +3321,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "ቀኝ" - #~ msgid "full screen" #~ msgstr "ሙሉ እስክሪን" diff --git a/po/ar.po b/po/ar.po index ce803b1..11d23ba 100644 --- a/po/ar.po +++ b/po/ar.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -19,6 +44,1675 @@ msgstr "" "X-Generator: Pootle 2.0.3\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "س" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "ص" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "لون" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "يمين" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "باقي" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ar.po (PACKAGE VERSION) #-#-#-#-#\n" +"نماذج" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "الصندوق 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "الصندوق 1" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "عنوان" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "ضع القلم" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "انتظر" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "حدد حجم القلم" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "حدد العنوان" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "حدد حجم القلم" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "ظل" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "ارفع القلم" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "عندها" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ليس" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "سلحفاة" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "احفظ في الصندوق 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "احفظ في الصندوق 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "اطبع" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "عدد" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "حدد التظليل" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "و" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "حدد اللون" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "أقل" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "للأبد" + +#: TurtleArt/tabasics.py:151 +#, fuzzy +msgid "clean" +msgstr "نظف" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +#, fuzzy +msgid "Fullscreen" +msgstr "ملء الشاشه" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "عشوائي" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "السابق:: للخلف" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "قوس" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "نصف القطر" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "حدد التظليل" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "وإلا" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "حجم القلم" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "لون" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "إذا" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "نظف" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "زاوية" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "يسار" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "السلحفاة" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "مشروع" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "سلحفاة" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "أو" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "للأمام" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "السابق:: للخلف" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "حدد س ص" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "ملء الشاشه" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "حدد س ص" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "كرر" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "أاكثر" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -33,38 +1727,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "للأمام" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "السابق:: للخلف" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -#, fuzzy -msgid "clean" -msgstr "نظف" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "يسار" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -78,43 +1752,15 @@ msgstr "يمين" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "قوس" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "زاوية" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "نصف القطر" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "حدد س ص" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "س" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "ص" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "حدد العنوان" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" @@ -141,11 +1787,6 @@ msgid "" "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "عنوان" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -156,23 +1797,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "ملء الشاشه" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "لون" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "ظل" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -183,18 +1807,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "حدد اللون" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "حدد التظليل" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -219,26 +1835,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "ارفع القلم" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "ضع القلم" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "حدد حجم القلم" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -259,10 +1863,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "حجم القلم" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -303,11 +1903,6 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "السابق:: للخلف" - #: TurtleArt/tabasics.py:460 msgid "set text color" msgstr "" @@ -316,11 +1911,6 @@ msgstr "" msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "حدد حجم القلم" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -390,26 +1980,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "عشوائي" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "أقل" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "أاكثر" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "عدد" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -438,26 +2012,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ليس" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "و" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "أو" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -467,38 +2029,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "انتظر" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "للأبد" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "كرر" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "إذا" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "عندها" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -507,10 +2049,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "وإلا" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -587,34 +2125,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "احفظ في الصندوق 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "احفظ في الصندوق 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "الصندوق 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "الصندوق 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -627,10 +2149,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -789,10 +2307,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "السلحفاة" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" @@ -851,10 +2365,6 @@ msgstr "" msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "مشروع" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" @@ -872,12 +2382,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -#, fuzzy -msgid "Fullscreen" -msgstr "ملء الشاشه" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -903,11 +2407,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "نظف" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" @@ -1035,11 +2534,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "لون" - #: 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 @@ -1110,11 +2604,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1141,13 +2630,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1174,15 +2656,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1289,11 +2762,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "حدد التظليل" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1449,10 +2917,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1514,10 +2978,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "اطبع" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1582,12 +3042,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "سلحفاة" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1618,11 +3072,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "حدد س ص" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1703,10 +3152,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1719,10 +3164,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1880,10 +3321,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "سلحفاة" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1897,18 +3334,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "يمين" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "باقي" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "نماذج" - -#, fuzzy #~ msgid "full screen" #~ msgstr "ملء الشاشه" diff --git a/po/ayc.po b/po/ayc.po index 22b6918..dc3b25b 100644 --- a/po/ayc.po +++ b/po/ayc.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,1324 +43,2021 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "TurtleBots wakichata" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Tortuga wakichata sarayirinaka limt'aña" - -# "adelante" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "qalltma" - -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "tortuga wakichata nayräxaru sartayma" - -# "atrás" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "qhipäxa" - -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "tortuga wakichata qhipäxaru jitt'ayma" - -# "limpiar" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "mayampi qalltañataki wakichaña" +# "TortugArte Mini" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "Jisk'a TortugArte wakichata" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "mayampi qallatañataki wakichma ukata tortuga wakichata mayampi qalltma" +# "TortugArte Confusión" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "Jani qhana TortugArte wakichata" -# "izquierda" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "ch'iqa" +# "Selecciona un desafío" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "Ch'ama wakichäwi thaqaña" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" +#: taextras.py:45 +msgid "Amazonas Tortuga" msgstr "" -"tortuga wakichata ch'iqa tuqiru jithiyma (ángulo de grados) wakichatarjama" - -# "derecha" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "kupi" - -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "tortuga wakichata kupi tuqiru sarayma (ángulo de grados) wakichatarjama" - -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "sawana" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "k'uchu" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "muruq'u taypi muyuri" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "tortuga wakichata maya sawana saraparu sarayma" +# "Paleta de Pesos Mexicanos" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "México qullqimpi luraña limt'aña" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy wakichata chimpuña" +# "Paleta de Pesos Colombianos" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "Colombia qullqimpi luraña limt'aña" -# "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x wakichata" +# "Paleta de Francos de Ruanda" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Francos de Ruanda qullqimpi luraña limt'aña" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "Dólares Americanos qullqimpi luraña limt'aña" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "Dólares Australianos qullqimpi luraña limt'aña" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "Guaraníes Paraguayos qullqimpi luraña limt'aña" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Nuevos Soles Peruanos qullqimpi luraña limt'aña" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "Pesos Uruguayos qullqimpi luraña limt'aña" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "TurtleBots wakichata" -# "y" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y wakichata" +# "Ajusta la intensidad del LED entre 0 y 255." +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "LED qhana askichaña 0 chimputa 255 chimpukama" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +# "Devuelve el nivel de luz en el ambiente como un número entre 0 y 1023." +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" msgstr "" -"tortuga wakichata xcor, ycor wakichatanakawjaru unxtayma; (0,0) wakichata " -"chimpuwa muruq'u wakichata taypinki." +"wakichaña pachana suma qhanawa qhantayasi kamisa 0 ukata 1023 jakhunaka " +"chimpjama" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "sarayaña chimpuña" +# "Devuelve 1 cuando el botón está presionado y 0 en otro caso." +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "1 jakhu kutsuyi limt'aña limxatatipana ukata 0 kutsuyi jani ukhamipana" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +# "Devuelve el nivel de luz en el ambiente como un número entre 0 y 1023." +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" msgstr "" -"tortuga wakichata sarañapa chimpuña (0 wakichata chimpuxa wakichata " -"patäxankiwa)" +"wakichaña pachana suma qhanawa qhantayasi kamisa 0 ukata 1023 jakhunaka " +"chimpjama" -# "coorx" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor wakichata" +# "Devuelve la temperatura en el ambiente como un número entre 0 y 255." +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" +"wakichaña pachana suma junt'u junt'utatayasi kamisa 0 ukata 255 jakhunaka " +"chimpjama" -#: TurtleArt/tabasics.py:226 +# "Devuelve la distancia del objeto en frente al sensor como un número entre 0 " +# "y 255." +#: taextras.py:71 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -"jichha tortuga x wakichata taypi saririniwa (ukasti maya tama jakhunaka " -"lanti apnaqasirakispa)" +"uñkatasina thaqata wakichata jak'ankatapa yatiyi kamisa 0 ukata 255 " +"jakhunaka chimpjama" -# "coory" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor wakichata" +# "Devuelve 0 o 1 dependiendo the la inclinación del sensor." +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "0 ukata 1 jakhu chimpu kutsuyi uñtaña katjiri kicht'ayatatjama" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +# "Devuelve 1 cuando el sensor detecta un campo magnético, 0 en otro caso." +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" msgstr "" -"jichha tortuga y wakichata taypi saririniwa (ukasti maya tama jakhunaka " -"lanti apnaqasirakispa)" +"1 jakhu chimpu kutsuyi niyatixa uñtaña katjiri uka campo magnético " +"katjatapatjama, 0 chimpu jani ukhamipana" -# "rumbo" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "saraña chimpu" +# "Oscila entre 0 y 1 dependiendo de la vibración." +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "0 ukata 1 jakhu taypinkiwa khatatipanjama" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:76 +msgid "returns the value of the resistance" msgstr "" -"jichha tortuga wakichata saririniwa (ukasti maya tama jakhunaka lanti " -"apnaqasirakispa)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Samichaña phuyu apnaqaña limt'aña" +# "LED" +#: taextras.py:77 +msgid "LED" +msgstr "LED wakichata" -# "pantalla completa" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "maypacha uñtaña phuqachma" +#: taextras.py:78 +msgid "button" +msgstr "limt'aña" -# "color" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "sami" +# "escala de gris" +#: taextras.py:79 +msgid "grayscale" +msgstr "uqi uñamt'irinakapa" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "ist'añataki wakichata" +# "luz ambiente" +#: taextras.py:80 +msgid "ambient light" +msgstr "qhana pacha" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "manqhäxa wakichatanakampi phuqachma (samimpi, ch'iwumpi)" +# "temperatura" +#: taextras.py:81 +msgid "temperature" +msgstr "junt'utatata" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "uqiru samiri" +# "distancia" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "jaya" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "sami wakichaña" +# "inclinación" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "kicht'ata" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "tortuga wakichatampi rixita rixi sami wakichma" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "campo magnético wakichata" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "ist'añataki wakichata wakichaña" +# "vibración" +#: taextras.py:85 +msgid "vibration" +msgstr "khatati" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "tortuga wakichatana rixitapa rixi samiru uñamt'aya wakichaña" +#: taextras.py:86 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 "ch'amanchiritaki wakichata" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "uqiru samiri wakichaña" +# "Robot Butiá" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "Robot Butiá wakichata jaqi" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "Butiá wakichataru samarayaña" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "Butiá wakichata tamanakana limt'añapa machaqachma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "Butiá wakichatana batería wakisiripa ch'amanchma" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "tortuga wakichatana rixitapa rixi uqi saminiñapa wakichma" +# "Devuelve la temperatura en el ambiente como un número entre 0 y 255." +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" +"robot wakichata jaqina batería wakisiripa ch'amancharapi kamisa 0 jakhu " +"chimputa 255 chimpukama" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "Butiá wakichatana k'ata sarañapa" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" msgstr "" -"jichha samichaña phuyu samipaniwa (maya tama jakhunaka lanti apanaqasispa)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "jichha samichaña phuyuna samichañapaniwa" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "Butiá wakichatampi qalltma" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "" -"jichha uqiru samiri samichañapaniwa (maya tama jakhunaka lanti apanaqasispa)" +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "robot Butiá wakichata jaqiru nayräxaru sartayma" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "samichaña phuyu jithsuyaña" +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "robot Butiá wakichata jaqiru nayräxaru sartayma amtata sarakama" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Tortuga wakichataxa unxtayata janiwa rixichkaniti." +# "izquierda Butiá" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "Butiá wakichata ch'iqäxankiri" + +#: taextras.py:103 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "robot Butiá wakichata jaqi kupïxaru muytayma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "Butiá qhipäxa" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "robot Butiá wakichata jaqi qhipäxaru jithiyma" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "robot Butiá wakichata jaqiru qhipäxaru jithiyma amtata sarakama" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "samichaña phuyu jithiqayaña" +# "derecha Butiá" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "Butiá wakichata kupïxa" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "robot Butiá wakichata jaqi kupïxaru muytayma" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "Butiá wakichata muytayaña" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "robot Butiá wakichata x grados pachparu muytayma" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Tortuga wakichataxa unxtasina rixichaniwa." +# "detener Butiá" +#: taextras.py:113 +msgid "stop Butia" +msgstr "Butiá wakichata sayt'ayaña" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "taña chanichaña" +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "Butiá wakichata sayt'ayma" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "tortuga wakichatampi rixiñataki rixi chanipa wakichma" +# "Butiá" +#: taextras.py:115 +msgid "Butia" +msgstr "Butiá wakichata" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "phuqachaña wakichaña qalltaña" +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +# "Error en la inicialización de la cámara." +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "Cámara wakichataru qhantayaskasina pantjata" + +#: taextras.py:121 +#, fuzzy +msgid "No camera was found" +msgstr "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"Janiwa cámara wakichatanakaxa jakisiti" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "Cámara wakichata sayt'aykasina pantjata" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "Cámara wakichata qhantaykasina pantjata" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" msgstr "" -"k'uchunakani wakichata samichasa phuqachaña qalltaña (ukasti maya siqi " -"wakichata samichasa phuqachaña tukuyañana apnaqasi)" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "samichasa phuqachaña tukuyaña" +# "FollowMe" +#: taextras.py:126 +msgid "FollowMe" +msgstr "FollowMe wakichata" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:127 +msgid "refresh FollowMe" msgstr "" -"k'uchunakani wakichata samichasa phuqachaña tukuyma (ukasti maya siqi " -"wakichata samichasa phuqachaña qalltañana apnaqasi)" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "taña wakichata" +#: taextras.py:128 +#, fuzzy +msgid "Search for a connected camera." +msgstr "Brick NXT wakichata mayachatnama thaqtma." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "calibración wakichata" + +#: taextras.py:131 +#, fuzzy +msgid "store a personalized calibration" +msgstr "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"wakisiriparjama calibración wakichata kutsuyi\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"wakisiriparjama calibración wakichata kutsuyi\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"wakisiripanjama calibración wakichata imma" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "wakisiriparjama calibración wakichata kutsuyi" + +#: taextras.py:133 +msgid "follow" +msgstr "arkaña" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "samimpi jani ukaxa calibración wakisiñampi arkaña" + +#: taextras.py:135 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 "lliphi" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." msgstr "" -"jichha samichaña phuyu wakichata tañapaniwa (maya tama jakhunaka lanti " -"apnaqasispa)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Samichaña phuyu saminakapa limt'aña" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "juk'ata sipana píxeles wakichata" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "juk'ata sipana píxeles jakhu chimpupa arkaña amtma" + +#: taextras.py:139 +msgid "threshold" +msgstr "warachi wakichata" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "RGB samitaki warachi wakichma" + +#: taextras.py:142 +msgid "camera mode" +msgstr "cámara wakichata uñanaqa" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +#, fuzzy +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"cámara wakichata samini uñanaqapa HSV chimpuniru wakichma\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"cámara wakichata samini uñanaqapa HSV chimpuniru wakichma\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"cámara wakichata samipa uñanaqapa wakichma: RGB, YUV jani ukaxa HSV chimpuni" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "chupika" +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "laranja q'illu" +#: taextras.py:147 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "q'illu" +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "ch'uxña" +# "posición x" +#: taextras.py:149 +msgid "x position" +msgstr "x sayäwi" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cian wakichata" +# "retorna la posición x" +#: taextras.py:150 +msgid "return x position" +msgstr "x sayäwi kutiyaña" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "larama" +# "posición y" +#: taextras.py:151 +msgid "y position" +msgstr "y sayäwi" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "khuchi wila sami" +# "retorna la posición y" +#: taextras.py:152 +msgid "return y position" +msgstr "y sayäwi kutiyaña" + +#: taextras.py:153 +msgid "pixels" +msgstr "píxeles wakichata" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "jach'a allqantata píxeles wakichata jakhu chimpupa kutiyma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "cámara wakichata samini uñnaqapa RGB chimpuniru wakichma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "cámara wakichata samini uñanaqapa YUV chimpuniru wakichma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "cámara wakichata samini uñanaqapa HSV chimpuniru wakichma" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "calibración wakichata ch'usa" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "qillqata wakichata wiskhallana mayjt'ayäwina pantjata" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "SumBot wakichata" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "SumBot wakichata k'ata saräwipa" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "SumBot wakichata k'ata saräwipa machaqachma" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "sarayaña limt'añanaka pantjasina k'ata sarayäwi machaqachma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "SumBot wakichatampi qalltma" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "SumBot wakichata nayräxaru sartayma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "SumBot wakichata qhipäxa" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "SumBot wakichata qhipäxaru jithiyma" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "SumBot wakichata sayt'ayaña" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "SumBot wakichata sayt'ayma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "SumBot wakichata ch'iqäxa" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "SumBot wakichata ch'iqäxaru muytayma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "SumBot wakichata kupïxa" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "SumBot wakichata kupïxaru muytayma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.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:187 +msgid "angle to center" +msgstr "taypiru k'uchuni wakichata" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "dohyo taypiru k'uchuni wakichata apsma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "k'uchuni wakichata uñisiri" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "k'uchuni wakichata uñisiri apsma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "coor. x SumBot wakichata" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "SumBot wakichatana coordenada x chanipa apsma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "coor. y SumBot wakichata" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "SumBot wakichatana coordenada y chanipa apsma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "coor. x wakichata uñisiri" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "uñisiri wakichatana coordenada x chanipa apsma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "coor. y wakichata uñisiri" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "uñisiri wakichatana coordenada y chanipa apsma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "SumBot wakichata muyüwipa" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "SumBot wakichata muyüwipa apsma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "uñisiri wakichatana muyüwipa" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "uñisiri wakichatana muyüwipa apsma" + +#: taextras.py:212 +msgid "distance to center" +msgstr "taypiru sara" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "dohyo wakichata taypiru sarapa apsma" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "uñisiri wakichata jayankatapa" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "uñisiri wakichata jayankatapa apsma" + +#: taextras.py:217 +msgid "update information" +msgstr "yatiyañataki machaqachaña" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "wakichatanaka apnaqañatpacha yatiyañanaka machaqachma" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "Física wakichata tamanaka limt'aña" + +#: taextras.py:224 +msgid "start polygon" +msgstr "polígono wakichata qalltaña" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" +"Machaqa polígono wakichata wakichaña qalltma uka tortuga wakichata xy jichha " +"sayäwiparjama." -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "janq'u" +#: taextras.py:227 +msgid "add point" +msgstr "chimpu yapxataña" -# "atrás" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "ch'iyära" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "Jichha polígono wakichataru machaqa chimpu yapxatma." + +#: taextras.py:230 +msgid "end polygon" +msgstr "polígono wakichata tukuyaña" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "Machaqa polígono wakichata wakichma." + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "polígono wakichata phuqachaña tukuyma" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "Janiwa aliqa polígono wakichatakïkiti" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "Machaqa polígono wakichata phuqachaña amtma." + +#: taextras.py:235 +msgid "triangle" +msgstr "kimsa k'uchu" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "kayu" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "qillqata samipa wakichaña" +# "altura" +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "sayt'a" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "tortuga wakichatana rixitapana qillqata samipa wakichma" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "Amtäwiru kimsa k'uchuni wakichatampi yapxatma." -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "qillqata tañapa wakichma" +#: taextras.py:240 +msgid "circle" +msgstr "muyu" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "tortuga wakichatana rixitapana qillqata tañapa wakichma" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "Amtäwiru maya muyu wakichatampi yapxatma." -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Jakhunaka chanichiri limt'aña" +#: taextras.py:242 +msgid "rectangle" +msgstr "wiskhalla" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "jakhuxataña" +# "anchura" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "lankhu" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "alfa chimpuni jakhunaka paya jakhu siqi jakhuxatma" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "Amtäwiru maya wiskhalla wakichatampi yapxatma." -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "jakhuqa" +#: taextras.py:246 +msgid "reset" +msgstr "machaqachaña" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "aynacha siqinkiri jakhunaka alaya siqinkiri jakhunakata jakhuqma" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "Amtäwi machaqachma: wakichata sutinaka siqi pichsma." -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "jakhunuqaña" +#: taextras.py:248 +msgid "motor" +msgstr "motor wakichata" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "paya siqinkiri jakhunaka jakhunuqaña" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "torque wakichata" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "jakhjaña" +#: taextras.py:251 +msgid "speed" +msgstr "k'ata sarayäwi" -#: TurtleArt/tabasics.py:604 +#: taextras.py:252 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." msgstr "" -"alaya siqinkiri jakhunaka jakhjama (jakhjiri) aynacha siqinkiri jakhunakaru " -"(jakhjata)" +"Torque wakichata ukata motor wakichata k'ata saräwimpixa 0 chimputa (jiwata) " +"chiqapa chimpunakkamawa sari; motor wakichataxa jichha wakichata taypiruwa " +"uchasi." -# "identidad" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "kankaña" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "tachuela wakichata" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "siqinaka jach'anchaña kankañani chaninchiri" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "Wakichata jani jalaqañapataki achxaruyma." -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "uñanaqa" +#: taextras.py:256 +msgid "joint" +msgstr "lip'ita" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "uñanaqa wakichata chaninchiri (jilt'a)" +# "x" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x wakichata" -# "√" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√ chimpu" +# "y" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y wakichata" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "raíz cuadrada wakichata" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Paya wakichata lip'iyma (jichha wakichatampi uka w, y chimpuni wakichatampi." -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "raíz cuadrada wakichata chanichma" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "física luräwjama imaña" -# "aleatorio" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "maski kawkïrsa" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Amtäwi sapüru luräwiru imma kamisa Física luräwjama." -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "juk'ata sipana" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "muyu" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "jilata sipana" +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "Amtäwiru maya muyuri wakichatampi yapxatma." -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "" -"maski kawkïri maya jakhu juk'ata sipansa (alaya) ukata jilata sipansa " -"kutiyma" +# "identidad" +#: taextras.py:266 +msgid "density" +msgstr "waljani" -# "número" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "jakhu" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" +"Wakichatanaka waljanitapa apsma (waljanitapa maski kawkipiri chiqapa " +"jakhuspawa)." -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "jakhuñanakana chaninchirinakapana jakhu siqinaka wakichatana apnaqata" +#: taextras.py:269 +msgid "friction" +msgstr "purapayasïwi" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "ukata sipana jila" - -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "ukata sipana jila tantiyu chaninchiri" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Wakichatanaka purapayasïwipana yatiyäwinakapa wakichma (maya chanixa 0 " +"chimpuni ukata 1 chimpuni, ukana 0 jani purapayasini ukata 1 chimpuraki wali " +"purapayasini)." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "kutintayäwi" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Wakichatanaka kutintayäwipa tuqita yatiyäwinaka wakichma (maya chanixa 0 " +"chimpuni ukata 1 chimpuni, ukana 0 jani kutintayäwini ukata 1 chimpuraki " +"wali kutintayäwini)." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "q'apa" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Wali q'apa = 1, wakichataxa unxtaspawa; wali q'apa = 0 wakichataxa janiwa " +"unxtaspati." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "WeDo wakichata tamanaka limt'aña" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "ukata sipana pisi" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "ukata sipana pisi tantiyu chaninchiri" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -# "equivalente" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "jukhapura" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"kicht'ayaña katjiri mistuñapa: (-1 == janiwa kicht'atati, 0 == nayräxaru " +"kicht'atawa, 3 == qhipäxaru kicht'atawa, 1 == ch'iqäxaru kicht'atawa, 2 == " +"kupïxaru kicht'atawa)" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "katjiri mistuñana jak'ankatapa" + +#: taextras.py:294 +msgid "Motor A" +msgstr "Motor A wakichata" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "Motor A wakichatana jichha chanipa kutsuyi" + +#: taextras.py:296 +msgid "Motor B" +msgstr "Motor B wakichata" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "Motor B wakichatana jichha chanipa kutsuyi" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "Motor A wakichatana chanipa machaqachma" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "Motor B wakichatana chanipa machaqachma" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "jukhapura tantiyu chaninchiri" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -# "no" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "janiwa" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "janiwa tantiyiri chaninchiri" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Motor wakichatanakana LEGO NXT tamanaka limt'aña" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Katjirinaka wakichata LEGO NXT tamanaka limt'aña" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "limt'aña" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "jaya" -# "y" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "ukata" +# "color" +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "sami" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "Y wakichata tantiyiri chaninchiri" +# "luz" +#: taextras.py:318 +msgid "light" +msgstr "lliphi" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "o wakichata" +# "sonido" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "sijiqi" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "O tantiyu chaninchiri" +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "uqiru samiri" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Saphanchiri chaninchirinaka limt'aña" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +#, fuzzy +msgid "Please check the connection with the brick" +msgstr "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"Mira suma brick wakichatampi mayachäwi uñanuqma." -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "suyt'aña" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "maya juk'a pacha t'aqa t'ijtäwinaka wakichata sarayaña sayt'ayma" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "wiñayataki" +#: taextras.py:325 +#, fuzzy +msgid "The value of power must be between -127 to 127" +msgstr "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"Jakhunaka jaqtäwina chanipaxa niya -127 ukata 127 jakhunaka taypinkañapawa." -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "wiñayataki kutxataña" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "kutxataña" +#: taextras.py:327 +#, fuzzy +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"Maya pantjasitawa utji: taqi mayachatanaka uñakipma ukata mayampi mayachaña " +"yant'ma." + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "maya qhawqha kuti kutxatañataki jakhu kutxati" +#: taextras.py:329 +msgid "NXT not found" +msgstr "NXT wakichata chhaqata" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "jïsa" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "ukhamaxa" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "NXT wakichata samarayaña" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "jïsa ukhamaxa" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "Brick NXT wakichata mayachatnama thaqtma." -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: taextras.py:333 +msgid "NXT" msgstr "" -"jïsa ukhama chaninchiri ukasti jakhunaka limt'aña tantiyu chaninchirinaka " -"apnaqi" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "jani ukaxa" - -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "jïsa ukhamaxa jani ukaxa" - -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:334 +msgid "set current NXT device" msgstr "" -"jïsa ukhama chaninchiri ukasti jakhunaka limt'aña tantiyu chaninchirinaka " -"apnaqi" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "pampa wakichata" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "ku´pïxaru siqita jithjtayma" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "wira wakichata" +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "aynachäxaru siqita jithjtayma" +#: taextras.py:338 +msgid "play tone" +msgstr "ist'aña wakichata qhantayaña" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "luräwi sayt'ayaña" +#: taextras.py:339 +msgid "frequency" +msgstr "wakichatanaka thaqaña" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "jichha luräwi sayt'ayi" +# "tiempo" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "pacha" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Kunaymana mayjt'ayirinaka tama limt'aña" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "Maya k'ata wakichäwinaka taypinkiri maya ist'aña qhantayma." -# "empezar" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "qalltaña" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "luräwi wakt'ayma kunaymana wakichäwinaka sarayirinaka limt'añanakaru" +#: taextras.py:344 +msgid "port" +msgstr "puerto wakichata" -# "texto" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "qillqata" +#: taextras.py:345 +msgid "power" +msgstr "ch'ama" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "wiskhalla wakichata chanipa" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "muyüwinaka" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "luräwi" +#: taextras.py:348 +msgid "turn a motor" +msgstr "motor wakichata muytayma" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "qhanstayaña luräwi siqita patxa" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "qhanstaya luräwi siqita jawsayaña" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "1 kajuna wakichataru imaña" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "PUERTO B y PUERTO C motor wakichatanaka mayachäwinaka katjaña" + +#: taextras.py:352 +msgid "PORT A" +msgstr "PUERTO A wakichata" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "brick wakichatana PUERTO A wakichatapa" + +#: taextras.py:354 +msgid "PORT B" +msgstr "PUERTO B wakichata" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "brick wakichatana PUERTO B wakichatapa" + +#: taextras.py:356 +msgid "PORT C" +msgstr "PUERTO C wakichata" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "brick wakichatana PUERTO C wakichatapa" + +#: taextras.py:358 +msgid "start motor" +msgstr "motor wakichata qhantayaña" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "Wiñayataki wakichata motor muyuyaña." + +#: taextras.py:360 +msgid "brake motor" +msgstr "motor wakichata wayt'aña" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "Maya uñaqata motor wakichata wayt'aña." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "motor wakichata mayampi qhantayaña" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "Motor wakichata jakhuripa mayampi qhantayma." + +#: taextras.py:365 +msgid "motor position" +msgstr "motor wakichatana sayäwipa" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "Motor wakichatana sayäwipa apsma." + +#: taextras.py:367 +msgid "PORT 1" +msgstr "PUERTO 1 wakichata" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "brick wakichatana PUERTO 1 wakichatapa" + +#: taextras.py:369 +msgid "read" +msgstr "ullaña" + +#: taextras.py:370 +msgid "sensor" +msgstr "katjiri" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "Katjirina mistuñapa wakichata ullma." + +#: taextras.py:372 +msgid "PORT 2" +msgstr "PUERTO 2 wakichata" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "brick wakichatana PUERTO 2 wakichatapa" + +#: taextras.py:374 +msgid "light sensor" +msgstr "lliphirini katjiri" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "1 mayjt'ayiri wakichataru jakhuna chanipa imma" +#: taextras.py:376 +msgid "PORT 3" +msgstr "PUERTO 3 wakichata" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "brick wakichatana PUERTO 3 wakichatapa" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "limt'añataki katjiri" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "jayataki katjiri" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "PUERTO 4 wakichata" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "brick wakichatana PUERTO 4 wakichatapa" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "ist'añani katjiri" + +#: taextras.py:383 +msgid "color sensor" +msgstr "samini katjiri" + +#. #-#-#-#-# ayc.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) +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.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:386 +msgid "set light" +msgstr "lliphiri qhantayaña" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "Samini katjiri lliphiripa qhantayma." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "batería ch'amanchiripa" + +#: taextras.py:390 +#, fuzzy +msgid "Get battery level of the brick" +msgstr "" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-#\n" +"Brick wakichatana batería ch'amanchiripa apsma." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "JILA" + +#: taextras.py:396 +msgid "LOW" +msgstr "PISI" + +#: taextras.py:397 +msgid "INPUT" +msgstr "KATUQIRI" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "MISTUYIRI" + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "PWM wakichata" + +#: taextras.py:401 +msgid "SERVO" +msgstr "SERVO wakichata" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "PANTJATA: Arduino uñxatma ukata puerto wakichata jakhupa." + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "PANTJATA: chanixa 0 ukata 255 jakhu taypinkañapawa." + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "PANTJATA: JILA jani ukaxa PISI chaniñapawa." + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" +"PANTJATA: uñanaqapaxa KATUQIRI, MISTUYIRI, PWM jani ukaxa SERVO ukhamañapawa." -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "2 kajuna wakichataru imaña" +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "2 mayjt'ayiri wakichataru jakhuna chanipa imma" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "1 kajuna wakichata" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "1 mayjt'ayiri (jakhu chanipa)" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "2 kajuna wakichata" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "2 mayjt'ayiri (jakhu chanipa)" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "wakichataru imaña" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "kajuna wakichata" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.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:416 +msgid "pin mode" +msgstr "pin wakichata uñanaqapa" + +#: taextras.py:418 +msgid "mode" +msgstr "uñanaqapa" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "pin wakichatana lurañapa chhijllma (KATUQIRI, MISTUYIRI, PWM, SERVO)." + +#: taextras.py:420 +msgid "analog write" +msgstr "amparampi qillqaña" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "value" msgstr "chani" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "wakichata kajunaja" - -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "qhanstayata mayjt'ayiriru jakhu chani imma" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "Maya puerto wakichataru amparampi luraña qillqma." -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "qhanstayata mayjt'ayiri (jakhu chani)" +#: taextras.py:423 +msgid "analog read" +msgstr "amparampi lurata ullaña" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "1 luräwi" +#: taextras.py:424 +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 "" +"Maya puerto amparampi lurata wakichata chanipata ullma. Chanipaxa uka 0 " +"ukata 1023 jakhu taypinkaspawa. Ch'amapa yatiñatakixa Vref wakichata katma." -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "1 luräwina wakichata siqita nayrïri" +#: taextras.py:426 +msgid "digital write" +msgstr "limt'asa qillqaña" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "2 luräwi" - -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "2 luräwina wakichata siqita nayrïri" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "Maya puerto wakichataru limt'asa qillqata chanipa qillqma." -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "1 luräwina wakichata siqi jawsuña" +#: taextras.py:428 +msgid "digital read" +msgstr "limt'asa qillqata ullaña" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "2 luräwina wakichata siqi jawsuña" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "Maya puerto limt'asa wakichatata chanipa ullma." -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "jani wakisiri" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "Puerto limt'asa wakichata JILA chanipa machaqachma." -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "jani wakisiri imata ch'ussuña" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "limt'asa mantañjama Arduino puerto wakichatapa wakichma." -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "jani wakisiri wakichata imata yänakapa jani aliqata pichssuña" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "Maya SERVO apnaqañataki Arduino puerto wakichata wakichma." -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "taqi jani wakisiri wakichata imatanaka wasitata jaktayaña" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "Puerto limt'asa wakichata PISI chanipa machaqachma." -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "qawayata jani wakisiri wakichata imata siqinaka wasitata jaktayma" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "limt'asa mistuñjama Arduino puerto wakichatapa wakichma." -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "qawata ch'ussuña" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" +"PWM wakichatataki Arduino puerto wakichma (putuqiri lankhutjama askichma)." + +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "WeDo wakichata tamanaka limt'aña" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "jani wakisiri wakichata imañaru qawayata siqinakaru uchantma" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Chhijllata siqitanakampi khuyapayaña" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -# "Título:" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "P'iqinchiri Suti" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -# "Parar tortuga" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Tortuga wakichata sayt'ayaña" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -# "Mostrar bloques" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Siqichata wakichatana uñachayaña" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -# "Ocultar bloques" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Siqichata wakichatanaka imantaña" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "wakichataru qillqaña janiwa wakt'ayiti" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Kunjama luraña jani yatkthi" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "janiwa sumarapiti" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "qallta wakichatjama" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "arkiri limt'aña uñachayma" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "siqichatanaka limt'aña uñanaqapa jaqukipma" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -# "Cargar..." -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Ch'amanchaña..." +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -# "Guardar..." -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Imaña..." +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "wakichata jist'arañataki limt'aña" +#: taextras.py:465 +msgid "capture" +msgstr "" -# "presentación" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "uñanaqa" +#: taextras.py:466 +msgid "input" +msgstr "" -# "siguiente" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "arkiri" +#: taextras.py:467 +msgid "samples" +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "jaqsuña" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tawindow.py:1256 +#. TRANS: MS is microseconds +#: taextras.py:470 msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +"capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Siqichata wakichatanakampi khuyapayañataki chhijllma" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -# "TortugArte" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "TortugArte wakichata" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -# "imagen" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "rixita" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -# "Guardar como Logo" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Wakichata Chimpjama imaña" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -# "Guardar como imagen" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Rixita wakichatjma imaña" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -# "instantánea" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "jukhawraspacha" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -# "Guardar instantánea" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Jukhawraspacha imaña" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Khaya aka yanapt'a sayt'ayaña" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Khaya aka yanapt'a sartayaña" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -# "Mostrar paleta" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "limt'aña uñachayaña" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -# "Ocultar paleta" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "limt'aña imt'aña" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -# "Escalar coordenadas hacia abajo" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Coordenadas wakichata aynacharu jithirayaña" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -# "Escalar coordenadas hacia arriba" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Coordenadas wakichata alayaru jithsuyaña" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -# "Editar" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Chiqachaña" +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" -# "Ver" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Unjaña" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -# "Proyecto" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Luräwinaka" +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Imaña/Ch'amanchaña" +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" -# "Copiar" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Apaqaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "uñjaña wakichata jani ukaxa ist'aña qhanayaña mayampi qalltayaña" -# "Pegar" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Lip'katayaña" +# "Título:" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "P'iqinchiri Suti" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Jani wakisiri imata siqinaka wasitata sartayma" +#: 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 "Cámara wakichatana RGB samipa tantiyu wakichata siqiru jithiqi" -# "Pantalla completa" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Maypacha wakichata uñjaña" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "q'illu" -# "Coordenadas cartesianas" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Coordenadas cartesianas wakichatanaka" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "coordenadas polares wakichatanaka uñachayma" -# "Coordenadas polares" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Coordenadas polares wakichatanaka" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "FILO siqi wakichata ch'ussma (nayraqata mantañana, qhipraki mistuñana)" -# "Coordenadas centímetros" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Coordenadas centímetros wakichatanaka" +#: 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 "cámara wakichatana rixi chimpupa" -# "Agrandar bloques" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Siqichatanaka jach'aptayaña" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "siqiru wakisiri x, y z sarayirinakaru k'ata sarayirinaka uchi" -# "Empequeñecer bloques" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Siqichatanaka jisk'aptayaña" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"jïsa ukhama chaninchiri ukasti jakhunaka limt'aña tantiyu chaninchirinaka " +"apnaqi" -# "Cargar ejemplos" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Yant'añanaka wakichata uñachayaña" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "ku´pïxaru siqita jithjtayma" -# "Limpiar" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Pichsuña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar wakichata sapüru luräwipa wakisirinakapa apnaqaña" -# "Ejecutar" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Sarayaña" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "2 kajuna wakichata" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "1 kajuna wakichata" # "Dar un paso" #: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 msgid "Step" msgstr "Maya chillqi sartaña" -# "Ayuda" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Yanapt'a" - -# "Parar" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Sayt'ayaña" - -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Luräwi wakichata sartayaña" - -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Plugin wakichata sartayaña" - -# "Cargar bloque Python" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Python siqi wakichata sartayaña" - -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "limiña" - -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Sayt'ayata siqinaka wakichatampi khuyapayaña" - -# "p" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p wakichata" - -# "e" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e wakichata" - -# "r" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r wakichata" - -# "w" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w wakichata" - -# "s" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s wakichata" - -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Plugin wakichataxa janiwa qhantayañjamäkiti." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Plugin wakichata apnaqañataki TortugArte wakichata mayampi qhantayma." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Plugin %s wakichatxa qhantayañataki wakichatäxiwa." - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "¿Mayampi qhantayañataki wakichaña muntati %s?" - -# "Mi TortugArte sesión" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "TortugArte wakichata luräwinakaja" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "paya siqinkiri jakhunaka jakhunuqaña" -# "Permitir la colaboración" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Yanapt'asiña wakiyaña" +# "Mostar/ocultar bloques" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Wakichata tamanaka uñachayaña/imantaña" -# "Actividades" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Luräwinaka" +# "Ocultar paleta" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "limt'aña imt'aña" # "Amigos" #: gnome_plugins/collaboration_plugin.py:125 msgid "Buddies" msgstr "Masinaka" -# "Compartir" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Khuyapayaña" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Wakichaña" +# "Mi TortugArte sesión" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "TortugArte wakichata luräwinakaja" -# "Vecindario" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Wakisirinaka" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar wakichata sapüru luräwipa wakisirinakapa uñjaña apnaqaña" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "K'ari suti" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cian wakichata" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Mantañataki wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "coorx wakichata uñjaña kupïxankiri" -# "Servidor" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Katuqiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Phuqachaña wakichatanaka limt'aña" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Tatuqañataki wakichata" +# "Cargar ejemplos" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Yant'añanaka wakichata uñachayaña" -# "Contraseña:" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Jist'araña" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "jani wakisiri wakichata imañaru qawayata siqinakaru uchantma" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Qillqantata wakichata" +# "lista" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "sutinaka siqi" -# "Colores" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Sumi" +# "Directorio de configuración no modificable: %s" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Jani unuqiyaña wakichäwi qillqata: %s" -#: 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 "Ch'amanchaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "wakisirinaka sarayaskakiña" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +# "rumbo" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "saraña chimpu" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Web wakichataru apayaña" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Sayt'ayata siqinaka wakichatampi khuyapayaña" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -"Mantañataki wakichatama utjañapawa uka http://turtleartsite.sugarlabs.org " -"mantañataki ukhamata luräwi apaqañamataki." - -# "Usuario:" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Apnaqirini sutipa:" - -# "Contraseña:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Jist'araña:" - -# "Título:" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Suti:" - -# "Descripción:" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Yatiyaña:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Web wakichataru apayaña" - -# "Cancelar" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Tukuyaña" - -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Jiwaspachpa kankañchasiñana pantjata" - -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "¡apaqkasina pantjata!" - -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Katjiri siqinaka limt'aña" - -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "acelerómetro k'ata sarayiri wakichata" +"Azúcar wakichatana sapüru luräwiparu SVG wakichata imaña tortuga wakichatana " +"rixita chimpunakapa imma" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "siqiru wakisiri x, y z sarayirinakaru k'ata sarayirinaka uchi" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "qillqata rixiña jani ukaxa sapüru luräwina wakisirinaka uñachayaña" -# "sonido" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "sijiqi" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID wakichata" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "micrófono arsusiña uchantaña qhana chimpu" +# "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "uñtaña" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "ist'asiñapa jithxatayaña" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "larama" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "micrófono arsusiña mantañapa ist'aña millk'uña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "coordenadas cartesianas wakichatanaka uñachayma" -# "tono" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "wakichatanaka thaqaña" +# "Sin acción alternativa:" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Mayjata lurañaxa janiwa utjiti:" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "micrófono uchañana wakichatanaka thaqaña wali suma ist'asiri wakichata" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "aynachäxaru siqita jithjtayma" -#: 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 "ch'amanchiritaki wakichata" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "uñanaqa wakichata chaninchiri (jilt'a)" -#: 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 "" -"micrófono uchañaru ch'amanchiri wakichatana uchata chanipa (tupañataki " -"wakichata: 700 a 14000 ohms)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "y aynacha" -#: 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 "ch'amani qhantayiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "SVG wakichata imañ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" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "" -"micrófono uchañaru uchata DC ch'amani nakhtayiri chanipa (tupaña: 0.40 a " -"1.90 V)" - -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Taypinkiri siqitanaka limt'aña" - -#: 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 "lliphi" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "cámara wakichatana qhana katuqatapa chimpu" - -#: 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 "Cámara wakichatana RGB samipa tantiyu wakichata siqiru jithiqi" +"módulo tamyblock.py wakichatana chimpupa qhantayma ukasti Sapüru " +"luräwinakana jikxatasiraki" -#: 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 "cámara wakichatana rixi chimpupa" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "samichaña phuyu jithiqayaña" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "qhana katjiri wakichatana qhana katuqata chani chimpu" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "suyt'aña" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID wakichata" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "kajuna wakichata" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "radiofrecuencia (RFID) wakichatanaka thaqaña chanipa ullaña" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "¡apaqkasina pantjata!" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "ukchiñkama" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "jaqsuña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"akïri luräwinakawa siqiru wakisiritjama qallti uka qalltañataki wakichata " -"chimpuna phuqasiñapkama" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "qhanstaya luräwi siqita jawsayaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "akakama" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "luräwi" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 msgid "do-until-True operator that uses boolean operators from Numbers palette" @@ -1343,383 +2065,338 @@ msgstr "" "akïri siqinaka wakichatawa wakisirirjama sarayasiraki amtata wakichata " "phuaqasiñapkama" -# "encima" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "p'atja" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "lip'isiri siqi wakichata patxa" +# "el uso es" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "luraña akhamawa" -# "diario" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "sapüru luräwi" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "2 mayjt'ayiri (jakhu chanipa)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar wakichata sapüru luräwipa wakisirinakapa apnaqaña" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "jakhjaña" -# "audio" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ist'awi" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "rixita wakichatana sutipa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar wakichata sapüru luräwipa wakisirinakapa ist'aña apnaqaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "ukchiñkama" -# "video" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "uñtaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "rixi wakichaña pañu lankhu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar wakichata sapüru luräwipa wakisirinakapa uñjaña apnaqaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "ch'usa siqi?" -# "Descripción:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "yatiyaña" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "qhanstayata mayjt'ayiri (jakhu chani)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar wakichata sapüru luräwipa yatiyaña wakichata" +# "siguiente" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "arkiri" -# "mostrar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "uñachayaña" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "jïsa ukhamaxa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "qillqata rixiña jani ukaxa sapüru luräwina wakisirinaka uñachayaña" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "taña chanichaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "chiqaru uñtayatanaka uñachayaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "" +"uñachayañataki wakichata: sapüru luräwina wakichata thaqaña chhijllaña (jani " +"yatiyasa)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "jithirayana chimpuña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "akakama" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "taypinkiri wakichatanaka jithiriyaña chimpuña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "wakisirinaka sayt'ayaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "rixita wakichata imaña" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Khaya aka yanapt'a sartayaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "rixita wakichatana sutipa" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "jani wakisiri wakichata imata yänakapa jani aliqata pichssuña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "Azúcar wakichatana sapüru luräwiparu rixita wakichata imma" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "U uñanaqaru muyta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG wakichata imaña" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "1 luräwina wakichata siqita nayrïri" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"Azúcar wakichatana sapüru luräwiparu SVG wakichata imaña tortuga wakichatana " -"rixita chimpunakapa imma" - -# "escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "jach'a" +"maya tama wakichäwi: maya mayjt'ayirini sinti ch'ama ecuaciones matemáticas " +"wakichatanaka apxatañataki apnaqata, akhama, seno(x)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "jichha wakichata jithirata chanipa ch'amanchi" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Saphanchiri chaninchirinaka limt'aña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "wakisirinaka suyaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "lip'isiri siqi wakichata patxa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "ist'aña wakichata jani ukaxa uñjaña tukuyañapkama suyaña" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"jïsa ukhama chaninchiri ukasti jakhunaka limt'aña tantiyu chaninchirinaka " +"apnaqi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "wakisirinaka sayt'ayaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "thaqnaqirina y coordenada wakichata kutsuni" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "uñjaña wakichata jani ukaxa ist'aña sayt'ayma" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "jichha samichaña phuyuna samichañapaniwa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "wakisirinaka sayt'ayaña" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinusoide wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "uñjaña wakichata jani ukaxa ist'aña sayt'ayma" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Jiwaspachpa kankañchasiñana pantjata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "wakisirinaka sarayaskakiña" +# "izquierda x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "x ch'iqa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "uñjaña wakichata jani ukaxa ist'aña qhanayaña mayampi qalltayaña" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "sarayaña chimpuña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "arsuña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "tortuga wakichata aynacharu RGB samini wakichata siqiru apayasi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "kamisaraki" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "wakichata tamanaka imantasa rixiña pañu pichsma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "qillqataxa siwa" +# "w" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w wakichata" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinusoide wakichata" +# "r" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "qawayata" +# "s" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "qhanäwi" +# "p" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"sinusoide wakichata wakichäwi taypita qhantayma, saräwi ukata qhanäwi (pacha " -"t'aqa t'ijtäwitjama)" +# "e" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "limt'aña limxatata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python wakichatana chr chaninchiri" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "achaku limiña limxatatipana 1 wakichatawa mistuni" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "pampa wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -msgid "returns True if mouse button is pressed" -msgstr "achaku limiña limxatatipana Chiqapa wakichatawa mistsuni" +# "Coordenadas centímetros" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Coordenadas centímetros wakichatanaka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "x chimpuni thaqnaqiri lliphi qhana" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "wiskhalla wakichata chanipa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "thaqnaqirina x coordenada wakichata kutsuyi" +# "Descripción:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "yatiyaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "y chimpuni thaqnaqiri lliphi qhana" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Kunjama luraña jani yatkthi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "thaqnaqirina y coordenada wakichata kutsuni" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "qillqata tañapa wakichma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "qillqañana thaqaña" +# "Usuario:" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Apnaqirini sutipa:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" msgstr "" -"qillqaña wakichata katuyañataki thaqäwi (ukasti qillqaña wakichata siqina " -"imataskiwa)" +"k'uchunakani wakichata samichasa phuqachaña qalltaña (ukasti maya siqi " +"wakichata samichasa phuqachaña tukuyañana apnaqasi)" -# "teclado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "qillqaña wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "" +"uñachayañataki wakichata: sapüru luräwina wakichata pusi thaqaña chhijllaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "ASCII wakichatjama qillqaña wakichata thaqata siqi katjatanaka katu" +# "Ver" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Unjaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "pixel wakichata ullaña" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "tortuga wakichatana rixitapa rixi uqi saminiñapa wakichma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "tortuga wakichata aynacharu RGB samini wakichata siqiru apayasi" +# "Contraseña:" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Jist'araña:" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 msgid "turtle sees" msgstr "tortuga wakichataxa uñjiwa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "tortuga wakichatana \"uñjatapa\" sami uñachayma" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "luräwi sayt'ayaña" -# "tiempo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "pacha" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "ch'uxña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "pacha saräwi (pacha t'aqa t'ijtäwinaka) wakichata qalltatpacha" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "ist'añataki wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Phuqachaña wakichatanaka limt'aña" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "manqhäxa wakichatanakampi phuqachma (samimpi, ch'iwumpi)" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "nukht'aña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "rixita wakichata imaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "" -"FILO siqi wakichata patxaru chanipa siqichma (nayraqata mantañana, qhipraki " -"mistuñana)" +# "tono" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "wakichatanaka thaqaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "siqi wakichata uñachayma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "achaku limiña limxatatipana 1 wakichatawa mistuni" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "" -"FILO siqi wakichataru chaninaka uñachayma (nayraqata mantañana, qhipraki " -"mistuñana)" +# "Escalar coordenadas hacia arriba" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Coordenadas wakichata alayaru jithsuyaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "siqi wakichata ch'ussuña" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "samichaña phuyu jithsuyaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "FILO siqi wakichata ch'ussma (nayraqata mantañana, qhipraki mistuñana)" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "laranja q'illu" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "apsuña" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "maya juk'a pacha t'aqa t'ijtäwinaka wakichata sarayaña sayt'ayma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" -"FILO siqi wakichatana chanipa apsma (nayraqata mantañana, qhipraki " +"FILO siqi wakichata patxaru chanipa siqichma (nayraqata mantañana, qhipraki " "mistuñana)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "ch'usa siqi?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "siqi ch'usipana Chiqapa wakichata kutsuyi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "amuyt'aña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "wakisiri chimpumaru maya amuyt'a uchantma" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "wakichata laphiru apsuña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "wakichata uñjaña aynachankiri jikxatasiri tamapa chani laphiru apsma" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "qawata ch'ussuña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python wakichatana chr chaninchiri" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "ukhamaxa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python wakichatana int chaninchiri" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Qillqantata wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python wakichata" +# "no" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "janiwa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"maya tama wakichäwi: maya mayjt'ayirini sinti ch'ama ecuaciones matemáticas " -"wakichatanaka apxatañataki apnaqata, akhama, seno(x)" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "jïsa ukhamaxa jani ukaxa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"maya tama wakichäwi: walja mayjt'ayirinakani sinti ch'ama ecuaciones " -"matemáticas wakichatanaka apxatañataki apnaqata, akhama, sqrt(x*x+y*y)" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "jichha luräwi sayt'ayi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" msgstr "" -"maya tama wakichäwi: walja mayjt'ayirinakani sinti ch'ama ecuaciones " -"matemáticas wakichatanaka apxatañataki apnaqata, akhama, seno(x+y+z)" +"tortuga wakichata kupi tuqiru sarayma (ángulo de grados) wakichatarjama" -#: 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:653 -msgid "Python block" -msgstr "Python wakichata tama" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" msgstr "" -"módulo tamyblock.py wakichatana chimpupa qhantayma ukasti Sapüru " -"luräwinakana jikxatasiraki" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesiana wakichata" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "coordenadas cartesianas wakichatanaka uñachayma" +"jichha uqiru samiri samichañapaniwa (maya tama jakhunaka lanti apanaqasispa)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polar wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "coorx wakichata uñjaña ch'iqäxankiri" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "coordenadas polares wakichatanaka uñachayma" +# "Restaurar el tamaño del bloque" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Wakichata tamanaka mayampi qhantayaña" # "tortuga" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 @@ -1727,1197 +2404,1431 @@ msgstr "coordenadas polares wakichatanaka uñachayma" msgid "turtle" msgstr "tortuga wakichata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "tortuga wakichata apnaqaña chhijllma" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "tortuga uywana lip'ichipa" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "tortuga uywaru qallapa lip'ichimpi isintayaña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "lip'isiri siqi wakichata patxa" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "ch'amanchaña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -msgid "loads a block" -msgstr "maya tama wakichata ch'amanchaña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "xy chimpu wakichaña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "limiña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "limiña chhijllaña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Uñachayañanaka wakichatanaka limiña" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "arkiri limt'aña uñachayma" # "Ocultar bloques" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 msgid "hide blocks" msgstr "wakichata tamanaka imantaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "wakichata tamanaka imantasa rixiña pañu pichsma" - -# "Mostrar bloques" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "wakichata tamanaka uñachayaña" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "wakichata tamanaka imantata mayampi qhantayma" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "cámara wakichatana qhana katuqatapa chimpu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "Azúcar sutini wakichata apnaqañanaka imantma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python wakichatana int chaninchiri" -# "lista" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "sutinaka siqi" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "ukata sipana pisi tantiyu chaninchiri" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "chimpunakani suti siqinaka uñachayaña" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "qawayata jani wakisiri wakichata imata siqinaka wasitata jaktayma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "uñachayañataki wakichata: chimpunakani suti siqi" +# "Guardar" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Imaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "" -"uñachayañataki wakichata: sapüru luräwina wakichata thaqaña chhijllaña (jani " -"yatiyasa)" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "1 kajuna wakichataru imaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "" -"uñachayañataki wakichata: sapüru luräwina wakichata thaqaña chhijllaña " -"(yatiyäwini)" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "2 kajuna wakichataru imaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "" -"uñachayañataki wakichata: sapüru luräwina wakichata pusi thaqaña chhijllaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "Azúcar sutini wakichata apnaqañanaka imantma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"uñachayañataki wakichata: sapüru luräwina wakichata paya thaqaña chhijllaña" +"jichha tortuga x wakichata taypi saririniwa (ukasti maya tama jakhunaka " +"lanti apnaqasirakispa)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "coorx wakichata uñjaña ch'iqäxankiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "wakichata laphiru apsuña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "manqha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "thaqnaqirina x coordenada wakichata kutsuyi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "coory wakichata uñjaña aynacha lakäxankiri" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "chupika" -# "anchura" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "lankhu" +# "Guardar como Logo" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Wakichata Chimpjama imaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "rixi wakichaña pañu lankhu" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "tortuga wakichatampi rixita rixi sami wakichma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "coorx wakichata uñjaña kupïxankiri" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "qillqata samipa wakichaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "coory wakichata uñjaña alaya paräxankiri" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "ist'asiñapa jithxatayaña" -# "altura" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "sayt'a" +# "Permitir la colaboración" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Yanapt'asiña wakiyaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "rixi wakichaña pañu sayt'upa" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Katjiri siqinaka limt'aña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "x p'iqinchiri suti" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Plugin wakichata sartayaña" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "y p'iqinchiri suti" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +msgid "returns True if mouse button is pressed" +msgstr "achaku limiña limxatatipana Chiqapa wakichatawa mistsuni" -# "izquierda x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "x ch'iqa" +# "número" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "jakhu" -# "arriba y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "y alaya" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "qillqañana thaqaña" -# "derecha x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "x kupi" +# "encima" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "p'atja" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "y aynacha" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Web wakichataru apayaña" -# "presentación" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "1x1 uñachayäwi" +# "Coordenadas cartesianas" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Coordenadas cartesianas wakichatanaka" -# "presentación" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "2x1 uñachayäwi" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "K'ari suti" -# "presentación" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "1x2 uñachayäwi" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "jithirayana chimpuña" -# "presentación" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "2x2 uñachayäwi" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Chhijllata siqitanakampi khuyapayaña" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "janq'u" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "luräwi wakt'ayma kunaymana wakichäwinaka sarayirinaka limt'añanakaru" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "pacha saräwi (pacha t'aqa t'ijtäwinaka) wakichata qalltatpacha" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "qawayata" -#: pysamples/brain.py:100 -msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "" +# "Cancelar" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Tukuyaña" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "wakichata siqiru wakisiri rgb chanipa nukhuña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "rixi wakichaña pañu sayt'upa" -# "parar" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "sayt'ayaña" +# "presentación" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "2x1 uñachayäwi" -# "reproducir" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "qhantayaña" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "jakhuqa" -# "guardar" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "imaña" +# "y" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "ukata" -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "jaqha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "lip'isiri siqi wakichata patxa" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "U uñanaqaru muyta" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "qallta wakichatjama" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "U uñanaqaru muytaña" +#: 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:653 +msgid "Python block" +msgstr "Python wakichata tama" -# "el uso es" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "luraña akhamawa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "wakisirinaka suyaña" -# "Sin acción alternativa:" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Mayjata lurañaxa janiwa utjiti:" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "acelerómetro k'ata sarayiri wakichata" -# "Fichero no encontrado" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Wakichatanaka imaña chhaqata" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"jichha samichaña phuyu wakichata tañapaniwa (maya tama jakhunaka lanti " +"apnaqasispa)" -# "Directorio de configuración no modificable: %s" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Jani unuqiyaña wakichäwi qillqata: %s" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "sami wakichaña" -# "Nuevo" -#: turtleblocks.py:354 -msgid "New" -msgstr "Machaqa" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "juk'ata sipana" -# "Abrir" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Uñantaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +msgid "loads a block" +msgstr "maya tama wakichata ch'amanchaña" -# "Guardar" -#: turtleblocks.py:356 -msgid "Save" -msgstr "Imaña" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Samichaña phuyu apnaqaña limt'aña" -# "Guardar como" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Sutini imaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "" +"FILO siqi wakichataru chaninaka uñachayma (nayraqata mantañana, qhipraki " +"mistuñana)" -# "Salir" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Mistuña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"akïri luräwinakawa siqiru wakisiritjama qallti uka qalltañataki wakichata " +"chimpuna phuqasiñapkama" # "Archivo" #: turtleblocks.py:363 msgid "File" msgstr "Q'ipi" -# "Escalar coordenadas" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Coordenadas wakichatanaka jithirayaña" - -# "Restaurar el tamaño del bloque" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Wakichata tamanaka mayampi qhantayaña" - -# "Mostar/ocultar bloques" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Wakichata tamanaka uñachayaña/imantaña" - -# "Herramientas" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Lurañataki" - -# "Depurar" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Thaqsraña" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "janiwa tantiyiri chaninchiri" -# "Tortuga" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Tortuga wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "coory wakichata uñjaña aynacha lakäxankiri" -#: turtleblocks.py:407 -msgid "About..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" msgstr "" +"uñachayañataki wakichata: sapüru luräwina wakichata thaqaña chhijllaña " +"(yatiyäwini)" -# "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Jani imata wakichatanakawa utji. ¿janirara mistkasina imaña muntacha?" - -# "¿Guardar el proyecto?" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "¿Wakichäwinaka imaña?" - -# "TortugArte Mini" -#~ msgid "Turtle Art Mini" -#~ msgstr "Jisk'a TortugArte wakichata" - -# "TortugArte Confusión" -#~ msgid "Turtle Confusion" -#~ msgstr "Jani qhana TortugArte wakichata" - -# "Selecciona un desafío" -#~ msgid "Select a challenge" -#~ msgstr "Ch'ama wakichäwi thaqaña" - -# "Paleta de Pesos Mexicanos" -#~ msgid "Palette of Mexican pesos" -#~ msgstr "México qullqimpi luraña limt'aña" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Jakhunaka chanichiri limt'aña" -# "Paleta de Pesos Colombianos" -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Colombia qullqimpi luraña limt'aña" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "jakhunuqaña" -# "Paleta de Francos de Ruanda" -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Francos de Ruanda qullqimpi luraña limt'aña" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "wiñayataki" -#~ msgid "Palette of US dollars" -#~ msgstr "Dólares Americanos qullqimpi luraña limt'aña" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Plugin %s wakichatxa qhantayañataki wakichatäxiwa." -#~ msgid "Palette of Australian dollars" -#~ msgstr "Dólares Australianos qullqimpi luraña limt'aña" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "tortuga wakichatana rixitapa rixi samiru uñamt'aya wakichaña" -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Guaraníes Paraguayos qullqimpi luraña limt'aña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "qillqataxa siwa" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Nuevos Soles Peruanos qullqimpi luraña limt'aña" +# "instantánea" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "jukhawraspacha" -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Pesos Uruguayos qullqimpi luraña limt'aña" +# "limpiar" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "mayampi qalltañataki wakichaña" -# "Ajusta la intensidad del LED entre 0 y 255." -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "LED qhana askichaña 0 chimputa 255 chimpukama" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "" +"uñachayañataki wakichata: sapüru luräwina wakichata paya thaqaña chhijllaña" -# "Devuelve el nivel de luz en el ambiente como un número entre 0 y 1023." -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "" -#~ "wakichaña pachana suma qhanawa qhantayasi kamisa 0 ukata 1023 jakhunaka " -#~ "chimpjama" +# "Agrandar bloques" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Siqichatanaka jach'aptayaña" -# "Devuelve 1 cuando el botón está presionado y 0 en otro caso." -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "1 jakhu kutsuyi limt'aña limxatatipana ukata 0 kutsuyi jani ukhamipana" +# "Pantalla completa" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Maypacha wakichata uñjaña" -# "Devuelve el nivel de luz en el ambiente como un número entre 0 y 1023." -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "" -#~ "wakichaña pachana suma qhanawa qhantayasi kamisa 0 ukata 1023 jakhunaka " -#~ "chimpjama" +# "Fichero no encontrado" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Wakichatanaka imaña chhaqata" -# "Devuelve la temperatura en el ambiente como un número entre 0 y 255." -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "" -#~ "wakichaña pachana suma junt'u junt'utatayasi kamisa 0 ukata 255 jakhunaka " -#~ "chimpjama" +# "mostrar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "uñachayaña" -# "Devuelve la distancia del objeto en frente al sensor como un número entre 0 " -# "y 255." -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "uñkatasina thaqata wakichata jak'ankatapa yatiyi kamisa 0 ukata 255 " -#~ "jakhunaka chimpjama" +# "texto" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "qillqata" -# "Devuelve 0 o 1 dependiendo the la inclinación del sensor." -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "0 ukata 1 jakhu chimpu kutsuyi uñtaña katjiri kicht'ayatatjama" +# "aleatorio" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "maski kawkïrsa" -# "Devuelve 1 cuando el sensor detecta un campo magnético, 0 en otro caso." -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "1 jakhu chimpu kutsuyi niyatixa uñtaña katjiri uka campo magnético " -#~ "katjatapatjama, 0 chimpu jani ukhamipana" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "ukata sipana jila tantiyu chaninchiri" -# "Oscila entre 0 y 1 dependiendo de la vibración." -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "0 ukata 1 jakhu taypinkiwa khatatipanjama" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "" +"tortuga wakichata ch'iqa tuqiru jithiyma (ángulo de grados) wakichatarjama" -# "LED" -#~ msgid "LED" -#~ msgstr "LED wakichata" +# "atrás" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "ch'iyära" -#~ msgid "button" -#~ msgstr "limt'aña" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "raíz cuadrada wakichata chanichma" -# "escala de gris" -#~ msgid "grayscale" -#~ msgstr "uqi uñamt'irinakapa" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"jichha tortuga y wakichata taypi saririniwa (ukasti maya tama jakhunaka " +"lanti apnaqasirakispa)" -# "luz ambiente" -#~ msgid "ambient light" -#~ msgstr "qhana pacha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "x chimpuni thaqnaqiri lliphi qhana" -# "temperatura" -#~ msgid "temperature" -#~ msgstr "junt'utatata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "y chimpuni thaqnaqiri lliphi qhana" -# "distancia" -#~ msgid "distance" -#~ msgstr "jaya" +# "parar" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "sayt'ayaña" -# "inclinación" -#~ msgid "tilt" -#~ msgstr "kicht'ata" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "ukata sipana jila" -#~ msgid "magnetic induction" -#~ msgstr "campo magnético wakichata" +# "coorx" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor wakichata" -# "vibración" -#~ msgid "vibration" -#~ msgstr "khatati" +# "Ayuda" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Yanapt'a" -# "Robot Butiá" -#~ msgid "Butia Robot" -#~ msgstr "Robot Butiá wakichata jaqi" +# "¿Guardar el proyecto?" +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "¿Wakichäwinaka imaña?" -#~ msgid "refresh Butia" -#~ msgstr "Butiá wakichataru samarayaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "tortuga wakichata apnaqaña chhijllma" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "Butiá wakichata tamanakana limt'añapa machaqachma" +# "derecha x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "x kupi" -#~ msgid "battery charge Butia" -#~ msgstr "Butiá wakichatana batería wakisiripa ch'amanchma" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "tortuga wakichatana rixitapana qillqata samipa wakichma" -# "Devuelve la temperatura en el ambiente como un número entre 0 y 255." -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "" -#~ "robot wakichata jaqina batería wakisiripa ch'amancharapi kamisa 0 jakhu " -#~ "chimputa 255 chimpukama" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "qhana katjiri wakichatana qhana katuqata chani chimpu" -#~ msgid "speed Butia" -#~ msgstr "Butiá wakichatana k'ata sarañapa" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Plugin wakichataxa janiwa qhantayañjamäkiti." -#~ msgid "forward Butia" -#~ msgstr "Butiá wakichatampi qalltma" +# "teclado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "qillqaña wakichata" -#~ msgid "move the Butia robot forward" -#~ msgstr "robot Butiá wakichata jaqiru nayräxaru sartayma" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "sawana" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "robot Butiá wakichata jaqiru nayräxaru sartayma amtata sarakama" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "muruq'u taypi muyuri" -# "izquierda Butiá" -#~ msgid "left Butia" -#~ msgstr "Butiá wakichata ch'iqäxankiri" +# "Coordenadas polares" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Coordenadas polares wakichatanaka" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "robot Butiá wakichata jaqi kupïxaru muytayma" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "ist'añataki wakichata wakichaña" -#~ msgid "backward Butia" -#~ msgstr "Butiá qhipäxa" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "Y wakichata tantiyiri chaninchiri" -#~ msgid "move the Butia robot backward" -#~ msgstr "robot Butiá wakichata jaqi qhipäxaru jithiyma" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Mantañataki wakichatama utjañapawa uka http://turtleartsite.sugarlabs.org " +"mantañataki ukhamata luräwi apaqañamataki." -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "robot Butiá wakichata jaqiru qhipäxaru jithiyma amtata sarakama" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "limiña" -# "derecha Butiá" -#~ msgid "right Butia" -#~ msgstr "Butiá wakichata kupïxa" +# "Ejecutar" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Sarayaña" -#~ msgid "turn the Butia robot at right" -#~ msgstr "robot Butiá wakichata jaqi kupïxaru muytayma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "siqi wakichata uñachayma" -#~ msgid "turn Butia" -#~ msgstr "Butiá wakichata muytayaña" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "" +"tortuga wakichata sarañapa chimpuña (0 wakichata chimpuxa wakichata " +"patäxankiwa)" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "robot Butiá wakichata x grados pachparu muytayma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "limiña chhijllaña" -# "detener Butiá" -#~ msgid "stop Butia" -#~ msgstr "Butiá wakichata sayt'ayaña" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "micrófono arsusiña mantañapa ist'aña millk'uña" -#~ msgid "stop the Butia robot" -#~ msgstr "Butiá wakichata sayt'ayma" +# "Título:" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Suti:" -# "Butiá" -#~ msgid "Butia" -#~ msgstr "Butiá wakichata" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Taypinkiri siqitanaka limt'aña" -# "Error en la inicialización de la cámara." -#~ msgid "Error on initialization of the camera" -#~ msgstr "Cámara wakichataru qhantayaskasina pantjata" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Jani wakisiri imata siqinaka wasitata sartayma" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Janiwa cámara wakichatanakaxa jakisiti" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Kunaymana mayjt'ayirinaka tama limt'aña" -#~ msgid "Error stopping camera" -#~ msgstr "Cámara wakichata sayt'aykasina pantjata" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "jakhuñanakana chaninchirinakapana jakhu siqinaka wakichatana apnaqata" -#~ msgid "Error starting camera" -#~ msgstr "Cámara wakichata qhantaykasina pantjata" +#: 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 "Ch'amanchaña" -# "FollowMe" -#~ msgid "FollowMe" -#~ msgstr "FollowMe wakichata" +# "Servidor" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Katuqiri" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Brick NXT wakichata mayachatnama thaqtma." +# "presentación" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "2x2 uñachayäwi" -#~ msgid "calibration" -#~ msgstr "calibración wakichata" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "1 mayjt'ayiri (jakhu chanipa)" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "wakisiripanjama calibración wakichata imma" +# "Vecindario" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Wakisirinaka" -#~ msgid "return a personalized calibration" -#~ msgstr "wakisiriparjama calibración wakichata kutsuyi" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "alfa chimpuni jakhunaka paya jakhu siqi jakhuxatma" -#~ msgid "follow" -#~ msgstr "arkaña" +# "equivalente" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "jukhapura" -#~ msgid "follow a color or calibration" -#~ msgstr "samimpi jani ukaxa calibración wakisiñampi arkaña" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "jani ukaxa" -#~ msgid "minimum pixels" -#~ msgstr "juk'ata sipana píxeles wakichata" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "janiwa sumarapiti" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "juk'ata sipana píxeles jakhu chimpupa arkaña amtma" +# "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Jani imata wakichatanakawa utji. ¿janirara mistkasina imaña muntacha?" -#~ msgid "threshold" -#~ msgstr "warachi wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "wakichata tamanaka imantata mayampi qhantayma" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "RGB samitaki warachi wakichma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "ch'amanchaña" -#~ msgid "camera mode" -#~ msgstr "cámara wakichata uñanaqa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "uñjaña wakichata jani ukaxa ist'aña sayt'ayma" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "" -#~ "cámara wakichata samipa uñanaqapa wakichma: RGB, YUV jani ukaxa HSV chimpuni" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Tortuga wakichataxa unxtayata janiwa rixichkaniti." -# "posición x" -#~ msgid "x position" -#~ msgstr "x sayäwi" +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "apsuña" -# "retorna la posición x" -#~ msgid "return x position" -#~ msgstr "x sayäwi kutiyaña" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "taña wakichata" -# "posición y" -#~ msgid "y position" -#~ msgstr "y sayäwi" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "tortuga uywana lip'ichipa" -# "retorna la posición y" -#~ msgid "return y position" -#~ msgstr "y sayäwi kutiyaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"sinusoide wakichata wakichäwi taypita qhantayma, saräwi ukata qhanäwi (pacha " +"t'aqa t'ijtäwitjama)" -#~ msgid "pixels" -#~ msgstr "píxeles wakichata" +# "√" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√ chimpu" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "jach'a allqantata píxeles wakichata jakhu chimpupa kutiyma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "arsuña" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "cámara wakichata samini uñnaqapa RGB chimpuniru wakichma" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "radiofrecuencia (RFID) wakichatanaka thaqaña chanipa ullaña" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "cámara wakichata samini uñanaqapa YUV chimpuniru wakichma" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "tortuga wakichata maya sawana saraparu sarayma" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "cámara wakichata samini uñanaqapa HSV chimpuniru wakichma" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "U uñanaqaru muytaña" -#~ msgid "empty calibration" -#~ msgstr "calibración wakichata ch'usa" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "jukhapura tantiyu chaninchiri" -#~ msgid "error in string conversion" -#~ msgstr "qillqata wakichata wiskhallana mayjt'ayäwina pantjata" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Samichaña phuyu saminakapa limt'aña" -#~ msgid "SumBot" -#~ msgstr "SumBot wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "uñjaña wakichata jani ukaxa ist'aña sayt'ayma" -#~ msgid "speed SumBot" -#~ msgstr "SumBot wakichata k'ata saräwipa" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "1 mayjt'ayiri wakichataru jakhuna chanipa imma" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "SumBot wakichata k'ata saräwipa machaqachma" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "2 mayjt'ayiri wakichataru jakhuna chanipa imma" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "sarayaña limt'añanaka pantjasina k'ata sarayäwi machaqachma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "tortuga uywaru qallapa lip'ichimpi isintayaña" -#~ msgid "forward SumBot" -#~ msgstr "SumBot wakichatampi qalltma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "limt'aña limxatata" -#~ msgid "move SumBot forward" -#~ msgstr "SumBot wakichata nayräxaru sartayma" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "tortuga wakichata qhipäxaru jitt'ayma" -#~ msgid "backward SumBot" -#~ msgstr "SumBot wakichata qhipäxa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "coory wakichata uñjaña alaya paräxankiri" -#~ msgid "move SumBot backward" -#~ msgstr "SumBot wakichata qhipäxaru jithiyma" +# "Mostrar bloques" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Siqichata wakichatana uñachayaña" -#~ msgid "stop SumBot" -#~ msgstr "SumBot wakichata sayt'ayaña" +# "reproducir" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "qhantayaña" -#~ msgid "stop the SumBot" -#~ msgstr "SumBot wakichata sayt'ayma" +# "guardar" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "imaña" -#~ msgid "left SumBot" -#~ msgstr "SumBot wakichata ch'iqäxa" +# "Colores" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Sumi" -#~ msgid "turn left the SumBot" -#~ msgstr "SumBot wakichata ch'iqäxaru muytayma" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "tortuga wakichatampi rixiñataki rixi chanipa wakichma" -#~ msgid "right SumBot" -#~ msgstr "SumBot wakichata kupïxa" +# "Abrir" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Uñantaña" -#~ msgid "turn right the SumBot" -#~ msgstr "SumBot wakichata kupïxaru muytayma" +# "presentación" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "uñanaqa" -#~ msgid "angle to center" -#~ msgstr "taypiru k'uchuni wakichata" +# "coory" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor wakichata" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "dohyo taypiru k'uchuni wakichata apsma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"maya tama wakichäwi: walja mayjt'ayirinakani sinti ch'ama ecuaciones " +"matemáticas wakichatanaka apxatañataki apnaqata, akhama, sqrt(x*x+y*y)" -#~ msgid "angle to Enemy" -#~ msgstr "k'uchuni wakichata uñisiri" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "jïsa" -#~ msgid "get the angle to the Enemy" -#~ msgstr "k'uchuni wakichata uñisiri apsma" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"tortuga wakichata xcor, ycor wakichatanakawjaru unxtayma; (0,0) wakichata " +"chimpuwa muruq'u wakichata taypinki." -#~ msgid "x coor. SumBot" -#~ msgstr "coor. x SumBot wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python wakichata" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "SumBot wakichatana coordenada x chanipa apsma" +# "Parar" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Sayt'ayaña" -#~ msgid "y coor. SumBot" -#~ msgstr "coor. y SumBot wakichata" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "2 luräwi" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "SumBot wakichatana coordenada y chanipa apsma" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "1 luräwi" -#~ msgid "x coor. Enemy" -#~ msgstr "coor. x wakichata uñisiri" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "samichasa phuqachaña tukuyaña" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "uñisiri wakichatana coordenada x chanipa apsma" +# "Copiar" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Apaqaña" -#~ msgid "y coor. Enemy" -#~ msgstr "coor. y wakichata uñisiri" +# "Pegar" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Lip'katayaña" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "uñisiri wakichatana coordenada y chanipa apsma" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "wakichataru qillqaña janiwa wakt'ayiti" -#~ msgid "rotation SumBot" -#~ msgstr "SumBot wakichata muyüwipa" +# "Actividades" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Luräwinaka" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "SumBot wakichata muyüwipa apsma" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Web wakichataru apayaña" -#~ msgid "rotation Enemy" -#~ msgstr "uñisiri wakichatana muyüwipa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "siqi wakichata ch'ussuña" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "uñisiri wakichatana muyüwipa apsma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "" +"FILO siqi wakichatana chanipa apsma (nayraqata mantañana, qhipraki mistuñana)" -#~ msgid "distance to center" -#~ msgstr "taypiru sara" +# "Limpiar" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Pichsuña" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "dohyo wakichata taypiru sarapa apsma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Uñachayañanaka wakichatanaka limiña" -#~ msgid "distance to Enemy" -#~ msgstr "uñisiri wakichata jayankatapa" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "k'uchu" -#~ msgid "get the distance to the Enemy" -#~ msgstr "uñisiri wakichata jayankatapa apsma" +# "identidad" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "kankaña" -#~ msgid "update information" -#~ msgstr "yatiyañataki machaqachaña" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Imaña/Ch'amanchaña" -#~ msgid "update information from the server" -#~ msgstr "wakichatanaka apnaqañatpacha yatiyañanaka machaqachma" +# "arriba y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "y alaya" -#~ msgid "Palette of physics blocks" -#~ msgstr "Física wakichata tamanaka limt'aña" +# "audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ist'awi" -#~ msgid "start polygon" -#~ msgstr "polígono wakichata qalltaña" +# "Herramientas" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Lurañataki" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Machaqa polígono wakichata wakichaña qalltma uka tortuga wakichata xy jichha " -#~ "sayäwiparjama." +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Tatuqañataki wakichata" -#~ msgid "add point" -#~ msgstr "chimpu yapxataña" +# "izquierda" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "ch'iqa" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "Jichha polígono wakichataru machaqa chimpu yapxatma." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "amuyt'aña" -#~ msgid "end polygon" -#~ msgstr "polígono wakichata tukuyaña" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "aynacha siqinkiri jakhunaka alaya siqinkiri jakhunakata jakhuqma" -#~ msgid "Define a new polygon." -#~ msgstr "Machaqa polígono wakichata wakichma." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "wakisirinaka sayt'ayaña" -#~ msgid "end filled polygon" -#~ msgstr "polígono wakichata phuqachaña tukuyma" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "wakichata siqiru wakisiri rgb chanipa nukhuña" -#~ msgid "Not a simple polygon" -#~ msgstr "Janiwa aliqa polígono wakichatakïkiti" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"qillqaña wakichata katuyañataki thaqäwi (ukasti qillqaña wakichata siqina " +"imataskiwa)" -#~ msgid "Define a new filled polygon." -#~ msgstr "Machaqa polígono wakichata phuqachaña amtma." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesiana wakichata" -#~ msgid "triangle" -#~ msgstr "kimsa k'uchu" +#: 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 "ch'amani qhantayiri" -#~ msgid "base" -#~ msgstr "kayu" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "mayampi qallatañataki wakichma ukata tortuga wakichata mayampi qalltma" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Amtäwiru kimsa k'uchuni wakichatampi yapxatma." +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "micrófono arsusiña uchantaña qhana chimpu" -#~ msgid "circle" -#~ msgstr "muyu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "tortuga wakichatana \"uñjatapa\" sami uñachayma" -#~ msgid "Add a circle object to the project." -#~ msgstr "Amtäwiru maya muyu wakichatampi yapxatma." +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "1 luräwina wakichata siqi jawsuña" -#~ msgid "rectangle" -#~ msgstr "wiskhalla" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Tortuga wakichata sarayirinaka limt'aña" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Amtäwiru maya wiskhalla wakichatampi yapxatma." +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "wiñayataki kutxataña" -#~ msgid "reset" -#~ msgstr "machaqachaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "chiqaru uñtayatanaka uñachayaña" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Amtäwi machaqachma: wakichata sutinaka siqi pichsma." +# "TortugArte" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "TortugArte wakichata" -#~ msgid "motor" -#~ msgstr "motor wakichata" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "¿Mayampi qhantayañataki wakichaña muntati %s?" -#~ msgid "torque" -#~ msgstr "torque wakichata" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Luräwi wakichata sartayaña" -#~ msgid "speed" -#~ msgstr "k'ata sarayäwi" +# "Proyecto" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Luräwinaka" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Torque wakichata ukata motor wakichata k'ata saräwimpixa 0 chimputa (jiwata) " -#~ "chiqapa chimpunakkamawa sari; motor wakichataxa jichha wakichata taypiruwa " -#~ "uchasi." +# "Depurar" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Thaqsraña" -#~ msgid "pin" -#~ msgstr "tachuela wakichata" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Khaya aka yanapt'a sayt'ayaña" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Wakichata jani jalaqañapataki achxaruyma." +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "uñanaqa" -#~ msgid "joint" -#~ msgstr "lip'ita" +# "Contraseña:" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Jist'araña" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Paya wakichata lip'iyma (jichha wakichatampi uka w, y chimpuni wakichatampi." +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "wira wakichata" -#~ msgid "save as Physics activity" -#~ msgstr "física luräwjama imaña" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Plugin wakichata apnaqañataki TortugArte wakichata mayampi qhantayma." -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Amtäwi sapüru luräwiru imma kamisa Física luräwjama." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"k'uchunakani wakichata samichasa phuqachaña tukuyma (ukasti maya siqi " +"wakichata samichasa phuqachaña qalltañana apnaqasi)" -#~ msgid "gear" -#~ msgstr "muyu" +# "Compartir" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Khuyapayaña" -#~ msgid "Add a gear object to the project." -#~ msgstr "Amtäwiru maya muyuri wakichatampi yapxatma." +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "ukata sipana pisi" -# "identidad" -#~ msgid "density" -#~ msgstr "waljani" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "raíz cuadrada wakichata" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "Wakichatanaka waljanitapa apsma (waljanitapa maski kawkipiri chiqapa " -#~ "jakhuspawa)." +# "Escalar coordenadas" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Coordenadas wakichatanaka jithirayaña" -#~ msgid "friction" -#~ msgstr "purapayasïwi" +# "Mostrar bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "wakichata tamanaka uñachayaña" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Wakichatanaka purapayasïwipana yatiyäwinakapa wakichma (maya chanixa 0 " -#~ "chimpuni ukata 1 chimpuni, ukana 0 jani purapayasini ukata 1 chimpuraki wali " -#~ "purapayasini)." +# "Salir" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Mistuña" -#~ msgid "bounciness" -#~ msgstr "kutintayäwi" +# "derecha" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "kupi" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Wakichatanaka kutintayäwipa tuqita yatiyäwinaka wakichma (maya chanixa 0 " -#~ "chimpuni ukata 1 chimpuni, ukana 0 jani kutintayäwini ukata 1 chimpuraki " -#~ "wali kutintayäwini)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar wakichata sapüru luräwipa yatiyaña wakichata" -#~ msgid "dynamic" -#~ msgstr "q'apa" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "uqiru samiri wakichaña" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Wali q'apa = 1, wakichataxa unxtaspawa; wali q'apa = 0 wakichataxa janiwa " -#~ "unxtaspati." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "chimpunakani suti siqinaka uñachayaña" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "WeDo wakichata tamanaka limt'aña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "qhanäwi" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "kicht'ayaña katjiri mistuñapa: (-1 == janiwa kicht'atati, 0 == nayräxaru " -#~ "kicht'atawa, 3 == qhipäxaru kicht'atawa, 1 == ch'iqäxaru kicht'atawa, 2 == " -#~ "kupïxaru kicht'atawa)" +# "Nuevo" +#: turtleblocks.py:354 +msgid "New" +msgstr "Machaqa" -#~ msgid "distance sensor output" -#~ msgstr "katjiri mistuñana jak'ankatapa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "wakisiri chimpumaru maya amuyt'a uchantma" -#~ msgid "Motor A" -#~ msgstr "Motor A wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "pixel wakichata ullaña" -#~ msgid "returns the current value of Motor A" -#~ msgstr "Motor A wakichatana jichha chanipa kutsuyi" +# "escala" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "jach'a" -#~ msgid "Motor B" -#~ msgstr "Motor B wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "manqha" -#~ msgid "returns the current value of Motor B" -#~ msgstr "Motor B wakichatana jichha chanipa kutsuyi" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "khuchi wila sami" -#~ msgid "set the value for Motor A" -#~ msgstr "Motor A wakichatana chanipa machaqachma" +# "Escalar coordenadas hacia abajo" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Coordenadas wakichata aynacharu jithirayaña" -#~ msgid "set the value for Motor B" -#~ msgstr "Motor B wakichatana chanipa machaqachma" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "wakichata jist'arañataki limt'aña" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Motor wakichatanakana LEGO NXT tamanaka limt'aña" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "micrófono uchañana wakichatanaka thaqaña wali suma ist'asiri wakichata" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Katjirinaka wakichata LEGO NXT tamanaka limt'aña" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Wakichaña" -#~ msgid "touch" -#~ msgstr "limt'aña" +# "Descripción:" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Yatiyaña:" -#~ msgid "ultrasonic" -#~ msgstr "jaya" +# "diario" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "sapüru luräwi" -# "luz" -#~ msgid "light" -#~ msgstr "lliphi" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "jani wakisiri imata ch'ussuña" -#, fuzzy -#~ msgid "grey" -#~ msgstr "uqiru samiri" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Tortuga wakichataxa unxtasina rixichaniwa." -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Mira suma brick wakichatampi mayachäwi uñanuqma." +# "Cargar..." +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Ch'amanchaña..." -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "" -#~ "Jakhunaka jaqtäwina chanipaxa niya -127 ukata 127 jakhunaka taypinkañapawa." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar wakichata sapüru luräwipa wakisirinakapa ist'aña apnaqaña" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "" -#~ "Maya pantjasitawa utji: taqi mayachatanaka uñakipma ukata mayampi mayachaña " -#~ "yant'ma." +# "Parar tortuga" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Tortuga wakichata sayt'ayaña" -#~ msgid "NXT not found" -#~ msgstr "NXT wakichata chhaqata" +# "Tortuga" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Tortuga wakichata" -#~ msgid "refresh NXT" -#~ msgstr "NXT wakichata samarayaña" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "siqichatanaka limt'aña uñanaqapa jaqukipma" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Brick NXT wakichata mayachatnama thaqtma." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "wakichataru imaña" -#~ msgid "play tone" -#~ msgstr "ist'aña wakichata qhantayaña" +# "Ocultar bloques" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Siqichata wakichatanaka imantaña" -#~ msgid "frequency" -#~ msgstr "wakichatanaka thaqaña" +# "Cargar bloque Python" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Python siqi wakichata sartayaña" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Maya k'ata wakichäwinaka taypinkiri maya ist'aña qhantayma." +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "jakhuxataña" -#~ msgid "port" -#~ msgstr "puerto wakichata" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "o wakichata" -#~ msgid "power" -#~ msgstr "ch'ama" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "uñachayañataki wakichata: chimpunakani suti siqi" -#~ msgid "rotations" -#~ msgstr "muyüwinaka" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "siqinaka jach'anchaña kankañani chaninchiri" -#~ msgid "turn a motor" -#~ msgstr "motor wakichata muytayma" +# "Empequeñecer bloques" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Siqichatanaka jisk'aptayaña" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "PUERTO B y PUERTO C motor wakichatanaka mayachäwinaka katjaña" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "tortuga wakichatana rixitapana qillqata tañapa wakichma" -#~ msgid "PORT A" -#~ msgstr "PUERTO A wakichata" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"jichha tortuga wakichata saririniwa (ukasti maya tama jakhunaka lanti " +"apnaqasirakispa)" -#~ msgid "PORT A of the brick" -#~ msgstr "brick wakichatana PUERTO A wakichatapa" +# "imagen" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "rixita" -#~ msgid "PORT B" -#~ msgstr "PUERTO B wakichata" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"maski kawkïri maya jakhu juk'ata sipansa (alaya) ukata jilata sipansa kutiyma" -#~ msgid "PORT B of the brick" -#~ msgstr "brick wakichatana PUERTO B wakichatapa" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"jichha samichaña phuyu samipaniwa (maya tama jakhunaka lanti apanaqasispa)" -#~ msgid "PORT C" -#~ msgstr "PUERTO C wakichata" +# "Mostrar paleta" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "limt'aña uñachayaña" -#~ msgid "PORT C of the brick" -#~ msgstr "brick wakichatana PUERTO C wakichatapa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "Azúcar wakichatana sapüru luräwiparu rixita wakichata imma" -#~ msgid "start motor" -#~ msgstr "motor wakichata qhantayaña" +# "Guardar instantánea" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Jukhawraspacha imaña" -#~ msgid "Run a motor forever." -#~ msgstr "Wiñayataki wakichata motor muyuyaña." +# "empezar" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "qalltaña" -#~ msgid "brake motor" -#~ msgstr "motor wakichata wayt'aña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "siqi ch'usipana Chiqapa wakichata kutsuyi" -#~ msgid "Stop a specified motor." -#~ msgstr "Maya uñaqata motor wakichata wayt'aña." +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "tortuga wakichata nayräxaru sartayma" -#~ msgid "reset motor" -#~ msgstr "motor wakichata mayampi qhantayaña" +# "adelante" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "qalltma" -#~ msgid "Reset the motor counter." -#~ msgstr "Motor wakichata jakhuripa mayampi qhantayma." +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "wakichata kajunaja" -#~ msgid "motor position" -#~ msgstr "motor wakichatana sayäwipa" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Mantañataki wakichata" -#~ msgid "Get the motor position." -#~ msgstr "Motor wakichatana sayäwipa apsma." +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Siqichata wakichatanakampi khuyapayañataki chhijllma" -#~ msgid "PORT 1" -#~ msgstr "PUERTO 1 wakichata" +# "atrás" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "qhipäxa" -#~ msgid "PORT 1 of the brick" -#~ msgstr "brick wakichatana PUERTO 1 wakichatapa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "taypinkiri wakichatanaka jithiriyaña chimpuña" -#~ msgid "read" -#~ msgstr "ullaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "jichha wakichata jithirata chanipa ch'amanchi" -#~ msgid "sensor" -#~ msgstr "katjiri" +# "presentación" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "1x1 uñachayäwi" -#~ msgid "Read sensor output." -#~ msgstr "Katjirina mistuñapa wakichata ullma." +# "presentación" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "1x2 uñachayäwi" -#~ msgid "PORT 2" -#~ msgstr "PUERTO 2 wakichata" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "qhanstayaña luräwi siqita patxa" -#~ msgid "PORT 2 of the brick" -#~ msgstr "brick wakichatana PUERTO 2 wakichatapa" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "qhanstayata mayjt'ayiriru jakhu chani imma" -#~ msgid "light sensor" -#~ msgstr "lliphirini katjiri" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "O tantiyu chaninchiri" -#~ msgid "PORT 3" -#~ msgstr "PUERTO 3 wakichata" +#: 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 "" +"micrófono uchañaru uchata DC ch'amani nakhtayiri chanipa (tupaña: 0.40 a " +"1.90 V)" -#~ msgid "PORT 3 of the brick" -#~ msgstr "brick wakichatana PUERTO 3 wakichatapa" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "maya qhawqha kuti kutxatañataki jakhu kutxati" -#~ msgid "touch sensor" -#~ msgstr "limt'añataki katjiri" +# "Guardar..." +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Imaña..." -#~ msgid "distance sensor" -#~ msgstr "jayataki katjiri" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "2 luräwina wakichata siqi jawsuña" -#~ msgid "PORT 4" -#~ msgstr "PUERTO 4 wakichata" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "xy chimpu wakichaña" -#~ msgid "PORT 4 of the brick" -#~ msgstr "brick wakichatana PUERTO 4 wakichatapa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "y p'iqinchiri suti" -#~ msgid "sound sensor" -#~ msgstr "ist'añani katjiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "x p'iqinchiri suti" -#~ msgid "color sensor" -#~ msgstr "samini katjiri" +# "pantalla completa" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "maypacha uñtaña phuqachma" -#~ msgid "set light" -#~ msgstr "lliphiri qhantayaña" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "jaqha" -#~ msgid "Set color sensor light." -#~ msgstr "Samini katjiri lliphiripa qhantayma." +# "Guardar como" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Sutini imaña" -#~ msgid "battery level" -#~ msgstr "batería ch'amanchiripa" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "xy wakichata chimpuña" -#, fuzzy -#~ msgid "Get battery level of the brick" -#~ msgstr "Brick wakichatana batería ch'amanchiripa apsma." +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "jani wakisiri" -#~ msgid "HIGH" -#~ msgstr "JILA" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polar wakichata" -#~ msgid "LOW" -#~ msgstr "PISI" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "kutxataña" -#~ msgid "INPUT" -#~ msgstr "KATUQIRI" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "ist'aña wakichata jani ukaxa uñjaña tukuyañapkama suyaña" -#~ msgid "OUTPUT" -#~ msgstr "MISTUYIRI" +# "Guardar como imagen" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Rixita wakichatjma imaña" -#~ msgid "PWM" -#~ msgstr "PWM wakichata" +# "Editar" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Chiqachaña" -#~ msgid "SERVO" -#~ msgstr "SERVO wakichata" +#: 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 "" +"micrófono uchañaru ch'amanchiri wakichatana uchata chanipa (tupañataki " +"wakichata: 700 a 14000 ohms)" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "PANTJATA: Arduino uñxatma ukata puerto wakichata jakhupa." +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "2 luräwina wakichata siqita nayrïri" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "PANTJATA: chanixa 0 ukata 255 jakhu taypinkañapawa." +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"alaya siqinkiri jakhunaka jakhjama (jakhjiri) aynacha siqinkiri jakhunakaru " +"(jakhjata)" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "PANTJATA: JILA jani ukaxa PISI chaniñapawa." +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "jilata sipana" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "" -#~ "PANTJATA: uñanaqapaxa KATUQIRI, MISTUYIRI, PWM jani ukaxa SERVO " -#~ "ukhamañapawa." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "wakichata uñjaña aynachankiri jikxatasiri tamapa chani laphiru apsma" -#~ msgid "pin mode" -#~ msgstr "pin wakichata uñanaqapa" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "phuqachaña wakichaña qalltaña" -#~ msgid "mode" -#~ msgstr "uñanaqapa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "ASCII wakichatjama qillqaña wakichata thaqata siqi katjatanaka katu" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "pin wakichatana lurañapa chhijllma (KATUQIRI, MISTUYIRI, PWM, SERVO)." +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ayc.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "nukht'aña" -#~ msgid "analog write" -#~ msgstr "amparampi qillqaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"maya tama wakichäwi: walja mayjt'ayirinakani sinti ch'ama ecuaciones " +"matemáticas wakichatanaka apxatañataki apnaqata, akhama, seno(x+y+z)" -#~ msgid "Write analog value in specified port." -#~ msgstr "Maya puerto wakichataru amparampi luraña qillqma." +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "taqi jani wakisiri wakichata imatanaka wasitata jaktayaña" -#~ msgid "analog read" -#~ msgstr "amparampi lurata ullaña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "kamisaraki" -#~ 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 "" -#~ "Maya puerto amparampi lurata wakichata chanipata ullma. Chanipaxa uka 0 " -#~ "ukata 1023 jakhu taypinkaspawa. Ch'amapa yatiñatakixa Vref wakichata katma." +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "TurtleBots wakichata" -#~ msgid "digital write" -#~ msgstr "limt'asa qillqaña" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#~ msgid "Write digital value to specified port." -#~ msgstr "Maya puerto wakichataru limt'asa qillqata chanipa qillqma." +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "uqiru samiri" -#~ msgid "digital read" -#~ msgstr "limt'asa qillqata ullaña" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#~ msgid "Read value from digital port." -#~ msgstr "Maya puerto limt'asa wakichatata chanipa ullma." +#: TurtleArtActivity.py:766 +#, fuzzy +msgid "Palettes" +msgstr "limiña" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Puerto limt'asa wakichata JILA chanipa machaqachma." +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "limt'asa mantañjama Arduino puerto wakichatapa wakichma." +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Maya SERVO apnaqañataki Arduino puerto wakichata wakichma." +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#~ msgid "Set LOW value for digital port." -#~ msgstr "Puerto limt'asa wakichata PISI chanipa machaqachma." +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "limt'asa mistuñjama Arduino puerto wakichatapa wakichma." +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "" -#~ "PWM wakichatataki Arduino puerto wakichma (putuqiri lankhutjama askichma)." +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "WeDo wakichata tamanaka limt'aña" +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "Butiá máquina wakichatanakana k'ata saräwipa sayt'ayma kamisa 0 jakhu chimpu " -#~ "ukata 1023 jakhu chimpu pasatapa qhananchatatjama" +#~ "Butiá máquina wakichatanakana k'ata saräwipa sayt'ayma kamisa 0 jakhu " +#~ "chimpu ukata 1023 jakhu chimpu pasatapa qhananchatatjama" #~ msgid "turn the Butia robot to the left" #~ msgstr "robot Butiá wakichata jaqi ch'iqäxaru muytayma" @@ -3066,7 +3977,8 @@ msgstr "¿Wakichäwinaka imaña?" # "entre 0 y 1023." #, fuzzy #~ 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 "Uqi qutayaña kunaki sensor nayrapanki 0 ukjata 1023 uqakama." # "Importar / Exportar" diff --git a/po/aym.po b/po/aym.po index b1045d5..c2d527d 100644 --- a/po/aym.po +++ b/po/aym.po @@ -82,7 +82,8 @@ msgstr "kupi" #: TurtleArt/tabasics.py:170 msgid "turns turtle clockwise (angle in degrees)" -msgstr "tortuga wakichata kupi tuqiru sarayma (ángulo de grados) wakichatarjama" +msgstr "" +"tortuga wakichata kupi tuqiru sarayma (ángulo de grados) wakichatarjama" #: TurtleArt/tabasics.py:178 msgid "arc" @@ -435,8 +436,7 @@ msgstr "jilata sipana" #: TurtleArt/tabasics.py:647 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -"maski kawkïri maya jakhu juk'ata sipansa (alaya) ukata jilata sipansa " -"kutiyma" +"maski kawkïri maya jakhu juk'ata sipansa (alaya) ukata jilata sipansa kutiyma" # "número" #: TurtleArt/tabasics.py:659 @@ -1591,8 +1591,7 @@ msgstr "apsuña" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" -"FILO siqi wakichatana chanipa apsma (nayraqata mantañana, qhipraki " -"mistuñana)" +"FILO siqi wakichatana chanipa apsma (nayraqata mantañana, qhipraki mistuñana)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 @@ -3080,8 +3079,7 @@ msgstr "PANTJATA: JILA jani ukaxa PISI chaniñapawa." #: taextras.py:388 msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." msgstr "" -"PANTJATA: uñanaqapaxa KATUQIRI, MISTUYIRI, PWM jani ukaxa SERVO " -"ukhamañapawa." +"PANTJATA: uñanaqapaxa KATUQIRI, MISTUYIRI, PWM jani ukaxa SERVO ukhamañapawa." #. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) #. in which an I/O pin is being used. @@ -3309,7 +3307,8 @@ msgstr "¿Wakichäwinaka imaña?" # "entre 0 y 1023." #, fuzzy #~ 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 "Uqi qutayaña kunaki sensor nayrapanki 0 ukjata 1023 uqakama." # "Importar / Exportar" diff --git a/po/bg.po b/po/bg.po index 6f78740..b9ddce3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# bg.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bg.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bg.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bg.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -17,6 +42,1461 @@ msgstr "" "X-Generator: Pootle 1.1.0rc2\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -95,14 +1575,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -158,12 +1630,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -623,10 +2089,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1103,11 +2565,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,13 +2591,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1167,15 +2617,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1441,10 +2882,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1693,10 +3130,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1709,10 +3142,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/bi.po b/po/bi.po index 371ba9c..02fdc21 100644 --- a/po/bi.po +++ b/po/bi.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# bi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bi.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/bn.po b/po/bn.po index 5d2013e..f828834 100644 --- a/po/bn.po +++ b/po/bn.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1478 @@ msgstr "" "X-Generator: Pootle 1.2.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "উচ্চতা" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "প্রস্থ্য" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "রং" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"ডানে যাও" + +#: plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "শব্দ" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"মোড" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn.po (PACKAGE VERSION) #-#-#-#-#\n" +"নমুনা সমুহ" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1593,6 @@ msgstr "" msgid "set xy" msgstr "xy নির্ধারণ করো" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1648,6 @@ msgstr "" msgid "fill screen" msgstr "পর্দা ভরাট করো" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "রং" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -626,10 +2109,6 @@ msgstr "" msgid "box" msgstr "বাক্স" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1122,11 +2601,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "শব্দ" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1153,13 +2627,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1186,15 +2653,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1462,10 +2920,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1719,10 +3173,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "প্রস্থ্য" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1735,10 +3185,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "উচ্চতা" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1915,18 +3361,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "ডানে যাও" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "মোড" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "নমুনা সমুহ" - -#, fuzzy #~ msgid "Save as HTML" #~ msgstr "HTML হিসেবে সংরক্ষণ করো" diff --git a/po/bn_IN.po b/po/bn_IN.po index 69b5990..2663d87 100644 --- a/po/bn_IN.po +++ b/po/bn_IN.po @@ -1,10 +1,47 @@ +# #-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# #-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# #-#-#-#-# bn_IN.po (turtleart-activity) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # Sankarshan Mukhopadhyay , 2009. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# bn_IN.po (turtleart-activity) #-#-#-#-#\n" "Project-Id-Version: turtleart-activity\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -19,6 +56,1689 @@ msgstr "" "X-Generator: Pootle 1.1.0rc2\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "color" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "mod" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn_IN.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# bn_IN.po (turtleart-activity) #-#-#-#-#\n" +"উদাহরণ" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "শিরোনাম" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "box 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "box 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +#, fuzzy +msgid "Step" +msgstr "ধাপ" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +#, fuzzy +msgid "Hide palette" +msgstr "প্যালেট লুকিয়ে রাখুন" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "wait" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "box" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "টেক্সট" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "shade" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "then" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "not" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "ব্লক লুকিয়ে রাখুন" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "store in box 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "store in box 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "print" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +#, fuzzy +msgid "Save as Logo" +msgstr "লোগো সংরক্ষণ করুন" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "number" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "ধাপ" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "and" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "আমার ব্লক-ক= লোড কর" + +#: TurtleArt/tabasics.py:754 +#, fuzzy +msgid "forever" +msgstr "forever" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "ব্লক দেখাও" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "টেক্সট" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "random" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "ধাপ" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "শিরোনাম" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "else" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +#, fuzzy +msgid "Show blocks" +msgstr "ব্লক দেখাও" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "color" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "if" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +#, fuzzy +msgid "Stop" +msgstr "ধাপ" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "টার্টেল আর্ট" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "প্রোজেক্ট" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "ব্লক দেখাও" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +#, fuzzy +msgid "Stop turtle" +msgstr "টার্টেল-কে বন্ধ করুন" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +#, fuzzy +msgid "Hide blocks" +msgstr "ব্লক লুকিয়ে রাখুন" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "or" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +#, fuzzy +msgid "Show palette" +msgstr "প্যালেট দেখাও" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "এই ভাবে সংরক্ষণ করুন" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repeat" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -97,24 +1817,11 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" @@ -160,19 +1867,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "color" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "shade" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -388,26 +2082,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "random" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "number" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -436,26 +2114,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "not" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "and" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "or" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -465,39 +2131,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "wait" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -#, fuzzy -msgid "forever" -msgstr "forever" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repeat" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "if" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "then" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -506,10 +2151,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "else" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -546,25 +2187,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "টেক্সট" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -586,34 +2212,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "store in box 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "store in box 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "box 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "box 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -622,14 +2232,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "box" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -702,36 +2304,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "শিরোনাম" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -#, fuzzy -msgid "Stop turtle" -msgstr "টার্টেল-কে বন্ধ করুন" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -#, fuzzy -msgid "Show blocks" -msgstr "ব্লক দেখাও" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -#, fuzzy -msgid "Hide blocks" -msgstr "ব্লক লুকিয়ে রাখুন" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -773,11 +2345,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "টেক্সট" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -793,20 +2360,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "টার্টেল আর্ট" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -#, fuzzy -msgid "Save as Logo" -msgstr "লোগো সংরক্ষণ করুন" - #: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 #: TurtleArtActivity.py:850 turtleblocks.py:358 msgid "Save as image" @@ -830,16 +2387,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -#, fuzzy -msgid "Show palette" -msgstr "প্যালেট দেখাও" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -#, fuzzy -msgid "Hide palette" -msgstr "প্যালেট লুকিয়ে রাখুন" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -858,10 +2405,6 @@ msgstr "" msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "প্রোজেক্ট" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" @@ -896,11 +2439,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "ব্লক দেখাও" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -918,20 +2456,10 @@ msgstr "" msgid "Run" msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -#, fuzzy -msgid "Step" -msgstr "ধাপ" - #: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 msgid "Help" msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -#, fuzzy -msgid "Stop" -msgstr "ধাপ" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1043,11 +2571,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "color" - #: 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 @@ -1076,11 +2599,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "শিরোনাম" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1119,11 +2637,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1150,13 +2663,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1183,15 +2689,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1241,13 +2738,6 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "ধাপ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1458,10 +2948,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1523,10 +3009,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "print" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1620,13 +3102,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "আমার ব্লক-ক= লোড কর" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 msgid "setxy" msgstr "" @@ -1643,19 +3118,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "ব্লক লুকিয়ে রাখুন" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "ব্লক দেখাও" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1712,10 +3178,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1728,10 +3190,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1804,11 +3262,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "ধাপ" - #: pysamples/grecord.py:217 msgid "play" msgstr "" @@ -1858,11 +3311,6 @@ msgstr "" msgid "Save" msgstr "" -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "এই ভাবে সংরক্ষণ করুন" - #: turtleblocks.py:362 msgid "Quit" msgstr "" @@ -1908,14 +3356,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "mode" -#~ msgstr "mod" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "উদাহরণ" - -#, fuzzy #~ msgid "Save as HTML" #~ msgstr "HTML-এ সংরক্ষণ করুন" diff --git a/po/br.po b/po/br.po index 631a8bd..7a1d7d5 100644 --- a/po/br.po +++ b/po/br.po @@ -5,6 +5,30 @@ #, fuzzy msgid "" msgstr "" +"#-#-#-#-# br.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# br.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# br.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# br.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +42,1461 @@ msgstr "" "X-Generator: Translate Toolkit 1.7.0\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1575,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -158,12 +1629,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -623,10 +2088,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1103,11 +2564,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,13 +2590,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1167,15 +2616,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1441,10 +2881,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1693,10 +3129,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1709,10 +3141,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/ca.po b/po/ca.po index e3c6072..27fadde 100644 --- a/po/ca.po +++ b/po/ca.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1681 @@ msgstr "" "X-Generator: Pootle 1.2.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "alçada" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "amplada" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "color" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "dreta" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "só" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-#\n" +"exemples" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "títol" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +#, fuzzy +msgid "Hide palette" +msgstr "amagar paleta" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "esperar" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "caixa" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "buidar la pila" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "text" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +#, fuzzy +msgid "shade" +msgstr "tonalitat" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "no" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "Tortuga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "imprimir" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "nombre" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "i" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "mínim" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "per sempre" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "netejar" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +#, fuzzy +msgid "Fullscreen" +msgstr "pantalla completa" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "text" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "aleatori" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "enrere" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "coorx" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "teclat" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "mostrar la pila" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "títol" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "sinó" + +#. #-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ca.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "treure" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "color" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "coory" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "si" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "buidar la pila" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "netejar" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "angle" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "esquerra" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projecte" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Tortuga" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "o" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "començar" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "endavant" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "enrere" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "pintar el fons" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repetir" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "màxim" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -32,37 +1732,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "endavant" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "enrere" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "netejar" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "esquerra" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -77,14 +1758,6 @@ msgid "turns turtle clockwise (angle in degrees)" msgstr "" #: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "angle" - -#: TurtleArt/tabasics.py:186 msgid "radius" msgstr "" @@ -96,44 +1769,21 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "coorx" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "coory" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " @@ -155,24 +1805,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "pintar el fons" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "color" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -#, fuzzy -msgid "shade" -msgstr "tonalitat" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -303,11 +1935,6 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "enrere" - #: TurtleArt/tabasics.py:460 msgid "set text color" msgstr "" @@ -389,26 +2016,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "aleatori" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "mínim" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "màxim" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "nombre" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -437,26 +2048,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "no" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "i" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "o" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -466,35 +2065,19 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "esperar" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "per sempre" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repetir" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" #: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "si" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 msgid "then" msgstr "" @@ -506,10 +2089,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "sinó" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -546,25 +2125,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "començar" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "text" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -622,14 +2186,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "caixa" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -702,19 +2258,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "títol" - #: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 msgid "Stop turtle" @@ -770,11 +2313,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "text" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -830,11 +2368,6 @@ msgstr "" msgid "Show palette" msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -#, fuzzy -msgid "Hide palette" -msgstr "amagar paleta" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -853,10 +2386,6 @@ msgstr "" msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projecte" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" @@ -874,12 +2403,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -#, fuzzy -msgid "Fullscreen" -msgstr "pantalla completa" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -905,11 +2428,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "netejar" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" @@ -1037,11 +2555,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "color" - #: 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 @@ -1070,11 +2583,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "títol" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1113,11 +2621,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "só" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1144,13 +2647,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1177,15 +2673,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1427,10 +2914,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "teclat" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1451,10 +2934,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1472,37 +2951,18 @@ msgstr "" msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "mostrar la pila" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 msgid "shows values in FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "buidar la pila" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "treure" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "buidar la pila" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" @@ -1517,10 +2977,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "imprimir" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1585,12 +3041,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "Tortuga" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1705,10 +3155,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "amplada" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1721,10 +3167,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "alçada" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1882,10 +3324,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Tortuga" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1899,14 +3337,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "dreta" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "exemples" - -#, fuzzy #~ msgid "full screen" #~ msgstr "pintar el fons" diff --git a/po/cpp.po b/po/cpp.po index 9114d9d..5a0a5c0 100644 --- a/po/cpp.po +++ b/po/cpp.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# cpp.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# cpp.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# cpp.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# cpp.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/cs.po b/po/cs.po index bee714c..d73907c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,51 +43,1981 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "odpor" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "výška" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." msgstr "" +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "barva" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "vpravo" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "zvuk" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "mód" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "hodnota" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-#\n" +"Vzory" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "nadpis" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "schránka 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "schránka 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +#, fuzzy +msgid "Step" +msgstr "Krok" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +#, fuzzy +msgid "Hide palette" +msgstr "Schovat paletu" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "nadpis" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "dolu" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "vypnout pero" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "čekat" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "schránka" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "další" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "nastavit velikost pera" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "nastavit záhlaví" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "popis" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "nastavit velikost pera" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Jméno:" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Heslo:" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "odstín" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "výška" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "zapnout pero" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "potom" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ne" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "Želva" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "skrýt bloky" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Uložit" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "uložiště ve schránce 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "uložiště ve schránce 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "tisknout" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +#, fuzzy +msgid "Save as Logo" +msgstr "uložit Logo" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "nastavit barvu textu" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "číslo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "Krok" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "nastavit odstín" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Zrušit" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "orientace" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "a" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "nastavit barvu" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "Paleta Turtle příkazů" + +#: turtleblocks.py:363 +msgid "File" +msgstr "Složka" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "navždy" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "smazat" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "zobrazit bloky" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Celá obrazovka" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "ukázat" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "text" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "náhodný" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "zpět" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "Krok" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "klávesnice" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "oblouk" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "poloměr" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "nastavit odstín" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "nadpis" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "orientace" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "rovno" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "jinak" + +#. #-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "bouchnout" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "velikost pera" + +#: TurtleArt/tabasics.py:441 +#, fuzzy +msgid "Palette of pen colors" +msgstr "Paleta Turtle příkazů" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +#, fuzzy +msgid "Show blocks" +msgstr "zobrazit bloky" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "uložit" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Barva" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Otevřít" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientace" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "jestli" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +#, fuzzy +msgid "Stop" +msgstr "Krok" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopírovat" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Vložit" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "Smazat" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "roh" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "poslech" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "vlevo" + +#: 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 "napětí" + #: TurtleArt/tabasics.py:123 msgid "Palette of turtle commands" msgstr "Paleta Turtle příkazů" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projekt" + +#: gnome_plugins/collaboration_plugin.py:300 +#, fuzzy +msgid "Password" +msgstr "Heslo:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "zobrazit bloky" + +#: turtleblocks.py:354 +msgid "New" +msgstr "Nový" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "dolu" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Popis:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "deník" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +#, fuzzy +msgid "Stop turtle" +msgstr "Zastavit želvu" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Želva" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +#, fuzzy +msgid "Hide blocks" +msgstr "skrýt bloky" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "nebo" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +#, fuzzy +msgid "Show palette" +msgstr "Ukázat paletu" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "spustit" + #: TurtleArt/tabasics.py:128 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 msgid "forward" msgstr "vpřed" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "" - #: TurtleArt/tabasics.py:139 msgid "back" msgstr "zpět" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "orientace" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "orientace" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "nastavit xy" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "vyplnit obrazovku" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Uložit jako" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "nastavit xy" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "opakovat" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +#, fuzzy +msgid "Save as image" +msgstr "Uložit jako obrázek" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Úpravy" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" + +#. #-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# cs.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "tlačit" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "" + #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "smazat" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "vlevo" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -76,102 +2031,37 @@ msgstr "vpravo" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "oblouk" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "roh" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "poloměr" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "nastavit xy" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "nastavit záhlaví" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "nadpis" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " "block)" msgstr "" -#: TurtleArt/tabasics.py:282 -#, fuzzy -msgid "Palette of pen commands" -msgstr "Paleta Turtle příkazů" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "vyplnit obrazovku" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "barva" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "odstín" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -182,18 +2072,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "nastavit barvu" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "nastavit odstín" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -218,26 +2100,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "zapnout pero" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "vypnout pero" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "nastavit velikost pera" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -258,19 +2128,10 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "velikost pera" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:441 -#, fuzzy -msgid "Palette of pen colors" -msgstr "Paleta Turtle příkazů" - #: TurtleArt/tabasics.py:443 msgid "red" msgstr "" @@ -303,24 +2164,10 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "zpět" - -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "nastavit barvu textu" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "nastavit velikost pera" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -390,26 +2237,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "náhodný" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "číslo" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -430,34 +2261,18 @@ msgstr "" msgid "logical less-than operator" msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "rovno" - #: TurtleArt/tabasics.py:699 msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ne" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "a" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "nebo" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -467,38 +2282,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "čekat" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "navždy" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "opakovat" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "jestli" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "potom" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -507,10 +2302,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "jinak" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -547,25 +2338,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "spustit" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "text" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -587,34 +2363,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "uložiště ve schránce 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "uložiště ve schránce 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "schránka 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "schránka 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -623,14 +2383,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "schránka" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "hodnota" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -703,36 +2455,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "nadpis" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -#, fuzzy -msgid "Stop turtle" -msgstr "Zastavit želvu" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -#, fuzzy -msgid "Show blocks" -msgstr "zobrazit bloky" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -#, fuzzy -msgid "Hide blocks" -msgstr "skrýt bloky" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -770,14 +2492,6 @@ msgstr "" msgid "click to open" msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientace" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "další" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -793,26 +2507,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -#, fuzzy -msgid "Save as Logo" -msgstr "uložit Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -#, fuzzy -msgid "Save as image" -msgstr "Uložit jako obrázek" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" @@ -831,16 +2529,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -#, fuzzy -msgid "Show palette" -msgstr "Ukázat paletu" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -#, fuzzy -msgid "Hide palette" -msgstr "Schovat paletu" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -849,42 +2537,20 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Úpravy" - #: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 #: TurtleArtActivity.py:747 turtleblocks.py:382 msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projekt" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopírovat" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Vložit" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Celá obrazovka" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -897,11 +2563,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "zobrazit bloky" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -911,29 +2572,14 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "Smazat" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -#, fuzzy -msgid "Step" -msgstr "Krok" - #: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 msgid "Help" msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -#, fuzzy -msgid "Stop" -msgstr "Krok" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1037,19 +2683,10 @@ msgstr "" msgid "Port" msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -#, fuzzy -msgid "Password" -msgstr "Heslo:" - #: gnome_plugins/collaboration_plugin.py:302 msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Barva" - #: 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 @@ -1070,31 +2707,10 @@ msgid "" "your project." msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Jméno:" - -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Heslo:" - -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "nadpis" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Popis:" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Zrušit" - #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "" @@ -1121,11 +2737,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "zvuk" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1141,24 +2752,11 @@ msgstr "" msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "výška" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "odpor" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1166,13 +2764,6 @@ msgstr "odpor" msgid "microphone input resistance" msgstr "" -#: 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 "napětí" - #: plugins/audio_sensors/audio_sensors.py:158 #: plugins/audio_sensors/audio_sensors.py:172 #: plugins/audio_sensors/audio_sensors.py:186 @@ -1185,15 +2776,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1243,29 +2825,14 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "Krok" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "deník" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "poslech" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" @@ -1278,19 +2845,10 @@ msgstr "" msgid "Sugar Journal video object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "popis" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 msgid "Sugar Journal description field" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "ukázat" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 @@ -1301,11 +2859,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "nastavit odstín" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1437,10 +2990,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "klávesnice" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1461,10 +3010,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1473,11 +3018,6 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "tlačit" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" @@ -1498,11 +3038,6 @@ msgstr "" msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "bouchnout" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" @@ -1526,10 +3061,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "tisknout" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1594,12 +3125,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "Želva" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1630,11 +3155,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "nastavit xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1647,18 +3167,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "skrýt bloky" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "zobrazit bloky" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1707,18 +3219,10 @@ msgstr "" msgid "xcor of left of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "dolu" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1731,10 +3235,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "výška" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1759,32 +3259,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "dolu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "orientace" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "orientace" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "orientace" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "orientace" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1812,19 +3286,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "Krok" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "uložit" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1854,30 +3319,10 @@ msgstr "" msgid "Configuration directory not writable: %s" msgstr "" -#: turtleblocks.py:354 -msgid "New" -msgstr "Nový" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Otevřít" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Uložit" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Uložit jako" - #: turtleblocks.py:362 msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "Složka" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" @@ -1898,10 +3343,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Želva" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1915,18 +3356,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "vpravo" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mód" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Vzory" - -#, fuzzy #~ msgid "Save as HTML" #~ msgstr "Uložit jako HTML" diff --git a/po/da.po b/po/da.po index 8ec0b28..75db4ca 100644 --- a/po/da.po +++ b/po/da.po @@ -1,13 +1,54 @@ +# #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-10 13:42+0200\n" +"Last-Translator: Aputsiaq Niels \n" +"Language-Team: LANGUAGE \n" +"Language: da\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" +"#-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-10 13:42+0200\n" +"Last-Translator: Aputsiaq Niels \n" +"Language-Team: LANGUAGE \n" +"Language: da\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" +"#-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1129 +63,2252 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "Skildpadde-blokke" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "" -"En skildpasse inspireret af Logo, der tegner farverige billeder med " -"visuelle, programmérbare blokke som kan sammensættes." - -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palette af kommandoer for skildpadde" - -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "fremad" - -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "flyt skildpadde fremad" - -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "tilbage" +msgid "turtleart-extras (master)" +msgstr "turtleart-extras (master)" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "flytter skildpadden baglæns" - -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "rens" - -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "rydder skærmen og nulstiller skildpadden" - -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "venstre" - -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "drejer skildpadde mod uret (vinkel i grader)" - -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "højre" - -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "drejer skildpadde med uret (vinkel i grader)" - -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "vinkel" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radius" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "Skildpadde-blokke" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "flytter skildpadden langs en arc" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Skildpadde-kunst" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "indstil xy" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "Skildpadde-kunst mini" + +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "Skildpadde-forvirring" + +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Vælg en udfordring" + +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Amazonas Tortuga" + +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Palet af mexicanske pesos" + +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Palet af columbianske pesos" + +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Palet af Rwanda-franc" + +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "Palet af amerikanske dollar" + +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Palet af australske dollar" + +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Palet af paraguayanske guaranies" + +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Palet af peruvianske nuevo soles" + +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Palet af uruguayanske pesos" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "Skildpadde-robotter" + +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "" +"Skildpadde-blokke med Butia, Lego NxT, WeDo, Arduino og FollowMe-" +"udvidelsesmoduler" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "FEJL: Hastigheden skal være en værdi mellem 0 og 1023" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "FEJL: Pin skal være mellem 1 og 8" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -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." +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "FEJL: Værdien skal være 0 eller 1, LOW eller HIGH" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "indstil retning" +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "FEJL: Tilstanden skal være INPUT eller OUTPUT." -#: TurtleArt/tabasics.py:217 -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.)" +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "Slå LED til og fra: 0 er fra; 1 er til" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x-kor" +#: taextras.py:79 +msgid "returns the gray level" +msgstr "returnerer grå-niveauet" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"holder aktuel x-koordinat-værdi for skildpadden (kan anvendes i stedet for " -"en talblok)" +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "returnerer 1 når knappen trykkes og hvis ikke 0" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y-kor" +#: taextras.py:81 +msgid "returns the light level" +msgstr "returnerer lys-niveauet" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"holder aktuel y-koordinat-værdi for skildpadde (kan anvendes i stedet for en " -"talblok)" +#: taextras.py:82 +msgid "returns the temperature" +msgstr "returnerer temperaturen" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "bevæger sig mod" +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "returnerer afstanden til objektet foran sensoren" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "" -"holder aktuel hovedværdi for skildpadde (kan anvendes i stedet for en " -"talblok)" +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "returnerer 1 når sensoren registrerer et magnetfelt, hvis ikke 0" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palette af kommandoer for pen" +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "returnerer værdien for modstanden" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "fyld skærm" +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "returnerer værdien for spændingsmodstanden" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "farve" +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "skygge" +#: taextras.py:88 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "udfylder baggrunden med (farve, skygge)" +#: taextras.py:89 +msgid "button" +msgstr "knap" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: taextras.py:90 taextras.py:358 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:367 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 msgid "gray" msgstr "grå" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "indstil farve" - -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "sætter farve for linjen som tegnes af skildpadden" - -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "indstil skygge" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "lys" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "set skygge for linjen som tegnes af skildpadden" +#: taextras.py:92 +msgid "temperature" +msgstr "temperatur" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "sætter grå" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "distance" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "sætter niveauet af gråtone for linjen som tegnes af skildpadden" +#: taextras.py:94 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" -#: TurtleArt/tabasics.py:349 -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)" +#: taextras.py:95 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" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "holder aktuel skygge for pen" +#: taextras.py:96 +msgid "Butia Robot" +msgstr "Butia-robot" -#: TurtleArt/tabasics.py:368 -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)" +#: taextras.py:97 +msgid "refresh Butia" +msgstr "opfrisk Butia" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pen oppe" +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "opfrisk tilstanden for Butia-paletten og blokkene" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Skildpadde vil ikke tegne når den flyttes." +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "Butia batteriopladning" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pen nede" +#: taextras.py:101 +msgid "" +"returns the battery charge in volts. If no motors present, it returns 255" +msgstr "" +"returnerer batterispændingen i volt. Hvis der ikke er en motor, så " +"returneres 255" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "Butia hastighed" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "angiv hastigheden for Butia-motorerne" + +#: taextras.py:105 +msgid "move Butia" +msgstr "flyt Butia" + +#: taextras.py:106 TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "venstre" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Skildpadde vil tegne når den flyttes." +#: taextras.py:107 TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "højre" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "indstil størrelse på pen" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "flytter Butia-motorerne med den angivne hastighed" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "stop Butia" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "stop Butia-robotten" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "ryk Butia frem" + +#: taextras.py:113 +msgid "move the Butia robot forward" +msgstr "flyt Butia-robotten fremad" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "Butia til venstre" + +#: taextras.py:116 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "Butia til højre" + +#: taextras.py:119 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "ryk Butia tilbage" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "flyt Butia-robotten tilbage" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "Ekstra blokke til Butia-robotten" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "hack pin-tilstand" + +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "fastgør" + +#: taextras.py:126 taextras.py:457 +msgid "mode" +msgstr "tilstand" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Vælg pin-funktionen (INPUT, OUTPUT)." + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "skriv hack-pin for Butia" + +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "værdi" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "sætter størrelse på linjen som tegnes af skildpadden" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "angiv en hack-pin til 0 eller 1" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "start udfyldning" - -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "starter fyldt polygon (anvendes med slut på fyld af blok)" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "læs hack-pin for Butia" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "slut udfyld" +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "læs værdien af en hack-pin" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "fuldfører udfyldt polygon (anvendes med start fyld blok)" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "HØJ" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "størrelse pen" +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "Angiv værdien af HØJ for digital port." -#: TurtleArt/tabasics.py:427 -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)" +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "INPUT" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palette af farver for pen" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "Sæt hack-port til digitalt input." -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "rød" +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "LAV" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "orange" +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "Angiv værdien af LAV for digital port." -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "gul" +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "OUTPUT" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "grøn" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "Sæt hack-port til digitalt output." -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyan" +#: taextras.py:141 +msgid "Butia" +msgstr "Butia" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blå" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "FEJL: Pin skal være i OUTPUT-tilstand." -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "lilla" +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "FEJL: Pin skal være i INPUT-tilstand." + +#: taextras.py:147 +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:148 +msgid "Error on initialization of the camera" +msgstr "Fejl under initialisering af kameraet" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "Der blev ikke fundet et kamera" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Fejl under standsning af kamera" + +#: taextras.py:151 +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:153 +msgid "Error in get mask" +msgstr "Fejl ved hentning af maske" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "FollowMe" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "genopfrisk FollowMe" + +#: taextras.py:156 +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 +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "kalibrering" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "gem en personaliseret kalibrering" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "returnér en personaliseret kalibrering" + +#: taextras.py:161 +msgid "follow" +msgstr "følg" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "følg en farve eller en kalibrering" + +#: taextras.py:163 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 "lysstyrke" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "hvid" +#: taextras.py:164 +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:165 +msgid "minimum pixels" +msgstr "mindste antal billedpunkter" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "angiv det mindste antal billedpunkter som skal følges" + +#: taextras.py:167 +msgid "threshold" +msgstr "tærskelværdi" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "angiv en grænse for en RGB-farve" + +#: taextras.py:170 +msgid "camera mode" +msgstr "kamera-tilstand" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "angiv farvetilstanden for kameraet: RGB; YUV eller HSV" + +#: taextras.py:173 +msgid "get brightness" +msgstr "hent lysstyrke" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "hent lysstyrken for det omgivende lys" + +#: taextras.py:175 +msgid "average color" +msgstr "farvegennemsnit" + +#: taextras.py:176 +msgid "" +"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:178 +msgid "x position" +msgstr "x-position" + +#: taextras.py:179 +msgid "return x position" +msgstr "returnerer x-position" + +#: taextras.py:180 +msgid "y position" +msgstr "y-position" + +#: taextras.py:181 +msgid "return y position" +msgstr "returnerer y-position" + +#: taextras.py:182 +msgid "pixels" +msgstr "billedpunkter" + +#: taextras.py:183 +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) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +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) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +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) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "angiver at farvetilstanden for kameraet er HSV" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "tøm kalibrering" + +#: taextras.py:191 +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:197 +msgid "Pattern detection" +msgstr "Mønstergenkendelse" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "Kigge-signal" + +#: taextras.py:199 +msgid "Returns True if the signal is in front of the camera" +msgstr "Returnerer Sand hvis signalet er foran kameraet" + +#: taextras.py:200 +msgid "Distance to signal" +msgstr "Afstanden til signalet" + +#: taextras.py:201 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "SumBot hastighed" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "send hastigheden til SumBotten" + +#: taextras.py:209 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "ryk SumBot frem" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "flyt SumBot frem" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "ryk SumBot tilbage" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "flyt SumBot tilbage" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "stop SumBot" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "stop SumBotten" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "SumBot til venstre" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "drej Sumbotten til venstre" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "SumBot til højre" + +#: taextras.py:223 +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 +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:226 +msgid "angle to center" +msgstr "vinkel til centrum" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +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) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "vinkel en fjende" + +#: taextras.py:232 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "x-koord. SumBot" + +#: taextras.py:235 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "y-koord. SumBot" + +#: taextras.py:238 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "x-koord. fjende" + +#: taextras.py:241 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "y-koord. fjende" + +#: taextras.py:244 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "rotation for SumBot" + +#: taextras.py:247 +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" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "rotation for fjende" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "hent rotationen for fjenden" + +#: taextras.py:251 +msgid "distance to center" +msgstr "afstand til centrum" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "hent afstanden til dohyoens centrum" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "afstand til fjende" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "hent afstanden til fjenden" + +#: taextras.py:256 +msgid "update information" +msgstr "opdatér information" + +#: taextras.py:257 +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 +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Palette af fysik-blokke" + +#: taextras.py:263 +msgid "start polygon" +msgstr "start polygon" + +#: taextras.py:264 +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." -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "sort" +#: taextras.py:266 +msgid "add point" +msgstr "tilføj punkt" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "indstil tekstfarve" +#: taextras.py:267 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" +"Tilføj et nyt punkt til den nuværende polygon baseret på den nuværende xy-" +"position for skildpadde." + +#: taextras.py:269 +msgid "end polygon" +msgstr "afslut polygon" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Definér en ny polygon." + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "afslut udfyldt polygon" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "Ikke en simpel polygon" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Definér en ny udfyldt polygon." + +#: taextras.py:274 +msgid "triangle" +msgstr "trekant" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "base" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "højde" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "sætter farve for tekst som tegnes af skildpadden" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Tilføj et trekantsobjekt til projektet." -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "indstil tekststørrelse" +#: taextras.py:279 +msgid "circle" +msgstr "cirkel" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "sætter størrelse for tekst tegnet af skildpadden" +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Tilføj et cirkelobjekt til projektet." -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palette af numeriske operatorer" +#: taextras.py:281 +msgid "rectangle" +msgstr "rektangel" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "bredde" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "tilføjer to alfanumeriske input" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Tilføj et rektangelobjekt til projektet." -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "minus" +#: taextras.py:285 +msgid "reset" +msgstr "nulstil" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "fratrækker nederste numeriske input fra øverste numeriske input" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Nulstil projektet; ryd objektlisten." -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "gange" +#: taextras.py:287 +msgid "motor" +msgstr "motor" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplicerer to numeriske input" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "drejningsmoment" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "dividér" +#: taextras.py:290 +msgid "speed" +msgstr "hastighed" -#: TurtleArt/tabasics.py:604 +#: taextras.py:291 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." msgstr "" -"dividerer øverste numerisk input (nævner) med nederste numeriske input " -"(tæller)" +"Drejningsmoment på motor og hastighedsinterval fra 0 (fra) til positive tal; " +"motor placeres på det objekt som allersenest er oprettet." -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identitet" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Fastgør et objekt nede, så det ikke kan falde." -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identitetsoperator til brug for udvidelse af blokke" +#: taextras.py:295 +msgid "joint" +msgstr "sammensæt" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modulær (rest) operator" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Sammensæt to objekter (de allersenest oprettede objekt og objektet ved " +"punktet x, y)." + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "gem som Fysik-aktivitet" + +#: taextras.py:301 +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 +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "gear" + +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Tilføj et gear-objekt til projektet." + +#: taextras.py:305 +msgid "density" +msgstr "tæthed" + +#: taextras.py:306 +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)." -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "kvadratrod" +#: taextras.py:308 +msgid "friction" +msgstr "friktion" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "beregner kvadratrod" +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Angiv friktionsegenskaben for objekter (værdi fra 0 til 1, hvor 0 slår " +"friktion fra og 1 er stærk friktion)." + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "fjedringsgrad" + +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Angiv fjedringsgraden for objekter (en værdi fra 0 til 1, hvor 0 betyder " +"ingen fjedring og 1 er stærk fjedring)." + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "dynamisk" + +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Hvis dynamisk = 1, så kan objektet flytte sig; hvis dynamisk = 0, så er det " +"fikseret i position." + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "Palette af WeDo-blokke" + +#: taextras.py:324 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "angiv nuværende WeDo-enhed" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "antallet af WeDo-enheder" + +#: taextras.py:327 +msgid "tilt" +msgstr "vip" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"hældningssensor output (-1 == ingen hældning, 0 == hæld fremad, 3 == hæld " +"tilbage, 1 == hæld til venstre, 2 == hæld til højre)" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "afstandssensor output" + +#: taextras.py:333 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "returnerer nuværende værdi fra Motor A" + +#: taextras.py:335 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "returnerer nuværende værdi fra Motor B" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "angiv værdien for Motor A" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "angiv værdien for Motor B" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "WeDo er ikke tilgængelig" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "WeDo %d er ikke tilgængelig; anvender standarden 1" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "tilfældig" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, 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 +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palet med motorer bestående af LEGO NXT-blokke" + +#: taextras.py:350 +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) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "berør" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "ultrasonisk" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "farve" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "lyd" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "Tjek venligst forbindelsen til brikken" -#: TurtleArt/tabasics.py:650 -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)" +#: taextras.py:361 +#, 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" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "tal" +#: taextras.py:362 +#, 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" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "anvendes som numerisk input i matematiske operatorer" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "Værdien af styrken skal være mellem -127 og 127" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "større end" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "Parameteret skal være et heltal, ikke '%s'" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logisk større-end operator" +#: taextras.py:365 +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" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "mindre end" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT fandt %s brikker" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logisk mindre-end operator" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT ikke fundet" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "lig med" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "Brik nummer %2 blev ikke fundet" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logisk lig-med operator" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "opfrisk NXT" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ikke" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Søg efter en tilsluttet NXT-klods." -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logisk IKKE operator" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "og" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "angiv nuværende NXT-enhed" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logisk AND operator" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "antallet af NXT-enheder" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "eller" +#: taextras.py:374 +msgid "brick name" +msgstr "navn på brik" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logisk ELLER operator" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "Hent navnet på en brik." -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palette af flyde-operatorer" +#: taextras.py:376 +msgid "play tone" +msgstr "afspil tone" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "vent" +#: taextras.py:377 +msgid "frequency" +msgstr "frekvens" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "sætter programafviklingen på pause for et angivet antal sekunder" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "tid" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "for evigt" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Afspil en tone ved frekvens for tid." -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "kører i løkke for evigt" +#. TRANS: turn is the action +#: taextras.py:381 +msgid "" +"turn motor\n" +"\n" +msgstr "" +"drej motor\n" +"\n" + +#: taextras.py:382 +msgid "port" +msgstr "port" + +#: taextras.py:383 +msgid "power" +msgstr "kraft" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "rotationer" + +#: taextras.py:386 +msgid "turn a motor" +msgstr "drej en motor" + +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"synkronisér\n" +"\n" +"motorer" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "gentag" +#: taextras.py:388 +msgid "steering" +msgstr "styring" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "kører et angivet antal gange i løkke" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "synkronisér to motorer tilsluttet PORT B og PORT C" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "hvis" +#: taextras.py:390 +msgid "PORT A" +msgstr "PORT A" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "så" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "PORT A på klodsen" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "hvis så" +#: taextras.py:392 +msgid "PORT B" +msgstr "PORT B" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "hvis-så operator som anvender boolske operatorer fra Talpaletten" +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "PORT B på klodsen" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "ellers" +#: taextras.py:394 +msgid "PORT C" +msgstr "PORT C" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "hvis så ellers" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "PORT C på klodsen" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "if-så-ellers operator som anvender boolske operatorer fra Talpalette" +#: taextras.py:396 +msgid "" +"synchronize\n" +"motors" +msgstr "" +"synkronisér\n" +"motorer" + +#: taextras.py:397 +msgid "start motor" +msgstr "start motor" + +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "Kør en motor for evigt." + +#: taextras.py:399 +msgid "brake motor" +msgstr "brems motor" + +#: taextras.py:400 +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 +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "nulstil motor" + +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "Nulstil motorens tæller." + +#: taextras.py:404 +msgid "motor position" +msgstr "motorens placering" + +#: taextras.py:405 +msgid "Get the motor position." +msgstr "Hent motorens placering." + +#: taextras.py:406 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "PORT 1 på klodsen" + +#: taextras.py:408 +msgid "read" +msgstr "læs" + +#: taextras.py:409 +msgid "sensor" +msgstr "sensor" + +#: taextras.py:410 +msgid "Read sensor output." +msgstr "Læs uddata fra sensor." + +#: taextras.py:411 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "PORT 2 på klodsen" + +#: taextras.py:413 +msgid "light sensor" +msgstr "lys-sensor" + +#: taextras.py:414 +msgid "gray sensor" +msgstr "grå-sensor" + +#: taextras.py:415 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "PORT 3 på klodsen" + +#: taextras.py:417 +msgid "touch sensor" +msgstr "berør sensor" + +#: taextras.py:418 +msgid "distance sensor" +msgstr "afstandssensor" + +#: taextras.py:419 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:420 +msgid "PORT 4 of the brick" +msgstr "PORT 4 på klodsen" + +#: taextras.py:421 +msgid "sound sensor" +msgstr "lydsensor" + +#: taextras.py:422 +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) +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:425 +msgid "set light" +msgstr "angiv lys" + +#: taextras.py:426 +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 +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "batteri-niveau" + +#: taextras.py:429 +msgid "Get the battery level of the brick in millivolts" +msgstr "Indhent batteri-niveauet for brikken i millivolt" + +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "PBM" + +#: taextras.py:440 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "FEJL: Tjek Arduiono'en og nummeret på porten." + +#: taextras.py:442 +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:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "FEJL: Værdiskal vær enten HØJ eller LAV." + +#: taextras.py:444 +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:445 +msgid "refresh Arduino" +msgstr "genopfrisk Arduino" + +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "Søg efter tilsluttede Arduinoer." + +#: taextras.py:447 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "angiv nuværende Arduino-bræt" + +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "antallet af Arduinoer" + +#: taextras.py:450 +msgid "number of Arduino boards" +msgstr "antallet af Arduino-bræt" + +#: taextras.py:451 +msgid "Arduino name" +msgstr "Arduino-navn" + +#: taextras.py:452 +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. +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:455 +msgid "pin mode" +msgstr "pin-tilstand" + +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Vælg pin-funktionen (INPUT, OUTPUT, PBM, SERVO)." + +#: taextras.py:459 +msgid "analog write" +msgstr "analog skrivning" + +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "Skriv analog værdi i angivet port." + +#: taextras.py:462 +msgid "analog read" +msgstr "analog læsning" + +#: taextras.py:463 +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 "" +"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:465 +msgid "digital write" +msgstr "digital skrivning" + +#: taextras.py:466 +msgid "Write digital value to specified port." +msgstr "Værdi for digital skrivning for angivet port." + +#: taextras.py:467 +msgid "digital read" +msgstr "digital læsning" + +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "Læs værdi fra digital port." + +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "Sæt Arduino-port til digitalt input." + +#: taextras.py:471 +msgid "Configure Arduino port to drive a servo." +msgstr "Angiv Arduino-port for at køre en servo." + +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "Sæt Arduino-port til digitalt output." + +#: taextras.py:474 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Sæt Arduino-port til PBM (pulsbreddemodulation)." + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +msgid "Palette of Expeyes blocks" +msgstr "Palette af Expeyes-blokke" + +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" +msgstr "angiv PVS" + +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "angiv programmerbar udgangseffekt på spænding" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "angiv SQR1-spænding" + +#: taextras.py:485 +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:487 +msgid "set SQR2 voltage" +msgstr "angiv SQR2-spænding" + +#: taextras.py:488 +msgid "set square wave 2 voltage output" +msgstr "angiv udgangseffekt på spænding for firkantet kurve 2" + +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "angiv OD1" + +#: taextras.py:491 +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:493 +msgid "IN1 level" +msgstr "IN1-niveau" + +#: taextras.py:494 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" +"returnerer 1 når IN1-spændingsniveau >2.5 volt, 0 når IN1-spændingsniveau <= " +"2.5 volt" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "vandret afstand" +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "IN2-niveau" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "jogger stak til højre" +#: taextras.py:498 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" +"returnerer 1 når IN2-spændingsniveau >2.5 volt, 0 når IN2-spændingsniveau <= " +"2.5 volt" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "lodret afstand" +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "SEN-niveau" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "jogger stak ned" +#: taextras.py:502 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" +"returnerer 1 når spændingssensor (SEN) >2.5 volt, 0 når SEN-spændingsensor " +"<= 2.5 volt" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "stop handling" +#: taextras.py:504 +msgid "capture" +msgstr "indfang" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "stopper nuværende handling" +#: taextras.py:505 +msgid "input" +msgstr "input" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palette med forskellige blokke" +#: taextras.py:506 +msgid "samples" +msgstr "stikprøver" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" +#: taextras.py:507 +msgid "interval" +msgstr "interval" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "forbinder handling til knapper på værktøjsbjælke" +#. TRANS: MS is microseconds +#: taextras.py:509 +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:512 +msgid "A1" +msgstr "A1" + +#: taextras.py:513 +msgid "read analog input 1 voltage" +msgstr "læs spænding for analog input 1" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "A2" + +#: taextras.py:516 +msgid "read analog input 2 voltage" +msgstr "læs spænding for analog input 2" + +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "læs spænding fra input 1" + +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "læs spænding fra input 2" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:525 +msgid "read analog sensor input voltage" +msgstr "læs input-spænding fra analog sensor" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:528 +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:530 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "læs spænding for firkantet bølge 2" + +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "læs programmérbar spænding" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "Fandt ikke Expeyes-enhed" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "tekst" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "fortsætter afspilning af video eller lyd" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "streng-værdi" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Titel" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "handling" +#: 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 "Gennemsnitlig RGB-farve fra kamera skubbes tilbage til stakken" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "top af handlingsstak som kan navngives" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "gul" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "påberåber navngiven handlingsstak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "fremviser polære koordinater" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "gem i boks 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "tømmer FILO (først-ind-sidst-ud dynge)" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "gemmer numerisk værdi i Variabel 1" +#: 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 "kamera-output" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "gem i boks 2" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "skub acceleration i x, y, z til hób/heap" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "gemmer numerisk værdi i Variabel 2" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "hvis-så operator som anvender boolske operatorer fra Talpaletten" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "boks 1" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "jogger stak til højre" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variabel 1 (numerisk værdi)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Journal medie-objekt" #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "boks 2" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variabel 2 (numerisk værdi)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "gem i" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "boks 1" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "boks" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Trin" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "værdi" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplicerer to numeriske input" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "min boks" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Vis/skjul blokke" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "lagrer numerisk værdi i en navngivet variabel" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Skjul palette" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "navngiven variabel (numerisk værdi)" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Venner" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "handling 1" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Min Skildpadde-kunstsession" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "top af Handling 1 stak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar Journal videoobjekt" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "handling 2" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyan" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "top af Handling 2 stak" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"En skildpasse inspireret af Logo, der tegner farverige billeder med " +"visuelle, programmérbare blokke som kan sammensættes." -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "kalder Handling 1 stak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "x-kor for højreside af skærm" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "kalder Handling 2 stak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Palette af ekstra valgmuligheder" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "papirkurv" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Indlæs eksempel" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "tøm papirkurv" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "flyt alle blokke til papirkurv" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "sletter elementer i papirkurv permanent" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "liste" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "genskab alle" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Der kan ikke skrives til konfigurationskatalog: %s" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "genskab alle blokke fra papirkurv" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "fortsæt medie" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "ryd alt" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "bevæger sig mod" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "flyt alle blokke til papirkurv" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Deling af blokke er slået fra" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Del valgte blokke" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "gemmer skildpadde-grafik som en SVG-fil i Sugar Journal" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Titel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "tegner tekst eller viser medie fra Journal" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Stop skildpadde" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Vis blokke" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "video" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Skjul blokke" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blå" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "gav ikke uddata til" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "fremviser kartesiske koordinator" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Jeg ved ikke hvordan" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Ingen handling for valgmulighed:" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "kan ikke lide" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "jogger stak ned" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "som inddata" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modulær (rest) operator" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "viser næste palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "nederste y" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "ændrer retningen for paletten af blokke" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "gem SVG" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Indlæs..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +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/tautils.py:206 -msgid "Save..." -msgstr "Gem..." +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pen nede" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "klik for at åbne" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "vent" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "retning" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "boks" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "næste" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Mislykkedes med at lægge op!" #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" msgstr "skift" -#: TurtleArt/tawindow.py:1256 -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/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Vælg blokke som skal deles" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Skildpadde-kunst" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "billede" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Gem som Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Gem som billede" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "øjebliksbillede" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "påberåber navngiven handlingsstak" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Gem øjebliksbillede" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "handling" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Slå svæve-hjælp fra" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"forsæt-indtil-Sand operator som anvender boolske operatorer fra Talpalette" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Slå svæve-hjælp til" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "forbrug er" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Vis palette" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variabel 2 (numerisk værdi)" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Skjul palette" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "dividér" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Gentag nedskalering af koordinater" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "billedenavn" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Gentag opskalering af koordinater" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "mens" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Redigér" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "bredden på lærred" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Vis" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "tom hób?" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projekt" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "navngiven variabel (numerisk værdi)" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Gem/Indlæs" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "næste" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopiér" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "hvis så" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Indsæt" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "indstil størrelse på pen" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Genskab blokke fra papirkurv" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "skabelon for præsentation: vælg Journal-objekt (ingen beskrivelse)" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Fuldskærm" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "indtil" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Cartesianske koordinater" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "medie-stop" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Polære koordinater" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Slå svæve-hjælp til" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Metriske koordinater" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "sletter elementer i papirkurv permanent" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Øg blokke" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "u-vending" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Mindsk blokke" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "top af Handling 1 stak" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Indlæs eksempel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"en blok som kan programmeres: anvendes til at føje avancerede matematiske " +"ligninger med en enkelt variabel, f.eks., sin(x)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Rens" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palette af flyde-operatorer" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Kør" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "top af sammenfoldet stak" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Trin" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "if-så-ellers operator som anvender boolske operatorer fra Talpalette" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Hjælp" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "returnerer musens y-koordinat" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stop" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "holder aktuel skygge for pen" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Indlæs projekt" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinusbølge" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Indlæs udvidelsesmodul" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Log ind mislykkedes" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Indlæs Python-blok" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "venstre x" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "Paletter" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "indstil retning" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Deling af blokke er slået fra" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "RGB-farve under skildpadden er skubbet over til stakken" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "gør lærred overskueligt ved at skjule blokke" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Udvidelsesmodulet kunne ikke installeres." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "" -"Genstart venligst Skildpadde-kunst for at gøre brug af udvidelsesmodulet." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Udvidelsesmodulet %s er allerede installeret." - -#: TurtleArtActivity.py:1136 -#, python-format -#, python-format, -msgid "Do you want to reinstall %s?" -msgstr "Ønsker du at geninstallere %s?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Min Skildpadde-kunstsession" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Aktivér samarbejde" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Aktiviteter" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Venner" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Del" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Konfiguration" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Nabolag" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Kaldenavn" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Konto-ID" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Server" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Adgangskode" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python chr-operator" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Registrér" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "vandret afstand" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Farver" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Metriske koordinater" -#: 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 "Overfør" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "streng-værdi" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Opslag på Facebook" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "beskrivelse" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Send til nettet" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Jeg ved ikke hvordan" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"Du skal have en konto på http://turtleartsite.sugarlabs.org for at kunne " -"sende dit projekt." +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "indstil tekststørrelse" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "Brugernavn:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Adgangskode:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Titel:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Beskrivelse:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Indsend til nettet" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "starter fyldt polygon (anvendes med slut på fyld af blok)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Annullér" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "skabelon for præsentation: vælg fire Journal-objekter" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Log ind mislykkedes" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Vis" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Mislykkedes med at lægge op!" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "sætter niveauet af gråtone for linjen som tegnes af skildpadden" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palette af sensor-blokke" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Adgangskode:" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "acceleration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "skildpadden ser" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "skub acceleration i x, y, z til hób/heap" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "stop handling" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "lyd" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "grøn" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "råt signal fra mikrofon-input" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "skygge" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "lydstyrke" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "udfylder baggrunden med (farve, skygge)" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "lydstyrke for mikrofon-indgang" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "gem billede" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1152,429 +2316,252 @@ msgstr "lydstyrke for mikrofon-indgang" msgid "pitch" msgstr "tone" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "tonehøjde for mikrofonindgang" - -#: 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" - -#: 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 "modstand på mikrofon-input" - -#: 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" - -#: 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 "spænding på mikrofon-indgang" - -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palette af medieobjekter" - -#: 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 "lysstyrke" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "lysniveau opfanget af kamera" - -#: 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 "Gennemsnitlig RGB-farve fra kamera skubbes tilbage til stakken" - -#: 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 "kamera-output" - -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "lysniveau registreret af lyssensor" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "læs værdi fra RFID-enhed" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "mens" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "gør-mens-Sand operator som anvendes boolske operatorer fra Talpalette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "indtil" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"forsæt-indtil-Sand operator som anvender boolske operatorer fra Talpalette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "top" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "toppen af sammenfoldelig stak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "returnerer 1 hvis museknap er trykket" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "journal" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Gentag opskalering af koordinater" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Journal medie-objekt" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pen oppe" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "lyd" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "orange" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Journal lydobjekt" +#: TurtleArt/tabasics.py:747 +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:163 -msgid "video" -msgstr "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "skubber værdi op på FILO (først-in sidst-ud dynge)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar Journal videoobjekt" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "ryd alt" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "beskrivelse" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "så" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Beskrivelsesfelt for Sugar Journal" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Registrér" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "vis" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ikke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "tegner tekst eller viser medie fra Journal" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "hvis så ellers" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "vis sammenstillet" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "stopper nuværende handling" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "indstil skalering" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "drejer skildpadde med uret (vinkel i grader)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "sætter skaleringen af medie" +#: TurtleArt/tabasics.py:368 +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:245 -msgid "save picture" -msgstr "gem billede" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xkor for venstre del af skærmen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "billedenavn" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Nulstil blokstørrelse" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "gemmer et billede til Sugar Journal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "skildpadde" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "gem SVG" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "viser næste palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -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:772 +msgid "hide blocks" +msgstr "skjul blokke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "skalér" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "lysniveau opfanget af kamera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "holder aktuel skaleringsværdi" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python int-operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "medie vent" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logisk mindre-end operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "vent på at aktuel video eller lyd afslutter" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "genskab alle blokke fra papirkurv" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "medie-stop" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Gem" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "stop video eller lyd" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "gem i boks 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "medie-pause" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "gem i boks 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "sæt video eller lyd på pause" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "skjuler Sugar-værktøjsbjælkerne" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "fortsæt medie" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"holder aktuel x-koordinat-værdi for skildpadden (kan anvendes i stedet for " +"en talblok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "fortsætter afspilning af video eller lyd" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "udskriv" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "tal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "returnerer musens x-koordinat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "hej" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "rød" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "læser tekst op" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Gem som Logo" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinusbølge" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "sætter farve for linjen som tegnes af skildpadden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "amplitude" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "indstil tekstfarve" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "varighed" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "lydstyrke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "afspiller en sinusbølge ved frekvens, dybde og varighed (i sekunder)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Aktivér samarbejde" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "knap ned" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palette af sensor-blokke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "returnerer 1 hvis museknap er trykket" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Indlæs udvidelsesmodul" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "returnerer Sand, hvis der trykkes på museknap" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "mus x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "returnerer musens x-koordinat" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "mus y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "returnerer musens y-koordinat" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "tal" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "forespørg tastatur" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -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:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "top" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "tastatur" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Indsend til nettet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "holder resultater for forespørgsels-tastaturblok som ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Cartesianske koordinater" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "læser billedpunkt" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Kaldenavn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -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:234 +msgid "set scale" +msgstr "indstil skalering" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "skildpadden ser" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Del valgte blokke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "returnerer farven som skildpadden \"ser\"" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "hvid" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "tid" +#: TurtleArt/tabasics.py:846 +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:448 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:457 -msgid "Palette of extra options" -msgstr "Palette af ekstra valgmuligheder" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "skub" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "skubber værdi op på FILO (først-in sidst-ud dynge)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "vis hób" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "viser værdier i FILO (først-ind sidst-ud dynge)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "tom hób" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "tømmer FILO (først-ind-sidst-ud dynge)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "pop" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "fjerner en værdi fra FILO (først-in sidst-ud hób)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "tom hób?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "returnerer Sand hvis hób er tom" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "kommentar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "placerer en kommentar i din kode" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "udskriv" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplitude" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "udskriver værdi i statusblok i bunden af skærmen" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Annullér" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python chr-operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "højde på lærred" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python int-operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "præsentation 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "minus" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -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:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "og" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"en blok som kan programmeres: anvendes til at føje avancerede matematiske " -"ligninger med flere variabler, f.eks., sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "toppen af sammenfoldelig stak" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"en blok som kan programmeres: anvendes til at føje avancerede matematiske " -"ligninger med flere variabler, f.eks., sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "som inddata" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1582,56 +2569,26 @@ msgstr "" msgid "Python block" msgstr "Python-blok" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -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" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Kartesisk" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "fremviser kartesiske koordinator" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polær" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "fremviser polære koordinater" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "skildpadde" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "vælger skildpadden som skal kommanderes" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "medie vent" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "skildpaddeskjold" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "acceleration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "putter et brugerdefineret 'skjold' på skildpadden" +#: TurtleArt/tabasics.py:427 +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)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "top af sammenfoldet stak" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "indstil farve" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "indlæs" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1639,70 +2596,67 @@ msgstr "indlæs" msgid "loads a block" msgstr "indlæser en blok" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "angiv xy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palette af kommandoer for pen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "palet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "viser værdier i FILO (først-ind sidst-ud dynge)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "vælger en palet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "gør-mens-Sand operator som anvendes boolske operatorer fra Talpalette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palette af skabeloner for præsentation" +#: turtleblocks.py:363 +msgid "File" +msgstr "Fil" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "skjul blokke" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logisk IKKE operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "gør lærred overskueligt ved at skjule blokke" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ykor for bunden af skærm" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "vis blokke" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "skabelon for præsentation: vælg Journal-objekt (med beskrivelse)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "genskaber skjulte blokke" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palette af numeriske operatorer" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "skjuler Sugar-værktøjsbjælkerne" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "gange" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "liste" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "for evigt" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "punktopstilling i præsentation" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Udvidelsesmodulet %s er allerede installeret." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "skabelon for præsentation: liste med former for punktopstilling" +#: TurtleArt/tabasics.py:329 +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:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "skabelon for præsentation: vælg Journal-objekt (ingen beskrivelse)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "læser tekst op" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "skabelon for præsentation: vælg Journal-objekt (med beskrivelse)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "øjebliksbillede" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "skabelon for præsentation: vælg fire Journal-objekter" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "rens" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1711,1015 +2665,1081 @@ msgstr "skabelon for præsentation: vælg fire Journal-objekter" msgid "presentation template: select two Journal objects" msgstr "skabelon for præsentation: vælg to Journal-objekter" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xkor for venstre del af skærmen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "bund" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ykor for bunden af skærm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "bredde" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "bredden på lærred" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "x-kor for højreside af skærm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ykor for toppen af skærm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "højde" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "højde på lærred" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "titel x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "titel y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "venstre x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "øverste y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "højre x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Øg blokke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "nederste y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Fuldskærm" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "præsentation 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Fil blev ikke fundet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "præsentation 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "vis" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "præsentation 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "tekst" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "præsentation 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "tilfældig" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Installér venligst Tale-aktiviteten og prøv igen." +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logisk større-end operator" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Spansk" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "drejer skildpadde mod uret (vinkel i grader)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "Engelsk" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "sort" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Beklager, jeg kan ikke forstå hvad du spørger om." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "beregner kvadratrod" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Beklager, der er ikke fri hukommelse til at indlæse min hjerne. Luk en andre " -"aktiviteter og prøv én gang til." +"holder aktuel y-koordinat-værdi for skildpadde (kan anvendes i stedet for en " +"talblok)" -#: pysamples/forward_push.py:45 -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:358 +msgid "mouse x" +msgstr "mus x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "mus y" #: pysamples/grecord.py:215 msgid "stop" msgstr "stop" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "spil" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "gem" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "andet" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "u-vending" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "lav en u-vending" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "forbrug er" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Ingen handling for valgmulighed:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Fil blev ikke fundet" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Der kan ikke skrives til konfigurationskatalog: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Ny" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Åbn" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Gem" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Gem som" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Afslut" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Fil" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Genskalér koordinater" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Nulstil blokstørrelse" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Vis/skjul blokke" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Værktøjer" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Fejlsøg" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Skildpadde" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "større end" -#: turtleblocks.py:407 -msgid "About..." -msgstr "Om ..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x-kor" -#: turtleblocks.py:447 -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?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Hjælp" #: turtleblocks.py:448 msgid "Save project?" msgstr "Gem projekt?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Skildpadde-kunst mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "Skildpadde-forvirring" - -#~ msgid "Select a challenge" -#~ msgstr "Vælg en udfordring" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palet af mexicanske pesos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palet af columbianske pesos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palet af Rwanda-franc" - -#~ msgid "Palette of US dollars" -#~ msgstr "Palet af amerikanske dollar" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Palet af australske dollar" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Palet af paraguayanske guaranies" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "vælger skildpadden som skal kommanderes" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Palet af peruvianske nuevo soles" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "højre x" -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Palet af uruguayanske pesos" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "sætter farve for tekst som tegnes af skildpadden" -#~ msgid "TurtleBots" -#~ msgstr "Skildpadde-robotter" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "lysniveau registreret af lyssensor" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "justér LED-intensitet mellem 0 og 255" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Udvidelsesmodulet kunne ikke installeres." -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "returnerer objektets gråniveau som et tal mellem 0 og 1023" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "tastatur" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "returnerer 1 når knappen trykkes og hvis ikke 0" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "returnerer det omgivende lysniveau som et tal mellem 0 o 1023" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radius" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "returnerer den omgivende temperatur som et tal mellem 0 og 255" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Polære koordinater" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "returnerer distancen fra objektet foran sensoren som et tal mellem 0 og 255" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "indstil skygge" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "returnerer 0 eller 1 afhængig af sensorens vinkel" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logisk AND operator" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "returnerer 1 når sensoren registrerer et magnetfelt, hvis ikke 0" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Du skal have en konto på http://turtleartsite.sugarlabs.org for at kunne " +"sende dit projekt." -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "skifter fra 0 til 1, frekvensen afhænger af vibrationen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "palet" -#~ msgid "LED" -#~ msgstr "LED" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Kør" -#~ msgid "button" -#~ msgstr "knap" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "vis hób" -#~ msgid "grayscale" -#~ msgstr "gråskala" +#: TurtleArt/tabasics.py:217 +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.)" -#~ msgid "ambient light" -#~ msgstr "omgivende lys" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "vælger en palet" -#~ msgid "temperature" -#~ msgstr "temperatur" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "lydstyrke for mikrofon-indgang" -#~ msgid "distance" -#~ msgstr "distance" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Titel:" -#~ msgid "tilt" -#~ msgstr "vip" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palette af medieobjekter" -#~ msgid "magnetic induction" -#~ msgstr "magnetisk induktion" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Genskab blokke fra papirkurv" -#~ msgid "vibration" -#~ msgstr "vibration" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palette med forskellige blokke" -#~ msgid "Butia Robot" -#~ msgstr "Butia-robot" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "anvendes som numerisk input i matematiske operatorer" -#~ msgid "refresh Butia" -#~ msgstr "opfrisk Butia" +#: 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 "Overfør" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "opfrisk tilstanden for Butia-paletten og blokkene" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Server" -#~ msgid "battery charge Butia" -#~ msgstr "Butia batteriopladning" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "præsentation 2x2" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "returnerer batteriopladningen som et tal mellem 0 og 255" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variabel 1 (numerisk værdi)" -#~ msgid "speed Butia" -#~ msgstr "Butia hastighed" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Nabolag" -#~ msgid "forward Butia" -#~ msgstr "ryk Butia frem" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "tilføjer to alfanumeriske input" -#~ msgid "move the Butia robot forward" -#~ msgstr "flyt Butia-robotten fremad" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "lig med" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "flyt Butia-robotten fremad med en forudbestemt distance" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "ellers" -#~ msgid "left Butia" -#~ msgstr "Butia til venstre" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "kan ikke lide" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "drej Butia-robotten mod højre" +#: turtleblocks.py:447 +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?" -#~ msgid "backward Butia" -#~ msgstr "ryk Butia tilbage" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "genskaber skjulte blokke" -#~ msgid "move the Butia robot backward" -#~ msgstr "flyt Butia-robotten tilbage" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "indlæs" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "flyt Butia-robotten bagud med en forudbestemt distance" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "stop video eller lyd" -#~ msgid "right Butia" -#~ msgstr "Butia til højre" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Skildpadde vil ikke tegne når den flyttes." -#~ msgid "turn the Butia robot at right" -#~ msgstr "drej Butia-robotten mod højre" +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "pop" -#~ msgid "turn Butia" -#~ msgstr "drej Butia" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "størrelse pen" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "drej Butia-robotten x grader" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "skildpaddeskjold" -#~ msgid "stop Butia" -#~ msgstr "stop Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "afspiller en sinusbølge ved frekvens, dybde og varighed (i sekunder)" -#~ msgid "stop the Butia robot" -#~ msgstr "stop Butia-robotten" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "Butia" -#~ msgstr "Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "tal" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Fejl under initialisering af kameraet" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "læs værdi fra RFID-enhed" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Der blev ikke fundet et kamera" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "flytter skildpadden langs en arc" -#~ msgid "Error stopping camera" -#~ msgstr "Fejl under standsning af kamera" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "lav en u-vending" -#~ msgid "Error starting camera" -#~ msgstr "Fejl under start af kamera" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logisk lig-med operator" -#~ msgid "FollowMe" -#~ msgstr "FølgMig" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palette af farver for pen" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Søg efter en tilsluttet NXT-klods." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "sæt video eller lyd på pause" -#~ msgid "calibration" -#~ msgstr "kalibrering" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "gemmer numerisk værdi i Variabel 1" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "gemmer en personaliseret kalibrering" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "gemmer numerisk værdi i Variabel 2" -#~ msgid "return a personalized calibration" -#~ msgstr "returnér en personaliseret kalibrering" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "putter et brugerdefineret 'skjold' på skildpadden" -#~ msgid "follow" -#~ msgstr "følg" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "knap ned" -#~ msgid "follow a color or calibration" -#~ msgstr "følg en farve eller en kalibrering" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "flytter skildpadden baglæns" -#~ msgid "minimum pixels" -#~ msgstr "mindste antal billedpunkter" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ykor for toppen af skærm" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "angiv det mindste antal billedpunkter som skal følges" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Vis blokke" -#~ msgid "threshold" -#~ msgstr "tærskelværdi" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "spil" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "angiv en grænse for en RGB-farve" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "gem" -#~ msgid "camera mode" -#~ msgstr "kamera-tilstand" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Farver" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "angiver farvetilstanden for kameraet: RGB, YUV eller HSV" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "sætter størrelse på linjen som tegnes af skildpadden" -#~ msgid "x position" -#~ msgstr "x-position" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Åbn" -#~ msgid "return x position" -#~ msgstr "returnerer x-position" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "retning" -#~ msgid "y position" -#~ msgstr "y-position" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y-kor" -#~ msgid "return y position" -#~ msgstr "returnerer y-position" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"en blok som kan programmeres: anvendes til at føje avancerede matematiske " +"ligninger med flere variabler, f.eks., sqrt(x*x+y*y)" -#~ msgid "pixels" -#~ msgstr "billedpunkter" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "hvis" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "returnér antallet af billedpunkter for den største klat" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +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." -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "angiver at farvetilstanden for kameraet er RGB" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "angiver at farvetilstanden for kameraet er YUV" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stop" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "angiver at farvetilstanden for kameraet er HSV" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "handling 2" -#~ msgid "empty calibration" -#~ msgstr "tøm kalibrering" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "handling 1" -#~ msgid "error in string conversion" -#~ msgstr "fejl i konvertering af streng" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "slut udfyld" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopiér" -#~ msgid "speed SumBot" -#~ msgstr "SumBot hastighed" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Indsæt" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "send hastigheden til SumBotten" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "gav ikke uddata til" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "angiv standard for hastigheden på flytte-kommandoer" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Aktiviteter" -#~ msgid "forward SumBot" -#~ msgstr "ryk SumBot frem" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Send til nettet" -#~ msgid "move SumBot forward" -#~ msgstr "flyt SumBot frem" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "tom hób" -#~ msgid "backward SumBot" -#~ msgstr "ryk SumBot tilbage" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "fjerner en værdi fra FILO (først-in sidst-ud hób)" -#~ msgid "move SumBot backward" -#~ msgstr "flyt SumBot tilbage" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Rens" -#~ msgid "stop SumBot" -#~ msgstr "stop SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palette af skabeloner for præsentation" -#~ msgid "stop the SumBot" -#~ msgstr "stop SumBotten" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "vinkel" -#~ msgid "left SumBot" -#~ msgstr "SumBot til venstre" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identitet" -#~ msgid "turn left the SumBot" -#~ msgstr "drej Sumbotten til venstre" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Gem/Indlæs" -#~ msgid "right SumBot" -#~ msgstr "SumBot til højre" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "øverste y" -#~ msgid "turn right the SumBot" -#~ msgstr "drej SumBotten til højre" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "lyd" -#~ msgid "angle to center" -#~ msgstr "vinkel til centrum" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Værktøjer" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "hent vinklen til dohyoens centrum" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "angle to Enemy" -#~ msgstr "vinkel en fjende" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "kommentar" -#~ msgid "get the angle to the Enemy" -#~ msgstr "hent vinklen til fjenden" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "fratrækker nederste numeriske input fra øverste numeriske input" -#~ msgid "x coor. SumBot" -#~ msgstr "x-koord. SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "medie-pause" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "hent x-koordinatet for SumBotten" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "skub målværdi for rgb til hób" -#~ msgid "y coor. SumBot" -#~ msgstr "y-koord. SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "forespørger tastatur-input (resultater lagres i tastatur-blok)" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "hent y-koordinatet for SumBotten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Kartesisk" -#~ msgid "x coor. Enemy" -#~ msgstr "x-koord. fjende" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "rydder skærmen og nulstiller skildpadden" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "hent x-koordinatet for fjenden" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "råt signal fra mikrofon-input" -#~ msgid "y coor. Enemy" -#~ msgstr "y-koord. fjende" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "returnerer farven som skildpadden \"ser\"" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "hent y-koordinatet for fjenden" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "kalder Handling 1 stak" -#~ msgid "rotation SumBot" -#~ msgstr "rotation for SumBot" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palette af kommandoer for skildpadde" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "hent rotationen for SumBotten" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "kører i løkke for evigt" -#~ msgid "rotation Enemy" -#~ msgstr "rotation for fjende" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "vis sammenstillet" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "hent rotationen for fjenden" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Ønsker du at geninstallere %s?" -#~ msgid "distance to center" -#~ msgstr "afstand til centrum" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Indlæs projekt" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "hent afstanden til dohyoens centrum" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projekt" -#~ msgid "distance to Enemy" -#~ msgstr "afstand til fjende" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Fejlsøg" -#~ msgid "get the distance to the Enemy" -#~ msgstr "hent afstanden til fjenden" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Slå svæve-hjælp fra" -#~ msgid "update information" -#~ msgstr "opdatér information" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "update information from the server" -#~ msgstr "opdatér information fra serveren" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Adgangskode" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palette af fysik-blokke" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "lodret afstand" -#~ msgid "start polygon" -#~ msgstr "start polygon" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" +"Genstart venligst Skildpadde-kunst for at gøre brug af udvidelsesmodulet." -#~ 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." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "fuldfører udfyldt polygon (anvendes med start fyld blok)" -#~ msgid "add point" -#~ msgstr "tilføj punkt" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Del" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Tilføj et nyt punkt til den nuværende polygon baseret på den nuværende xy-" -#~ "position for skildpadde." +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "mindre end" -#~ msgid "end polygon" -#~ msgstr "afslut polygon" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "kvadratrod" -#~ msgid "Define a new polygon." -#~ msgstr "Definér en ny polygon." +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Genskalér koordinater" -#~ msgid "end filled polygon" -#~ msgstr "afslut udfyldt polygon" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "vis blokke" -#~ msgid "Not a simple polygon" -#~ msgstr "Ikke en simpel polygon" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Afslut" -#~ msgid "Define a new filled polygon." -#~ msgstr "Definér en ny udfyldt polygon." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Beskrivelsesfelt for Sugar Journal" -#~ msgid "triangle" -#~ msgstr "trekant" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "sætter grå" -#~ msgid "base" -#~ msgstr "base" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "punktopstilling i præsentation" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Tilføj et trekantsobjekt til projektet." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "varighed" -#~ msgid "circle" -#~ msgstr "cirkel" +#: turtleblocks.py:354 +msgid "New" +msgstr "Ny" -#~ msgid "Add a circle object to the project." -#~ msgstr "Tilføj et cirkelobjekt til projektet." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "placerer en kommentar i din kode" -#~ msgid "rectangle" -#~ msgstr "rektangel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "læser billedpunkt" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Tilføj et rektangelobjekt til projektet." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "skalér" -#~ msgid "reset" -#~ msgstr "nulstil" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "bund" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Nulstil projektet; ryd objektlisten." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "lilla" -#~ msgid "motor" -#~ msgstr "motor" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Gentag nedskalering af koordinater" -#~ msgid "torque" -#~ msgstr "drejningsmoment" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "klik for at åbne" -#~ msgid "speed" -#~ msgstr "hastighed" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "tonehøjde for mikrofonindgang" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Drejningsmoment på motor og hastighedsinterval fra 0 (fra) til positive tal; " -#~ "motor placeres på det objekt som allersenest er oprettet." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Konfiguration" -#~ msgid "pin" -#~ msgstr "fastgør" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Beskrivelse:" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Fastgør et objekt nede, så det ikke kan falde." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "journal" -#~ msgid "joint" -#~ msgstr "sammensæt" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "tøm papirkurv" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Sammensæt to objekter (de allersenest oprettede objekt og objektet ved " -#~ "punktet x, y)." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Skildpadde vil tegne når den flyttes." -#~ msgid "save as Physics activity" -#~ msgstr "gem som Fysik-aktivitet" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Indlæs..." -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Gem projektet til Journalen som en fysik-aktivitet." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Journal lydobjekt" -#~ msgid "gear" -#~ msgstr "gear" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Stop skildpadde" -#~ msgid "Add a gear object to the project." -#~ msgstr "Tilføj et gear-objekt til projektet." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Skildpadde" -#~ msgid "density" -#~ msgstr "tæthed" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "ændrer retningen for paletten af blokke" -#~ 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)." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "gem i" -#~ msgid "friction" -#~ msgstr "friktion" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Skjul blokke" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Angiv friktionsegenskaben for objekter (værdi fra 0 til 1, hvor 0 slår " -#~ "friktion fra og 1 er stærk friktion)." +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Indlæs Python-blok" -#~ msgid "bounciness" -#~ msgstr "fjedringsgrad" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Angiv fjedringsgraden for objekter (en værdi fra 0 til 1, hvor 0 betyder " -#~ "ingen fjedring og 1 er stærk fjedring)." +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "eller" -#~ msgid "dynamic" -#~ msgstr "dynamisk" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "skabelon for præsentation: liste med former for punktopstilling" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Hvis dynamisk = 1, så kan objektet flytte sig; hvis dynamisk = 0, så er det " -#~ "fikseret i position." +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identitetsoperator til brug for udvidelse af blokke" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palette af WeDo-blokke" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Mindsk blokke" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "hældningssensor output (-1 == ingen hældning, 0 == hæld fremad, 3 == hæld " -#~ "tilbage, 1 == hæld til venstre, 2 == hæld til højre)" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "sætter størrelse for tekst tegnet af skildpadden" -#~ msgid "distance sensor output" -#~ msgstr "afstandssensor output" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"holder aktuel hovedværdi for skildpadde (kan anvendes i stedet for en " +"talblok)" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "billede" -#~ msgid "returns the current value of Motor A" -#~ msgstr "returnerer nuværende værdi fra Motor A" +#: TurtleArt/tabasics.py:650 +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)" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: TurtleArt/tabasics.py:349 +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)" -#~ msgid "returns the current value of Motor B" -#~ msgstr "returnerer nuværende værdi fra Motor B" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Vis palette" -#~ msgid "set the value for Motor A" -#~ msgstr "angiv værdien for Motor A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "gemmer et billede til Sugar Journal" -#~ msgid "set the value for Motor B" -#~ msgstr "angiv værdien for Motor B" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Gem øjebliksbillede" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palet med motorer bestående af LEGO NXT-blokke" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palet med sensorer bestående af LEGO NXT-blokke" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "returnerer Sand hvis hób er tom" -#~ msgid "touch" -#~ msgstr "berør" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "flyt skildpadde fremad" -#~ msgid "ultrasonic" -#~ msgstr "ultrasonisk" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "fremad" -#~ msgid "light" -#~ msgstr "lys" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "min boks" -#, fuzzy -#~ msgid "grey" -#~ msgstr "grå" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Konto-ID" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Tjek venligst forbindelsen til klodsen." +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Vælg blokke som skal deles" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "Værdien af kraften skal være mellem -127 til 127." +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "tilbage" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "En fejl er opstået: tjek alle forbindelser og forsøg at tilslutte igen." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "sætter skaleringen af medie" -#~ msgid "NXT not found" -#~ msgstr "NXT ikke fundet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "holder aktuel skaleringsværdi" -#~ msgid "refresh NXT" -#~ msgstr "opfrisk NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "præsentation 1x1" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Søg efter en tilsluttet NXT-klods." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "præsentation 1x2" -#~ msgid "play tone" -#~ msgstr "afspil tone" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "top af handlingsstak som kan navngives" -#~ msgid "frequency" -#~ msgstr "frekvens" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "lagrer numerisk værdi i en navngivet variabel" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Afspil en tone ved frekvens for tid." +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logisk ELLER operator" -#~ msgid "port" -#~ msgstr "port" +#: 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 "spænding på mikrofon-indgang" -#~ msgid "power" -#~ msgstr "kraft" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "kører et angivet antal gange i løkke" -#~ msgid "rotations" -#~ msgstr "rotationer" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Gem..." -#~ msgid "turn a motor" -#~ msgstr "drej en motor" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "kalder Handling 2 stak" -#, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "synkronisér to motorer" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "angiv xy" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "synkronisér to motorer tilsluttet PORT B og PORT C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "titel y" -#~ msgid "PORT A" -#~ msgstr "PORT A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "titel x" -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A på klodsen" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "fyld skærm" -#~ msgid "PORT B" -#~ msgstr "PORT B" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "andet" -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B på klodsen" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Gem som" -#~ msgid "PORT C" -#~ msgstr "PORT C" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "indstil xy" -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C på klodsen" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "papirkurv" -#~ msgid "start motor" -#~ msgstr "start motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polær" -#~ msgid "Run a motor forever." -#~ msgstr "Kør en motor for evigt." +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "gentag" -#~ msgid "brake motor" -#~ msgstr "brems motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "vent på at aktuel video eller lyd afslutter" -#~ msgid "Stop a specified motor." -#~ msgstr "Stop en angivet motor." +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Gem som billede" -#~ msgid "reset motor" -#~ msgstr "nulstil motor" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Redigér" -#~ msgid "Reset the motor counter." -#~ msgstr "Nulstil motorens tæller." +#: 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 "modstand på mikrofon-input" -#~ msgid "motor position" -#~ msgstr "motorens placering" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "top af Handling 2 stak" -#~ msgid "Get the motor position." -#~ msgstr "Hent motorens placering." +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"dividerer øverste numerisk input (nævner) med nederste numeriske input " +"(tæller)" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 på klodsen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "udskriver værdi i statusblok i bunden af skærmen" -#~ msgid "read" -#~ msgstr "læs" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "start udfyldning" -#~ msgid "sensor" -#~ msgstr "sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "holder resultater for forespørgsels-tastaturblok som ASCII" -#~ msgid "Read sensor output." -#~ msgstr "Læs uddata fra sensor." +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# da.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "skub" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"en blok som kan programmeres: anvendes til at føje avancerede matematiske " +"ligninger med flere variabler, f.eks., sin(x+y+z)" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 på klodsen" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "genskab alle" -#~ msgid "light sensor" -#~ msgstr "lys-sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "hej" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "Skildpadde-blokke" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 på klodsen" +#: TurtleArt/tawindow.py:1256 +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" -#~ msgid "touch sensor" -#~ msgstr "berør sensor" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "Paletter" -#~ msgid "distance sensor" -#~ msgstr "afstandssensor" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Opslag på Facebook" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Installér venligst Tale-aktiviteten og prøv igen." -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 på klodsen" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Spansk" -#~ msgid "sound sensor" -#~ msgstr "lydsensor" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "Engelsk" -#~ msgid "color sensor" -#~ msgstr "farve-sensor" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Beklager, jeg kan ikke forstå hvad du spørger om." -#~ msgid "set light" -#~ msgstr "angiv lys" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" +"Beklager, der er ikke fri hukommelse til at indlæse min hjerne. Luk en andre " +"aktiviteter og prøv én gang til." -#~ msgid "Set color sensor light." -#~ msgstr "Angiv farve for sensor-lys." +#: turtleblocks.py:407 +msgid "About..." +msgstr "Om ..." -#~ msgid "battery level" -#~ msgstr "batteri-niveau" +#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgstr "returnerer batteriopladningen som et tal mellem 0 og 255" -#, fuzzy #~ msgid "Get battery level of the brick" -#~ msgstr "Hent batteri-niveau for klods." - -#~ msgid "HIGH" -#~ msgstr "HØJ" - -#~ msgid "LOW" -#~ msgstr "LAV" - -#~ msgid "INPUT" -#~ msgstr "INPUT" - -#~ msgid "OUTPUT" -#~ msgstr "OUTPUT" - -#~ msgid "PWM" -#~ msgstr "PBM" +#~ msgstr "Hent batteriniveau for en brik" -#~ msgid "SERVO" -#~ msgstr "SERVO" - -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "FEJL: Tjek Arduiono'en og nummeret på porten." - -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "FEJL: Værdi skal være et tal mellem 0 og 255." - -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "FEJL: Værdiskal vær enten HØJ eller LAV." - -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "FEJL: Tilstanden skal være enten INPUT, OUTPUT, PBM eller SERVO." +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "justér LED-intensitet mellem 0 og 255" -#~ msgid "pin mode" -#~ msgstr "pin-tilstand" +#~ msgid "returns the ambient light level" +#~ msgstr "returnerer niveaut af omgivende lys" -#~ msgid "mode" -#~ msgstr "tilstand" +#~ msgid "returns the ambient temperature" +#~ msgstr "returnerer omgivende temperatur" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Vælg pin-funktionen (INPUT, OUTPUT, PBM, SERVO)." +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "returnerer 0 eller 1 afhængig af sensorens vinkel" -#~ msgid "analog write" -#~ msgstr "analog skrivning" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "skifter fra 0 til 1, frekvensen afhænger af vibrationen" -#~ msgid "Write analog value in specified port." -#~ msgstr "Skriv analog værdi i angivet port." +#~ msgid "grayscale" +#~ msgstr "gråskala" -#~ msgid "analog read" -#~ msgstr "analog læsning" +#~ msgid "ambient light" +#~ msgstr "omgivende lys" #~ 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." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" #~ 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." - -#~ msgid "digital write" -#~ msgstr "digital skrivning" +#~ "Skildpadde-blokke med nogle robot-moduler: Butia, Lego NxT, WeDo, FollowMe" -#~ msgid "Write digital value to specified port." -#~ msgstr "Værdi for digital skrivning for angivet port." +#~ msgid "magnetic induction" +#~ msgstr "magnetisk induktion" -#~ msgid "digital read" -#~ msgstr "digital læsning" +#~ msgid "vibration" +#~ msgstr "vibration" -#~ msgid "Read value from digital port." -#~ msgstr "Læs værdi fra digital port." +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "flyt Butia-robotten fremad med en forudbestemt distance" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Angiv værdien af HØJ for digital port." +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "flyt Butia-robotten bagud med en forudbestemt distance" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Sæt Arduino-port til digitalt input." +#~ msgid "turn Butia" +#~ msgstr "drej Butia" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Angiv Arduino-port for at køre en servo." +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "drej Butia-robotten x grader" -#~ msgid "Set LOW value for digital port." -#~ msgstr "Angiv værdien af LAV for digital port." +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "returnerer objektets gråniveau som et tal mellem 0 og 1023" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Sæt Arduino-port til digitalt output." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "returnerer det omgivende lysniveau som et tal mellem 0 o 1023" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Sæt Arduino-port til PBM (pulsbreddemodulation)." +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "returnerer den omgivende temperatur som et tal mellem 0 og 255" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palette af WeDo-blokke" +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" +#~ msgstr "" +#~ "returnerer distancen fra objektet foran sensoren som et tal mellem 0 og " +#~ "255" #, fuzzy -#~ msgid "samples" -#~ msgstr "Prøveindsamlinger" +#~ msgid "grey" +#~ msgstr "grå" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "angiver hastigheden af Butia-motorerne som en værdi mellem 0 og 1023, sendt " -#~ "gennem et argument" +#~ "angiver hastigheden af Butia-motorerne som en værdi mellem 0 og 1023, " +#~ "sendt gennem et argument" #~ msgid "turn the Butia robot to the left" #~ msgstr "drej Butia-robotten mod venstre" @@ -2899,8 +3919,10 @@ msgstr "Gem projekt?" #~ msgstr "brems en specifik motor" #~ msgid "" -#~ "returns the object gray level encountered him as a number between 0 and 1023" -#~ msgstr "returnerer objekt-gråniveauet som mødte ham som et tal mellem 0 og 1023" +#~ "returns the object gray level encountered him as a number between 0 and " +#~ "1023" +#~ msgstr "" +#~ "returnerer objekt-gråniveauet som mødte ham som et tal mellem 0 og 1023" #~ msgid "activity count" #~ msgstr "optælling af aktiviteter" @@ -3004,10 +4026,11 @@ msgstr "Gem projekt?" #~ msgid "restore last" #~ msgstr "genskab sidste" -#~ 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 "" -#~ "en blok som kan programmeres: anvendes til at tilføje avanceret matematiske " -#~ "ligninger, f.eks., sin(x)" +#~ "en blok som kan programmeres: anvendes til at tilføje avanceret " +#~ "matematiske ligninger, f.eks., sin(x)" #~ msgid "blocks" #~ msgstr "blokke" diff --git a/po/de.po b/po/de.po index de63550..6c08bf1 100644 --- a/po/de.po +++ b/po/de.po @@ -1,3 +1,15 @@ +# #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# #-#-#-#-# de.po (turtleart-activity) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -14,8 +26,37 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Markus Schlager , 2012. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-12-17 17:49-0500\n" +"PO-Revision-Date: 2013-01-08 23:14+0200\n" +"Last-Translator: Markus \n" +"Language-Team: LANGUAGE \n" +"Language: de\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" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-12-17 17:49-0500\n" +"PO-Revision-Date: 2013-01-08 23:14+0200\n" +"Last-Translator: Markus \n" +"Language-Team: LANGUAGE \n" +"Language: de\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" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" "Project-Id-Version: turtleart-activity\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -30,709 +71,1821 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "Schildkrötenblöcke" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -"Eine von Logo inspirierte Schildkröte, die mittels visueller " -"Programmierbausteine farbenfrohe Bilder zeichnet" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palette der Schildkröten-Befehle" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "Schildkrötenkunst Mini" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "Schildkrötenwirrwarr" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "Wähle eine Herausforderung" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "Amazonas-Schildkröte" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "Palette der mexikanischen Pesos" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "Palette der kolumbianischen Pesos" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Palette der ruandischen Francs" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "Palette der US-Dollars" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "Palette der australischen Dollars" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "Palette der paraguayischen Guaranies" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Palette der peruanischen Nuevo Soles" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "Palette der uruguayischen Pesos" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "SchildkrötenBots" + +#: taextras.py:66 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "FEHLER: Die Geschwindigkeit muss einen Wert zwischen 0 und 1023 haben." + +#: taextras.py:67 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "gehe vorwärts" +#: taextras.py:68 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "bewegt die Schildkröte vorwärts" +#: taextras.py:69 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "FEHLER: Als Modus muss entweder EINGANG oderAUSGANG gewählt werden." -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "zurück" +#: taextras.py:70 +msgid "adjust LED intensity between 0 and 255" +msgstr "LED-Intensität festlegen (von 0 bis 255)" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "bewegt die Schildkröte rückwärts" +# an 20 angepasst +#: taextras.py:71 +msgid "returns the gray level" +msgstr "gibt die Graustufe zurück" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "lösche alles" +#: taextras.py:72 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "Gibt 1 zurück, wenn der Knopf gedrückt ist, sonst 0." -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "Bildschirm leeren und Schildkröte zurücksetzen" +#: taextras.py:73 +msgid "returns the ambient light level" +msgstr "Gibt die Umgebungslichtstärke zurück." -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "links" +#: taextras.py:74 +msgid "returns the ambient temperature" +msgstr "Gibt die Umgebungstemperatur zurück." -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "Schildkröte gegen den Uhrzeigersinn drehen (Winkel in Grad)" +#: taextras.py:75 +msgid "returns the distance from the object in front of the sensor" +msgstr "Gibt den Abstand des Objektes vom Sensor zurück." -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "rechts" +#: taextras.py:76 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "Gibt je nach Sensorneigung 0 oder 1 zurück." -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "Schildkröte im Uhrzeigersinn drehen (Winkel in Grad)" +#: taextras.py:77 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"Gibt 1 zurück, wenn der Sensor ein magnetisches Feld detektiert, sonst 0." -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "Kreisbogen" +#: taextras.py:78 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "Wechselt von 0 zu 1; die Frequenz hängt von der Vibration ab." -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "Winkel" +#: taextras.py:79 +msgid "returns the value of the resistance" +msgstr "Gibt den Wert des Widerstandes zurück." -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "Radius" +#: taextras.py:80 +msgid "returns the value of the voltage" +msgstr "Gibt den Wert der Spannung zurück." -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "Schildkröte entlang eines Kreisbogens bewegen" +# Vorschlag von Antiochener; zu lang? +#: taextras.py:81 +#, fuzzy +msgid "gpio" +msgstr "Allzweckeingabe/-ausgabe (engl. GPIO - General Purpose Input/Output)" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "setze xy" +#: taextras.py:82 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:83 +msgid "button" +msgstr "Knopf" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:84 +msgid "grayscale" +msgstr "Grauwert" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "Schildkröte zur Position x,y bewegen; (0,0) liegt in Bildschirmmitte." +#: taextras.py:85 +msgid "ambient light" +msgstr "Umgebungslicht" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "setze Richtung" +#: taextras.py:86 +msgid "temperature" +msgstr "Temperatur" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "Richtung der Schildkröte festlegen (0 zeigt zum oberen Bildschirmrand.)" +#: taextras.py:87 taextras.py:313 +msgid "distance" +msgstr "Abstand" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x-Wert" +#: taextras.py:88 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 "Widerstand" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:89 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 "Spannung" + +#: taextras.py:90 +msgid "Butia Robot" +msgstr "Butia-Roboter" + +#: taextras.py:91 +#, fuzzy +msgid "refresh Butia" msgstr "" -"Der aktuelle x-Wert der Schildkröten-Position (kann an Stelle eines " -"Zahlenblocks benutzt werden)" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Butia zurücksetzen" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y-Wert" +#: taextras.py:92 +#, fuzzy +msgid "refresh the state of the Butia palette and blocks" +msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Den Zustand der Butia-Palette und -Blöcke zurücksetzen" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:94 +msgid "battery charge Butia" +msgstr "Ladezustand der Batterie des Butia" + +#: taextras.py:95 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "Gibt den Ladezustand der Batterie als Zahl zwischen 0 und 255 zurück." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:97 +msgid "speed Butia" +msgstr "Butia-Geschwindigkeit" + +#: taextras.py:98 +msgid "set the speed of the Butia motors" +msgstr "Stellt die Geschwindigkeit des Butia-Motors ein." + +#: taextras.py:99 +msgid "move Butia" +msgstr "bewegt Butia" + +#: taextras.py:100 TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "links" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:101 TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "rechts" + +#: taextras.py:102 +msgid "moves the Butia motors at the specified speed" +msgstr "Bewegt die Butia-Motoren in der festgelegten Geschwindigkeit." + +#: taextras.py:103 +msgid "stop Butia" +msgstr "Butia anhalten" + +#: taextras.py:104 +msgid "stop the Butia robot" +msgstr "Halte den Butia-Roboter an." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:106 +msgid "forward Butia" +msgstr "Butia vor" + +#: taextras.py:107 +msgid "move the Butia robot forward" +msgstr "Bewege den Butia-Roboter vorwärts." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:109 +msgid "left Butia" +msgstr "Butia nach links" + +#: taextras.py:110 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "Drehe den Butia-Roboter nach rechts." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:112 +msgid "right Butia" +msgstr "Butia nach rechts" + +#: taextras.py:113 +msgid "turn the Butia robot at right" +msgstr "Drehe den Butia-Roboter nach rechts." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:115 +msgid "backward Butia" +msgstr "Butia zurück" + +#: taextras.py:116 +msgid "move the Butia robot backward" +msgstr "Bewege den Butia-Roboter rückwärts." + +#: taextras.py:117 +msgid "Butia Robot extra blocks" msgstr "" -"Der aktuelle y-Wert der Schildkröten-Position (kann an Stelle eines " -"Zahlenblocks benutzt werden)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "Richtung" +#: taextras.py:118 +msgid "hack pin mode" +msgstr "" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:119 taextras.py:276 taextras.py:439 +msgid "pin" +msgstr "Fixierung" + +#: taextras.py:120 taextras.py:440 +msgid "mode" +msgstr "Modus" + +#: taextras.py:121 +#, fuzzy +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Wähle die Pin-Funktion (EINGANG, AUSGANG, PWM, SERVO)." + +#: taextras.py:122 +msgid "write hack pin Butia" msgstr "" -"Die aktuelle Richtung der Schildkröte (kann an Stelle eines Zahlenblocks " -"benutzt werden)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palette der Stiftbefehle" +#: taextras.py:123 taextras.py:443 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "Wert" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "fülle Bildschirm" +#: taextras.py:124 +msgid "set a hack pin to 0 or 1" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "Farbe" +#: taextras.py:125 +msgid "read hack pin Butia" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "Schattierung" +#: taextras.py:126 +msgid "read the value of a hack pin" +msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "Den Hintergrund mit (Farbe, Schattierung) füllen" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:127 taextras.py:417 +msgid "HIGH" +msgstr "HOCH" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "Grau" +#: taextras.py:128 taextras.py:452 +msgid "Set HIGH value for digital port." +msgstr "Setze HOCH-Wert für den digitalen Port." -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "setze Farbe" +#: taextras.py:129 taextras.py:419 +msgid "INPUT" +msgstr "EINGANG" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "Farbe der Schildkrötenspur festlegen" +#: taextras.py:130 +#, fuzzy +msgid "Configure hack port for digital input." +msgstr "Konfiguriere den Arduino-Port für den digitalen Eingang." -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "setze Schattierung" +#: taextras.py:131 taextras.py:418 +msgid "LOW" +msgstr "NIEDRIG" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "Schattierung der Schildkrötenspur festlegen" +#: taextras.py:132 taextras.py:455 +msgid "Set LOW value for digital port." +msgstr "Setze NIEDRIG-Wert für den digitalen Port." -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "setze Grauton" +#: taextras.py:133 taextras.py:420 +msgid "OUTPUT" +msgstr "AUSGANG" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "Grauton der Schildkrötenspur festlegen" +#: taextras.py:134 +#, fuzzy +msgid "Configure hack port for digital output." +msgstr "Konfiguriere den Arduino-Port für den digitalen Ausgang." -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:135 +msgid "Butia" +msgstr "Butia" + +#: taextras.py:136 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." msgstr "" -"Die aktuelle Stiftfarbe (kann an Stelle eines Zahlenblocks benutzt werden)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "Die aktuelle Schattierung des Stiftes" +#: taextras.py:137 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "Der aktuelle Grauton (kann an Stelle eines Zahlenblocks benutzt werden)" +#: taextras.py:141 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "Fehler beim Importieren von Pygame. Dieses Plugin benötigt Pygame 1.9." -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "hebe Stift an" +#: taextras.py:142 +msgid "Error on initialization of the camera" +msgstr "Fehler beim Einrichten der Kamera." -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Die Schildkröte zeichnet nicht, wenn sie sich bewegt." +#: taextras.py:143 +msgid "No camera was found" +msgstr "Es wurde keine Kamera gefunden." -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "senke Stift ab" +#: taextras.py:144 +msgid "Error stopping camera" +msgstr "Fehler beim Anhalten der Kamera" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Die Schildkröte zeichnet, wenn sie sich bewegt." +#: taextras.py:145 +msgid "Error starting camera" +msgstr "Fehler beim Einschalten der Kamera" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "setze Stiftdicke" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:147 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "Breite der Schildkrötenspur festlegen" +#: taextras.py:148 +msgid "FollowMe" +msgstr "FolgeMir" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "beginne Füllung" +#: taextras.py:149 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "Beginnt ein gefülltes Polygon (benötigt einen Füllung-beenden-Block)" +#: taextras.py:150 +#, fuzzy +msgid "Search for a connected camera." +msgstr "Suche nach einem verbundenen NXT-Stein." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:152 +msgid "calibration" +msgstr "Kalibrierung" + +#: taextras.py:153 +#, fuzzy +msgid "store a personalized calibration" +msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"gib eine individuelle Kalibrierung zurück\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"gib eine individuelle Kalibrierung zurück\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Speichert eine individuelle Kalibrierung" + +#: taextras.py:154 +msgid "return a personalized calibration" +msgstr "gib eine individuelle Kalibrierung zurück" + +#: taextras.py:155 +msgid "follow" +msgstr "folge" + +#: taextras.py:156 +msgid "follow a color or calibration" +msgstr "folge einer Farbe oder Kalibrierung" + +#: taextras.py:157 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 "Helligkeit" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "beende Füllung" +#: taextras.py:158 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "Gib bitte der Helligkeit der Kamera einen Wert zwischen 0 und 255." + +#: taextras.py:159 +msgid "minimum pixels" +msgstr "minimale Pixelanzahl" + +#: taextras.py:160 +msgid "set the minimal number of pixels to follow" +msgstr "Setze die Minimalzahl zu verfolgender Pixel fest" + +#: taextras.py:161 +msgid "threshold" +msgstr "Grenzwert" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:163 +msgid "set a threshold for a RGB color" +msgstr "setze einen Grenzwert für eine RGB-Farbe" + +#: taextras.py:164 +msgid "camera mode" +msgstr "Kameramodus" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:166 +#, fuzzy +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"Setze den Farbmodus der Kamera auf HSV\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"Setze den Farbmodus der Kamera auf HSV\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Wähle den Farbmodus der Kamera: RGB, YUV oder HSV" + +#: taextras.py:167 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:168 +msgid "get the brightness of the ambient light" msgstr "" -"Schließt ein gefülltes Polygon ab (benötigt einen Füllung-beginnen-Block)" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "Stiftdicke" +#: taextras.py:169 +msgid "average color" +msgstr "Durchschnittswert der Farbe" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:170 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"Die aktuelle Stiftdicke (kann an Stelle eines Zahlenblocks benutzt werden)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palette der Stiftfarben" +#: taextras.py:171 +msgid "x position" +msgstr "x-Position" + +#: taextras.py:172 +msgid "return x position" +msgstr "gib die x-Position zurück" + +#: taextras.py:173 +msgid "y position" +msgstr "y-Position" + +#: taextras.py:174 +msgid "return y position" +msgstr "gib die y-Position zurück" + +#: taextras.py:175 +msgid "pixels" +msgstr "Pixel" + +#: taextras.py:176 +msgid "return the number of pixels of the biggest blob" +msgstr "Gib die Zahl der Pixel im größten Fleck zurück" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:178 +msgid "set the color mode of the camera to RGB" +msgstr "Setze den Farbmodus der Kamera auf RGB" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:180 +msgid "set the color mode of the camera to YUV" +msgstr "Setze den Farbmodus der Kamera auf YUV" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:182 +msgid "set the color mode of the camera to HSV" +msgstr "Setze den Farbmodus der Kamera auf HSV" + +#: taextras.py:183 +msgid "empty calibration" +msgstr "leere Kalibrierung" + +#: taextras.py:184 +#, fuzzy +msgid "error in string conversion" +msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Fehler bei der Zeichenkettenumwandlung" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:189 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:190 +msgid "speed SumBot" +msgstr "Geschwindigkeit des SumBot" + +#: taextras.py:191 +msgid "submit the speed to the SumBot" +msgstr "Übermittle die Geschwindigkeit auf den Sumbot" + +#: taextras.py:192 +msgid "set the default speed for the movement commands" +msgstr "Setze die Standardgeschwindigkeit für die Bewegungsbefehle" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:194 +msgid "forward SumBot" +msgstr "SumBot vor" + +#: taextras.py:195 +msgid "move SumBot forward" +msgstr "Bewege den SumBot vorwärts" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:197 +msgid "backward SumBot" +msgstr "SumBot zurück" + +#: taextras.py:198 +msgid "move SumBot backward" +msgstr "Bewege den SumBot rückwärts" + +#: taextras.py:199 +msgid "stop SumBot" +msgstr "SumBot anhalten" + +#: taextras.py:200 +msgid "stop the SumBot" +msgstr "Halte den SumBot an" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:202 +msgid "left SumBot" +msgstr "SumBot nach links" + +#: taextras.py:203 +msgid "turn left the SumBot" +msgstr "Drehe den SumBot nach links" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:205 +msgid "right SumBot" +msgstr "SumBot nach rechts" + +#: taextras.py:206 +msgid "turn right the SumBot" +msgstr "Drehe den SumBot nach rechts" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.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:209 +msgid "angle to center" +msgstr "Winkel zum Zentrum" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:211 +msgid "get the angle to the center of the dohyo" +msgstr "Bestimme den Winkel zum Zentrum des Dohyo." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:214 +msgid "angle to Enemy" +msgstr "Winkel zum Gegner" + +#: taextras.py:215 +msgid "get the angle to the Enemy" +msgstr "Bestimme den Winkel zum Gegner." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:217 +msgid "x coor. SumBot" +msgstr "x-Koordinate Roboter" + +#: taextras.py:218 +msgid "get the x coordinate of the SumBot" +msgstr "Bestimme die x-Koordinate des Roboters." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:220 +msgid "y coor. SumBot" +msgstr "y-Koordinate Roboter" + +#: taextras.py:221 +msgid "get the y coordinate of the SumBot" +msgstr "Bestimme die y-Koordinate des Roboters." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:223 +msgid "x coor. Enemy" +msgstr "x-Koordinate Gegner" + +#: taextras.py:224 +msgid "get the x coordinate of the Enemy" +msgstr "Bestimme die x-Koordinate des Gegners." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:226 +msgid "y coor. Enemy" +msgstr "y-Koordinate Gegner" + +#: taextras.py:227 +msgid "get the y coordinate of the Enemy" +msgstr "Bestimme die y-Koordinate des Gegners." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:229 +msgid "rotation SumBot" +msgstr "Drehung Roboter" + +#: taextras.py:230 +msgid "get the rotation of the Sumbot" +msgstr "Bestimme die Drehung des Roboters." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:232 +msgid "rotation Enemy" +msgstr "Drehung Gegner" + +#: taextras.py:233 +msgid "get the rotation of the Enemy" +msgstr "Bestimme die Drehung des Gegners." + +#: taextras.py:234 +msgid "distance to center" +msgstr "Entfernung zur Mitte" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "Rot" +# Dohyo != Dojo (see Wikipedia) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:236 +msgid "get the distance to the center of the dohyo" +msgstr "Bestimme die Entfernung zur Mitte des Dohyo." + +#: taextras.py:237 +msgid "distance to Enemy" +msgstr "Entfernung zum Gegner" + +#: taextras.py:238 +msgid "get the distance to the Enemy" +msgstr "Bestimme die Entfernung zum Gegner." + +#: taextras.py:239 +msgid "update information" +msgstr "aktualisiere Informationen" + +#: taextras.py:240 +msgid "update information from the server" +msgstr "Aktualisiere die Informationen vom Server." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:245 +msgid "Palette of physics blocks" +msgstr "Palette der Physikblöcke" + +#: taextras.py:246 +msgid "start polygon" +msgstr "Vieleck anfangen" + +#: taextras.py:247 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" +"Fange an der aktuellen Position der Schildkröte an, ein Vieleck zu erstellen." -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "Orange" +#: taextras.py:249 +msgid "add point" +msgstr "Punkt hinzufügen" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "Gelb" +#: taextras.py:250 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" +"Füge dem aktuellen Vieleck eine neue Ecke an der aktuellen Position der " +"Schildkröte hinzu." + +#: taextras.py:252 +msgid "end polygon" +msgstr "Vieleck beenden" + +#: taextras.py:253 +msgid "Define a new polygon." +msgstr "Definiere ein neues Vieleck." + +#: taextras.py:254 +msgid "end filled polygon" +msgstr "Ausgefülltes Vieleck beenden" + +#: taextras.py:255 +msgid "Not a simple polygon" +msgstr "Kein einfaches Vieleck" + +#: taextras.py:256 +msgid "Define a new filled polygon." +msgstr "Definiere ein neues gefülltes Vieleck." + +#: taextras.py:257 +msgid "triangle" +msgstr "Dreieck" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:259 +msgid "base" +msgstr "Basis" + +#: taextras.py:260 taextras.py:266 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "Höhe" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "Grün" +#: taextras.py:261 +msgid "Add a triangle object to the project." +msgstr "Füge ein Dreiecksobjekt zum Projekt hinzu." -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "Zyan" +#: taextras.py:262 +msgid "circle" +msgstr "Kreis" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "Blau" +#: taextras.py:263 +msgid "Add a circle object to the project." +msgstr "Füge ein Kreisobjekt zum Projekt hinzu." -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "Violett" +#: taextras.py:264 +msgid "rectangle" +msgstr "Rechteck" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "Weiß" +#: taextras.py:265 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "Breite" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "Schwarz" +#: taextras.py:267 +msgid "Add a rectangle object to the project." +msgstr "Füge ein Rechtecksobjekt zum Projekt hinzu." -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "setze Schriftfarbe" +#: taextras.py:268 +msgid "reset" +msgstr "Zurücksetzen" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "Farbe des Textes festlegen, den die Schildkröte zeichnet" +#: taextras.py:269 +msgid "Reset the project; clear the object list." +msgstr "Setze das Projekt zurück; leere die Objektliste." -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "setze Schriftgröße" +#: taextras.py:270 +msgid "motor" +msgstr "Motor" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "Größe des Textes festlegen, den die Schildkröte zeichnet" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:272 +msgid "torque" +msgstr "Drehmoment" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palette der mathematischen Operatoren" +#: taextras.py:273 +msgid "speed" +msgstr "Geschwindigkeit" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: taextras.py:274 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Drehmoment des Motors und Geschwindigkeit variieren von 0 (aus) zu positiven " +"Zahlen; der Motor wird auf dem zuletzt erzeugten Objekt platziert." -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "Addiert zwei Zahleneingaben" +#: taextras.py:277 +msgid "Pin an object down so that it cannot fall." +msgstr "Hefte ein Objekt fest an, sodass es nicht fallen kann." -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "minus" +#: taextras.py:278 +msgid "joint" +msgstr "Verbindung" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "Die untere Zahleneingabe von der oberen subtrahieren" +#: taextras.py:279 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "mal" +#: taextras.py:280 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "Zwei Zahleneingaben multiplizieren" +#: taextras.py:281 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Verbinde zwei Objekte miteinander (das zuletzt erzeugte Objekt und das " +"Objekt am Punkt x, y)." + +#: taextras.py:283 +msgid "save as Physics activity" +msgstr "Speichern als Physik-Aktivität" + +#: taextras.py:284 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Speichere das Projekt als Physik-Aktivität ins Tagebuch." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:286 +msgid "gear" +msgstr "Zahnrad" + +#: taextras.py:287 +msgid "Add a gear object to the project." +msgstr "Füge ein Zahnradobjekt zum Projekt hinzu." -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "geteilt durch" +# (Markus S.) 'Gleichheit'? +#: taextras.py:288 +msgid "density" +msgstr "Dichte" -#: TurtleArt/tabasics.py:604 +#: taextras.py:289 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "Dividiert die obere Zahleneingabe (Zähler) durch die untere (Nenner)" +"Set the density property for objects (density can be any positive number)." +msgstr "" +"Setze die Dichte als Eigenschaft für Objekte (Dichte kann jede positive Zahl " +"sein)." -# (Markus S.) 'Gleichheit'? -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "Gleichheit" +#: taextras.py:291 +msgid "friction" +msgstr "Reibung" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "Identitätsoperator, um Blöcke zu erweitern" +#: taextras.py:292 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Setze die Reibung als Eigenschaft für Objekte (ein Wert zwischen 0 und 1, " +"wobei 0 Reibungslosigkeit bedeutet und 1 starke Reibung)." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:295 +msgid "bounciness" +msgstr "Elastizität" + +#: taextras.py:296 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Setze die Elastizität als Eigenschaft für Objekte (ein Wert zwischen 0 und " +"1, wobei 0 keine und 1 volle Elastizität bedeutet)." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:299 +msgid "dynamic" +msgstr "Beweglichkeit" + +#: taextras.py:300 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Bei Beweglichkeit = 1 kann sich das Objekt bewegen; bei Beweglichkeit = 0 " +"besitzt es eine feste Position." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:306 +msgid "Palette of WeDo blocks" +msgstr "Palette der WeDo-Blöcke" + +# (Markus S.) WeDo ist der Name eines Programmierbausteins der Marke Lego +#: taextras.py:307 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:308 +#, fuzzy +msgid "set current WeDo device" +msgstr "Legt das derzeitige WeDo-Gerät fest." -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:309 +msgid "number of WeDo devices" +msgstr "Anzahl der WeDo-Geräte" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "Modulo-Operator (Divisionsrest)" +#: taextras.py:310 +msgid "tilt" +msgstr "Neigung" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:311 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"Ausgabe des Neigungssensors: (-1 == keine Neigung, 0 == vorwärts, 3 == " +"rückwärts, 1 == nach links geneigt, 2 == nach rechts geneigt)" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:315 +msgid "distance sensor output" +msgstr "Ausgabe des Entfernungssensors" + +#: taextras.py:316 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:317 +msgid "returns the current value of Motor A" +msgstr "Liefert den aktuellen Wert von Motor A." + +#: taextras.py:318 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:319 +msgid "returns the current value of Motor B" +msgstr "Liefert den aktuellen Wert von Motor B." + +#: taextras.py:320 +msgid "set the value for Motor A" +msgstr "Setze den Wert für Motor A." + +#: taextras.py:321 +msgid "set the value for Motor B" +msgstr "Setze den Wert für Motor B." + +#: taextras.py:322 +msgid "WeDo is unavailable" +msgstr "WeDo ist nicht verfügbar." + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:324 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "WeDo %d ist nicht verfügbar; es wird auf 1 zurückgesetzt." -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "Quadratwurzel" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:327 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "Quadratwurzel berechnen" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:333 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palette der LEGO-NXT-Blöcke für Motoren" + +#: taextras.py:334 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Palette der LEGO-NXT-Blöcke für Sensoren" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:336 +msgid "touch" +msgstr "Berührung" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:338 +msgid "ultrasonic" +msgstr "Ultraschall" + +#: taextras.py:339 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "Farbe" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "Zufallszahl" +#: taextras.py:340 +msgid "light" +msgstr "Helligkeit" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:341 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "Klang" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "Grau" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "Eine Zufallszahl zwischen dem Minimal- (oben) und Maximalwert (unten)" +#. TRANS: The brick is the NXT controller +#: taextras.py:344 +msgid "Please check the connection with the brick" +msgstr "Bitte überprüfe die Verbindung mit dem Stein." -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "Zahl" +#: taextras.py:345 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" +"Der Port '%s' ist ungültig. Der Port muss entweder PORT A, B oder C sein." -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "Als Zahleneingabe in mathematischen Operatoren" +#: taextras.py:346 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" +"Der Port '%s' ist ungültig. Der Port muss entweder PORT 1, 2, 3 oder 4 sein." -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "größer als" +#: taextras.py:347 +msgid "The value of power must be between -127 to 127" +msgstr "Der Kraftwert muss zwischen -127 und 127 liegen." -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "Logischer Größer-als-Operator" +#: taextras.py:348 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "Der Wert muss eine ganze Zahl sein, nicht '%s'." -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "kleiner als" +#: taextras.py:349 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"Ein Fehler ist aufgetreten. Überprüfe alle Verbindungen und versuche dich " +"neu zu verbinden." -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "Logischer Kleiner-als-Operator" +#: taextras.py:350 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT hat %s Steine gefunden." -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "gleich" +#: taextras.py:351 +msgid "NXT not found" +msgstr "NXT nicht gefunden" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "Logischer Ist-gleich-Operator" +#: taextras.py:352 +#, python-format +msgid "Brick number %s was not found" +msgstr "Stein Nummer %s wurde nicht gefunden." -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "nicht" +#: taextras.py:353 +msgid "refresh NXT" +msgstr "NXT erneuern" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "Logischer NICHT-Operator" +#: taextras.py:354 +msgid "Search for a connected NXT brick." +msgstr "Suche nach einem verbundenen NXT-Stein." -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "und" +#: taextras.py:355 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "Logischer UND-Operator" +#: taextras.py:356 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "oder" +#: taextras.py:357 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "Logischer ODER-Operator" +#: taextras.py:358 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palette der Flussoperatoren" +#: taextras.py:359 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "warte" +#: taextras.py:360 +msgid "play tone" +msgstr "Ton abspielen" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "Programmausführung für die angegebene Dauer in Sekunden unterbrechen" +#: taextras.py:361 +msgid "frequency" +msgstr "Frequenz" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "fortlaufend" +#: taextras.py:362 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "Zeit" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "Endlos wiederholen" +#: taextras.py:363 +msgid "Play a tone at frequency for time." +msgstr "Spiele einen Ton einer Frequenz für die Dauer ab." -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "wiederhole" +#. TRANS: turn is the action +#: taextras.py:365 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "So oft wiederholen, wie angegeben" +#: taextras.py:366 +msgid "port" +msgstr "Port" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "wenn" +#: taextras.py:367 +msgid "power" +msgstr "Spannung" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "dann" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:369 +msgid "rotations" +msgstr "Drehungen" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "wenn dann" +#: taextras.py:370 +msgid "turn a motor" +msgstr "Einen Motor drehen" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: taextras.py:371 +#, fuzzy +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Zwei Motoren synchronisieren" + +#: taextras.py:372 +msgid "steering" msgstr "" -"Wenn-Dann-Operator, der boolesche Operatoren aus der mathematischen Palette " -"nutzt" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "sonst" +#: taextras.py:373 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" +"Synchronisiert zwei Motoren, die an PORT B und PORT C angeschlossen sind." + +#: taextras.py:374 +msgid "PORT A" +msgstr "PORT A" + +#: taextras.py:375 +msgid "PORT A of the brick" +msgstr "PORT A des Steins" + +#: taextras.py:376 +msgid "PORT B" +msgstr "PORT B" + +#: taextras.py:377 +msgid "PORT B of the brick" +msgstr "PORT B des Steins" + +#: taextras.py:378 +msgid "PORT C" +msgstr "PORT C" + +#: taextras.py:379 +msgid "PORT C of the brick" +msgstr "PORT C des Steins" + +#: taextras.py:380 +msgid "start motor" +msgstr "Motor starten" + +#: taextras.py:381 +msgid "Run a motor forever." +msgstr "Lass einen Moter dauernd laufen." + +#: taextras.py:382 +msgid "brake motor" +msgstr "Motor anhalten" + +#: taextras.py:383 +msgid "Stop a specified motor." +msgstr "Stopp einen bestimmten Motor." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:385 +msgid "reset motor" +msgstr "Motor zurücksetzen" + +#: taextras.py:386 +msgid "Reset the motor counter." +msgstr "Setze den Motorzähler zurück." + +#: taextras.py:387 +msgid "motor position" +msgstr "Motorposition" + +#: taextras.py:388 +msgid "Get the motor position." +msgstr "Erhalte die Motorposition." + +#: taextras.py:389 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:390 +msgid "PORT 1 of the brick" +msgstr "PORT 1 des Steins" + +#: taextras.py:391 +msgid "read" +msgstr "Auslesen" + +#: taextras.py:392 +msgid "sensor" +msgstr "Sensor" + +#: taextras.py:393 +msgid "Read sensor output." +msgstr "Lies die Sensorausgabe aus." + +#: taextras.py:394 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:395 +msgid "PORT 2 of the brick" +msgstr "PORT 2 des Steins" + +#: taextras.py:396 +msgid "light sensor" +msgstr "Helligkeitssensor" + +#: taextras.py:397 +msgid "gray sensor" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "wenn dann sonst" +#: taextras.py:398 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:399 +msgid "PORT 3 of the brick" +msgstr "PORT 3 des Steins" + +#: taextras.py:400 +msgid "touch sensor" +msgstr "Berührungssensor" + +#: taextras.py:401 +msgid "distance sensor" +msgstr "Entfernungssensor" + +#: taextras.py:402 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:403 +msgid "PORT 4 of the brick" +msgstr "PORT 4 des Steins" + +#: taextras.py:404 +msgid "sound sensor" +msgstr "Geräuschsensor" + +#: taextras.py:405 +msgid "color sensor" +msgstr "Farbsensor" + +#. #-#-#-#-# de.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) +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.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:408 +msgid "set light" +msgstr "Helligkeit einstellen" + +#: taextras.py:409 +msgid "Set color sensor light." +msgstr "Stelle die Helligkeit des Farbsensors ein." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:411 +msgid "battery level" +msgstr "Batterieladung" + +#: taextras.py:412 +#, fuzzy +msgid "Get battery level of the brick" +msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Der Ladezustand der Batterie des Steins" + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:422 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:423 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:424 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "FEHLER: Überprüfe den Arduino und die Portnummer." + +#: taextras.py:425 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "FEHLER: Der Wert muss eine Zahl von 0 bis 255 sein." + +#: taextras.py:426 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "FEHLER: Der Wert muss entweder HOCH oder NIEDRIG sein." + +#: taextras.py:427 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" +"FEHLER: Der Modus muss entweder EINGANG oder AUSGANG oder PWM oder SERVO " +"sein." -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:428 +msgid "refresh Arduino" msgstr "" -"Wenn-Dann-Sonst-Operator, der boolesche Operatoren aus der mathematischen " -"Palette nutzt" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "horizontaler Zwischenraum" +#: taextras.py:429 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "Stapel nach rechts versetzen" +#: taextras.py:430 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "Vertikaler Zwischenraum" +#: taextras.py:431 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "Stapel nach unten versetzen" +#: taextras.py:432 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "beende Aktion" +#: taextras.py:433 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "Aktuelle Aktion beenden" +#: taextras.py:434 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palette der Variablenblöcke" +#: taextras.py:435 +msgid "Get the name of an Arduino." +msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "starte" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.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:438 +msgid "pin mode" +msgstr "Pin-Modus" + +#: taextras.py:441 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Wähle die Pin-Funktion (EINGANG, AUSGANG, PWM, SERVO)." + +#: taextras.py:442 +msgid "analog write" +msgstr "Analog Schreiben" + +#: taextras.py:444 +msgid "Write analog value in specified port." +msgstr "Schreibe analogen Wert in den angegebenen Port." + +#: taextras.py:445 +msgid "analog read" +msgstr "Analog Lesen" + +#: taextras.py:446 +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 "" +"Lies den Wert aus dem analogen Port. Der Wert darf zwischen 0 und 1023 " +"liegen. Benutze Vref, um die Spannun zu bestimmen. Für USB gilt ungefähr " +"volt=((read)*5)/1024." + +#: taextras.py:448 +msgid "digital write" +msgstr "Digital Schreiben" + +#: taextras.py:449 +msgid "Write digital value to specified port." +msgstr "Schreibe digitalen Wert in den angegebenen Port." + +#: taextras.py:450 +msgid "digital read" +msgstr "Digital Lesen" + +#: taextras.py:451 +msgid "Read value from digital port." +msgstr "Lies den Wert aus dem digitalen Port." + +#: taextras.py:453 +msgid "Configure Arduino port for digital input." +msgstr "Konfiguriere den Arduino-Port für den digitalen Eingang." + +#: taextras.py:454 +msgid "Configure Arduino port to drive a servo." +msgstr "Konfiguriere den Arduino-Port, um ein Servo anzusteuern." + +#: taextras.py:456 +msgid "Configure Arduino port for digital output." +msgstr "Konfiguriere den Arduino-Port für den digitalen Ausgang." + +#: taextras.py:457 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Konfiguriere den Arduino-Port für PWM (Pulsweitenmodulierung)." + +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:462 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "Palette der WeDo-Blöcke" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "Aktion mit Startknöpfen in der Werkzeugleiste verbinden" +#. TRANS: Programmable voltage output +#: taextras.py:464 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "Text" +#: taextras.py:465 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "Zeichenkette" +#. TRANS: Square wave 1 voltage output +#: taextras.py:467 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "Aktion" +#: taextras.py:468 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "Stapelanfang einer benennbaren Aktion" +#. TRANS: Square wave 2 voltage output +#: taextras.py:470 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "Stapel einer benannten Aktion aufrufen" +#: taextras.py:471 +msgid "set square wave 2 voltage output" +msgstr "" -# (Markus S.) 'Variable' war 'Rahmen' -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "speichere in Box 1" +#. TRANS: Digital output level +#: taextras.py:473 +msgid "set OD1" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "Zahlenwert in Variable 1 speichern" +#: taextras.py:474 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -# (Markus S.) 'Variable' war 'Rahmen' -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "speichere in Box 2" +#. TRANS: Input 1 voltage level +#: taextras.py:476 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "Zahlenwert in Variable 2 speichern" +#: taextras.py:477 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" +"Gibt 1 zurück, wenn die Spannung an IN1 > 2.5 V, und 0, wenn die Spannung <= " +"2,5 V beträgt." -# (Markus S.) 'Variable' war 'Rahmen' -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "Box 1" +#. TRANS: Input 2 voltage level +#: taextras.py:480 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variable 1 (Zahlenwert)" +#: taextras.py:481 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" +"Gibt 1 zurück, wenn die Spannung an IN2 > 2.5 V, und 0, wenn die Spannung <= " +"2,5 V beträgt." -# (Markus S.) 'Variable' war 'Rahmen' -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "Box 2" +#. TRANS: Resistive sensor voltage level +#: taextras.py:484 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variable 2 (Zahlenwert)" +#: taextras.py:485 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "speichere in" +#: taextras.py:487 +msgid "capture" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "Box" +#: taextras.py:488 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "Wert" +#: taextras.py:489 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# de.po (turtleart-activity) #-#-#-#-#\n" +"Vorlagen" + +#: taextras.py:490 +msgid "interval" +msgstr "" -# (Markus S.) 'Rahmen'? -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "Meine Box" +#. TRANS: MS is microseconds +#: taextras.py:492 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "Zahlenwert in benannte Variable speichern" +#. TRANS: Analog input 1 voltage level +#: taextras.py:495 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "Benannte Variable (Zahlenwert)" +#: taextras.py:496 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "Aktion 1" +#. TRANS: Analog input 2 voltage level +#: taextras.py:498 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "Stapelanfang von Aktion 1" +#: taextras.py:499 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "Aktion 2" +#. TRANS: Read input 1 voltage +#: taextras.py:501 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "Stapelanfang von Aktion 2" +#: taextras.py:502 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "Stapel von Aktion 1 afurufen" +#. TRANS: Read input 2 voltage +#: taextras.py:504 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "Stapel von Aktion 2 aufrufen" +#: taextras.py:505 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "Müll" +#. TRANS: Read analog sensor input voltage +#: taextras.py:507 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "Mülleimer leeren" +#: taextras.py:508 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "Mülleimer endgültig leeren" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:510 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "Alles rückgängig" +#: taextras.py:511 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "Alle gelöschten Blöcke wiederherstellen" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:513 +msgid "SQR2" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "Alles löschen" +#: taextras.py:514 +msgid "read square wave 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "Alle Blöcke in den Mülleimer verschieben" +#. TRANS: Read programmable voltage +#: taextras.py:516 +msgid "PVS" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Teile ausgewählte Blöcke" +#: taextras.py:517 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:518 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "Audio oder Video weiter abspielen" #: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 #: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 @@ -746,862 +1899,729 @@ msgstr "Teile ausgewählte Blöcke" msgid "Title" msgstr "Titel" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Schildkröte anhalten" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Blöcke anzeigen" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Blöcke verbergen" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "keine Ausgabe erfolgt" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Ich kann nicht" - -# (Markus S.) 'mag kein'? -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "mag nicht" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "als Eingabe" - -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "Nächste Palette anzeigen" - -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "Die Ausrichtung der Block-Palette ändern" - -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Laden..." +#: 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 "Die gemittelte RGB-Farbe aus der Kamera wird auf den Stapel abgelegt" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Speichern..." +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "Gelb" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "Zum Öffnen klicken" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "Polarkoordinaten anzeigen" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "Orientierung" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "leert FILO-Stapel (first in, last out)" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "Nächstes" +#: 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 "Kameraausgabe" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -#, fuzzy -msgid "shift" -msgstr "Verschieben" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "x,y,z-Beschleunigung auf zum Stapel hinzufügen" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" +"Wenn-Dann-Operator, der boolesche Operatoren aus der mathematischen Palette " +"nutzt" -#: TurtleArt/tawindow.py:1310 -#, fuzzy -msgid "Select blocks to share" -msgstr "Wähle Blöcke zum Teilen" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Schildkrötenkunst" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "Bild" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Als Logo speichern" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "Stapel nach rechts versetzen" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Als Bild speichern" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Medienobjekt aus dem Sugar-Tagebuch" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "Momentaufnahme" +# (Markus S.) 'Variable' war 'Rahmen' +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "Box 2" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Momentaufnahme speichern" +# (Markus S.) 'Variable' war 'Rahmen' +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "Box 1" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Maus-darüber-Hilfe ausschalten" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Einzelschritte" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Maus-darüber-Hilfe einschalten" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "Zwei Zahleneingaben multiplizieren" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Palette anzeigen" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Blöcke zeigen/verbergen" #: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 msgid "Hide palette" msgstr "Palette verbergen" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Koordinaten herunterskalieren" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Partner" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Koordinaten hochskalieren" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Meine Schildkrötenkunst-Sitzung" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Bearbeiten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Videoobjekt aus dem Sugar-Tagebuch" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Ansicht" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "Zyan" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projekt" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (turtleart-activity) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"Eine von Logo inspirierte Schildkröte, die mittels visueller " +"Programmierbausteine farbenfrohe Bilder zeichnet" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Speichern/Laden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "x-Koordinate des rechten Bildschirmrandes" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopieren" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Palette der erweiterten Optionen" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Einfügen" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Beispiel laden" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Alle gelöschten Blöcke wiederherstellen" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "Alle Blöcke in den Mülleimer verschieben" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Vollbild" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "Liste" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Kartesische Koordinaten" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Kann nicht in Einstellungsverzeichnis schreiben: %s" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Polarkoordinaten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "Medien fortsetzen" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Metrische Koordinaten" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "Richtung" -# (Markus S.) 'Blöcke vergrößern'? -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Blöcke vergrößern" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Teilen von Blöcken ist ausgeschaltet." -# (Markus S.) 'Blöcke verkleinern'? -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Blöcke verkleinern" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "Eine Schildkröten-Grafik als SVG ins Sugar-Tagebuch speichern" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Beispiel laden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "Text zeichnen oder Medien aus dem Tagebuch anzeigen" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Alles löschen" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Ausführen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "Video" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Einzelschritte" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "Blau" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Hilfe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "Kartesische Koordinaten anzeigen" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stopp" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Keine optionale Aktion:" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Projekt laden" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "Stapel nach unten versetzen" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Plugin laden" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "Modulo-Operator (Divisionsrest)" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Python-Block laden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "unten: y" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "Palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "Als SVG speichern" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Teilen von Blöcken ist ausgeschaltet." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "Code aus dem Modul tamyblock.py aus dem Tagebuch ausführen" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "senke Stift ab" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "warte" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "Box" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Hochladen fehlgeschlagen!" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +#, fuzzy +msgid "shift" +msgstr "Verschieben" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Das Plugin konnte nicht installiert werden." +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "Stapel einer benannten Aktion aufrufen" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Starte die Schildkrötenkunst bitte neu, um das Plugin zu benützen." +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "Aktion" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Das Plugin %s ist bereits installiert." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"Wiederhole-bis-Operator, der boolesche Operatoren aus der mathematischen " +"Palette nutzt" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Willst du %s erneut installieren?" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "Auslastung beträgt" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Meine Schildkrötenkunst-Sitzung" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variable 2 (Zahlenwert)" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Zusammenarbeit erlauben" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "geteilt durch" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Aktivitäten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "Bildname" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Partner" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "solange" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Teilen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "Die Fensterbreite" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Konfiguration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "Stapel leer?" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Umgebung" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "Benannte Variable (Zahlenwert)" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Spitzname" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "Nächstes" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Account-Kennung" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "wenn dann" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Server" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "setze Stiftdicke" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "Präsentationsvorlage: ein Tagebuch-Objekt (ohne Beschreibung)" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Kennwort" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "bis" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Registrieren" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "Medien anhalten" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Farben" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Maus-darüber-Hilfe einschalten" -#: 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 "Hochladen" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "Mülleimer endgültig leeren" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +#: pysamples/uturn.py:24 +#, fuzzy +msgid "uturn" +msgstr "umkehren" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Ins Netz hochladen" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "Stapelanfang von Aktion 1" -#: gnome_plugins/uploader_plugin.py:90 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"Du benötigst einen Account auf http://turtleartsite.sugarlabs.org um dein " -"Projekt hochzuladen." +"Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke mit " +"einer Variablen, z.B. sin(x)" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Benutzername:" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palette der Flussoperatoren" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Kennwort:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "Anfang eines zugeklappten Stapels" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Titel:" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"Wenn-Dann-Sonst-Operator, der boolesche Operatoren aus der mathematischen " +"Palette nutzt" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Beschreibung:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "Gibt die y-Koordinate des Mauszeigers zurück." -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Hochladen" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "Die aktuelle Schattierung des Stiftes" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Abbrechen" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (turtleart-activity) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "Sinuswelle" #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "Anmeldung fehlgeschlagen" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Hochladen fehlgeschlagen!" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "links: x" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palette der Sensorblöcke" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "setze Richtung" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "Beschleunigung" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "RGB-Farbton unter der Schildkröte wird in den Stapel eingefügt" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "x,y,z-Beschleunigung auf zum Stapel hinzufügen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "Fenster durch Verbergen von Blöcken aufräumen" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "Klang" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "Mikrofoneingangssignal" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "Lautstärke" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "Mikrofoneingangslautstärke" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "Tonhöhe" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "Mikrofoneingangstonhöhe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "chr-Operator von Python" -#: 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 "Widerstand" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "horizontaler Zwischenraum" -#: 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 "Mikrofoneingangswiderstand" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Metrische Koordinaten" -#: 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 "Spannung" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "Zeichenkette" -#: 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 "Mikrofoneingangsspannung" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "Beschreibung" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palette der Medienobjekte" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Ich kann nicht" -#: 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 "Helligkeit" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "setze Schriftgröße" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "Lichtstärke, die von der Kamera wahrgenommen wird" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Benutzername:" -#: 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 "Die gemittelte RGB-Farbe aus der Kamera wird auf den Stapel abgelegt" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "Beginnt ein gefülltes Polygon (benötigt einen Füllung-beenden-Block)" -#: 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 "Kameraausgabe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "Präsentationsvorlage: vier Tagebuch-Objekte" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "vom Lichtsensor wahrgenommene Leuchtstärke" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Ansicht" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "Grauton der Schildkrötenspur festlegen" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "Wert aus RFID-Quelle auslesen" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Kennwort:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "solange" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "Schildkröte sieht" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"Wiederhole-solange-Operator, der boolesche Operatoren aus der mathematischen " -"Palette nutzt" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "beende Aktion" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "bis" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "Grün" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"Wiederhole-bis-Operator, der boolesche Operatoren aus der mathematischen " -"Palette nutzt" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "Schattierung" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "oben" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "Den Hintergrund mit (Farbe, Schattierung) füllen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "Anfang eines zuklappbaren Stapels" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "Bild speichern" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "Tagebuch" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "Tonhöhe" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Medienobjekt aus dem Sugar-Tagebuch" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "Gibt 1 zurück, wenn die Maustaste gedrückt ist." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "Audio" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Koordinaten hochskalieren" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Audioobjekt aus dem Sugar-Tagebuch" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "hebe Stift an" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "Video" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "Orange" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Videoobjekt aus dem Sugar-Tagebuch" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "Programmausführung für die angegebene Dauer in Sekunden unterbrechen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "Beschreibung" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "schreibt den Wert in den FILO-Stapel (first in, last out)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Beschreibungsfeld im Sugar-Tagebuch" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "Alles löschen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "zeige" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "dann" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "Text zeichnen oder Medien aus dem Tagebuch anzeigen" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Registrieren" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "zeige ausgerichtet" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "nicht" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "setze Skalierung" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "wenn dann sonst" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "Skalierung der Medien setzen" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "Aktuelle Aktion beenden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "Bild speichern" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "Schildkröte im Uhrzeigersinn drehen (Winkel in Grad)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "Bildname" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"Der aktuelle Grauton (kann an Stelle eines Zahlenblocks benutzt werden)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "Ein Bild ins Sugar-Tagebuch speichern" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "x-Koordinate des linken Bildschirmrandes" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "Als SVG speichern" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Blockgröße zurücksetzen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "Eine Schildkröten-Grafik als SVG ins Sugar-Tagebuch speichern" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "Schildkröte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "Skalierung" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "Nächste Palette anzeigen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "behält aktuellen Skalierungsfaktor bei" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "Blöcke verbergen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "Medien abwarten" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "Lichtstärke, die von der Kamera wahrgenommen wird" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "Das Ende der aktuellen Video- oder Audio-Wiedergabe abwarten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "int-Operator von Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "Medien anhalten" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "Logischer Kleiner-als-Operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "Audio oder Video anhalten" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "Alle gelöschten Blöcke wiederherstellen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "Medien unterbrechen" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Speichern" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "Audio oder Video unterbrechen" +# (Markus S.) 'Variable' war 'Rahmen' +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "speichere in Box 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "Medien fortsetzen" +# (Markus S.) 'Variable' war 'Rahmen' +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "speichere in Box 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "Audio oder Video weiter abspielen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "Sugar-Leiste verbergen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "sprich" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"Der aktuelle x-Wert der Schildkröten-Position (kann an Stelle eines " +"Zahlenblocks benutzt werden)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "Hallo" +# (Markus) war 'schreibe' +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "Ausgabe" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "spricht einen Text" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "Gibt die x-Koordinate des Mauszeigers zurück." -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "Sinuswelle" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "Rot" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "Amplitude" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Als Logo speichern" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "Dauer" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "Farbe der Schildkrötenspur festlegen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"spielt eine Sinuswelle mit der Frequenz, der Amplitude und der Dauer (in " -"Sekunden)" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "setze Schriftfarbe" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "Taste gedrückt" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "Lautstärke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "Gibt 1 zurück, wenn die Maustaste gedrückt ist." +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Zusammenarbeit erlauben" + +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palette der Sensorblöcke" + +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Plugin laden" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "Gibt Wahr zurück, wenn die Maustaste gedrückt ist." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "Maus-x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "Gibt die x-Koordinate des Mauszeigers zurück." - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "Maus-y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "Gibt die y-Koordinate des Mauszeigers zurück." +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "Zahl" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "lies Tastatureingabe aus" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"Tastatureingabe auslesen (das Ergebnis wird im Tastaturblock gespeichert)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "oben" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "Tastatur" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Hochladen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "Beinhaltet das Ergebnis des Tastaturabfrage-Blocks als ASCII-Zeichen." +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Kartesische Koordinaten" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "lies Pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Spitzname" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "RGB-Farbton unter der Schildkröte wird in den Stapel eingefügt" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "setze Skalierung" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "Schildkröte sieht" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Teile ausgewählte Blöcke" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "Gibt die Farbe zurück, welche die Schildkröte \"sieht\"." +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "Weiß" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "Zeit" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "Aktion mit Startknöpfen in der Werkzeugleiste verbinden" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "Verstrichene Zeitdauer (in Sekunden) seit dem Programmstart" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Palette der erweiterten Optionen" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "ablegen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "schreibt den Wert in den FILO-Stapel (first in, last out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "zeige Stapel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "zeigt Werte im FILO-Stapel (first in, last out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "leere Stapel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "leert FILO-Stapel (first in, last out)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "aufnehmen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "nimmt den Wert aus dem FILO-Stapel (first in, last out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "Stapel leer?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "Gibt Wahr zurück, wenn der Stapel leer ist." - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "Anmerkung" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "Kommentar in dein Programm einfügen" - -# (Markus) war 'schreibe' -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "Ausgabe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "Amplitude" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "Zeigt den Wert im Statusblock am unteren Bildschirmrand an" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Abbrechen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "chr-Operator von Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "Die Fensterhöhe" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "int-Operator von Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "Präsentation 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "minus" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke mit " -"einer Variablen, z.B. sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "und" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke mit " -"mehreren Variablen wie wurzel(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "Anfang eines zuklappbaren Stapels" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke mit " -"mehreren Variablen, z.B. sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "als Eingabe" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1609,59 +2629,27 @@ msgstr "" msgid "Python block" msgstr "Python-Block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "Code aus dem Modul tamyblock.py aus dem Tagebuch ausführen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Kartesisch" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "Kartesische Koordinaten anzeigen" - -# (Markus S.) Vergleiche 'Cartesian' -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "Polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "Polarkoordinaten anzeigen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "Schildkröte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "Die zu steuernde Schildkröte wählen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "Medien abwarten" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "Schildkrötenpanzer" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "Beschleunigung" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "Den 'Panzer' der Schildkröte anpassen" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"Die aktuelle Stiftdicke (kann an Stelle eines Zahlenblocks benutzt werden)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "Anfang eines zugeklappten Stapels" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "setze Farbe" -# (M. Schlager) lade ? -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -#, fuzzy -msgid "load" -msgstr "laden" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1669,71 +2657,69 @@ msgstr "laden" msgid "loads a block" msgstr "Einen Block laden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "setze xy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palette der Stiftbefehle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "Palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "zeigt Werte im FILO-Stapel (first in, last out)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "Eine Palette wählen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"Wiederhole-solange-Operator, der boolesche Operatoren aus der mathematischen " +"Palette nutzt" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palette der Präsentationsvorlagen" +#: turtleblocks.py:363 +msgid "File" +msgstr "Datei" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "Blöcke verbergen" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "Logischer NICHT-Operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "Fenster durch Verbergen von Blöcken aufräumen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "y-Koordinate des unteren Bildschirmrandes" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "Blöcke anzeigen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "Präsentationsvorlage: ein Tagebuch-Objekt (mit Beschreibung)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "Verborgene Blöcke wiederherstellen" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palette der mathematischen Operatoren" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "Sugar-Leiste verbergen" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "mal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "Liste" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "fortlaufend" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "Darstellung als Spiegelstrichliste" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Das Plugin %s ist bereits installiert." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "Präsentationsvorlage: Spiegelstrichliste" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "Schattierung der Schildkrötenspur festlegen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "Präsentationsvorlage: ein Tagebuch-Objekt (ohne Beschreibung)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "spricht einen Text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "Präsentationsvorlage: ein Tagebuch-Objekt (mit Beschreibung)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "Momentaufnahme" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "Präsentationsvorlage: vier Tagebuch-Objekte" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "lösche alles" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1742,1034 +2728,1069 @@ msgstr "Präsentationsvorlage: vier Tagebuch-Objekte" msgid "presentation template: select two Journal objects" msgstr "Präsentationsvorlage: zwei Tagebuch-Objekte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "x-Koordinate des linken Bildschirmrandes" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "unten" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "y-Koordinate des unteren Bildschirmrandes" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "Breite" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "Die Fensterbreite" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "x-Koordinate des rechten Bildschirmrandes" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "y-Koordinate des oberen Bildschirmrandes" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "Höhe" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "Die Fensterhöhe" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "Titel: x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "Titel: y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "links: x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "oben: y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "rechts: x" +# (Markus S.) 'Blöcke vergrößern'? +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Blöcke vergrößern" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "unten: y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Vollbild" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "Präsentation 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Datei nicht gefunden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "Präsentation 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "zeige" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "Präsentation 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "Text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "Präsentation 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "Zufallszahl" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Installiere bitte die Sprechen-Aktitvität und versuch es noch einmal." +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "Logischer Größer-als-Operator" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Spanisch" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "Schildkröte gegen den Uhrzeigersinn drehen (Winkel in Grad)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "Englisch" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "Schwarz" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Tut mir leid, ich kann nicht verstehen, wonach du fragst." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "Quadratwurzel berechnen" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Entschuldige, es gibt keinen freien Speicher, um mein Gehirn zu laden. " -"Schließe andere Aktivitäten und versuch es noch einmal." +"Der aktuelle y-Wert der Schildkröten-Position (kann an Stelle eines " +"Zahlenblocks benutzt werden)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "Füge den Ziel-RGB-Wert zum Stapel hinzu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "Maus-x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "Maus-y" #: pysamples/grecord.py:215 #, fuzzy msgid "stop" msgstr "halte an" -#: pysamples/grecord.py:217 -#, fuzzy -msgid "play" -msgstr "abspielen" - -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "speichern" - -#: pysamples/journal-stats.py:78 -#, fuzzy -msgid "other" -msgstr "Sonstiges" - -#: pysamples/uturn.py:24 -#, fuzzy -msgid "uturn" -msgstr "umkehren" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "Die Richtung umkehren" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "Auslastung beträgt" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Keine optionale Aktion:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Datei nicht gefunden" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Kann nicht in Einstellungsverzeichnis schreiben: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Neu" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Öffnen" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Speichern" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Speichern unter" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Beenden" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Datei" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Koordinaten skalieren" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Blockgröße zurücksetzen" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Blöcke zeigen/verbergen" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Werkzeuge" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Fehlersuche" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Schildkröte" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "größer als" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x-Wert" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "" -"Du hast ungespeicherte Veränderungen. Möchtest du sie vor dem Beenden " -"abspeichern?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Hilfe" #: turtleblocks.py:448 msgid "Save project?" msgstr "Projekt speichern?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Schildkrötenkunst Mini" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "Die zu steuernde Schildkröte wählen" -#~ msgid "Turtle Confusion" -#~ msgstr "Schildkrötenwirrwarr" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "rechts: x" -#~ msgid "Select a challenge" -#~ msgstr "Wähle eine Herausforderung" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "Farbe des Textes festlegen, den die Schildkröte zeichnet" -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palette der mexikanischen Pesos" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "vom Lichtsensor wahrgenommene Leuchtstärke" -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palette der kolumbianischen Pesos" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Das Plugin konnte nicht installiert werden." -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palette der ruandischen Francs" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "Tastatur" -#~ msgid "Palette of US dollars" -#~ msgstr "Palette der US-Dollars" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "Kreisbogen" -#~ msgid "Palette of Australian dollars" -#~ msgstr "Palette der australischen Dollars" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "Radius" -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Palette der paraguayischen Guaranies" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Polarkoordinaten" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Palette der peruanischen Nuevo Soles" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "setze Schattierung" -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Palette der uruguayischen Pesos" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "Logischer UND-Operator" -#~ msgid "TurtleBots" -#~ msgstr "SchildkrötenBots" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Du benötigst einen Account auf http://turtleartsite.sugarlabs.org um dein " +"Projekt hochzuladen." -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "LED-Intensität festlegen (von 0 bis 255)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "Palette" -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "" -#~ "Gibt den Grauwert des Objektes als eine Zahl zwischen 0 und 1023 zurück." +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Ausführen" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "Gibt 1 zurück, wenn der Knopf gedrückt ist, sonst 0." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "zeige Stapel" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "Gibt die Umgebungshelligkeit als eine Zahl zwischen 0 und 1023 zurück." +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "" +"Richtung der Schildkröte festlegen (0 zeigt zum oberen Bildschirmrand.)" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "Gibt die Umgebungstemperatur als eine Zahl zwischen 0 und 255 zurück." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "Eine Palette wählen" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "Gibt die Entfernung zu dem Objekt vor dem Sensor als eine Zahl zwischen 0 " -#~ "und 255 zurück." +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "Mikrofoneingangslautstärke" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "Gibt je nach Sensorneigung 0 oder 1 zurück." +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Titel:" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "Gibt 1 zurück, wenn der Sensor ein magnetisches Feld detektiert, sonst 0." +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palette der Medienobjekte" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "Wechselt von 0 zu 1; die Frequenz hängt von der Vibration ab." +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Alle gelöschten Blöcke wiederherstellen" -#~ msgid "LED" -#~ msgstr "LED" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palette der Variablenblöcke" -#~ msgid "button" -#~ msgstr "Knopf" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "Als Zahleneingabe in mathematischen Operatoren" -#~ msgid "grayscale" -#~ msgstr "Grauwert" +#: 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 "Hochladen" -#~ msgid "ambient light" -#~ msgstr "Umgebungslicht" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Server" -#~ msgid "temperature" -#~ msgstr "Temperatur" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "Präsentation 2x2" -#~ msgid "distance" -#~ msgstr "Abstand" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variable 1 (Zahlenwert)" -#~ msgid "tilt" -#~ msgstr "Neigung" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Umgebung" -#~ msgid "magnetic induction" -#~ msgstr "Magnetische Induktion" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "Addiert zwei Zahleneingaben" -#~ msgid "vibration" -#~ msgstr "Vibration" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "gleich" -#~ msgid "Butia Robot" -#~ msgstr "Butia-Roboter" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "sonst" -#, fuzzy -#~ msgid "refresh Butia" -#~ msgstr "Butia zurücksetzen" +# (Markus S.) 'mag kein'? +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "mag nicht" -#, fuzzy -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "Den Zustand der Butia-Palette und -Blöcke zurücksetzen" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "" +"Du hast ungespeicherte Veränderungen. Möchtest du sie vor dem Beenden " +"abspeichern?" -#~ msgid "battery charge Butia" -#~ msgstr "Ladezustand der Batterie des Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "Verborgene Blöcke wiederherstellen" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "Gibt den Ladezustand der Batterie als Zahl zwischen 0 und 255 zurück." +# (M. Schlager) lade ? +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +#, fuzzy +msgid "load" +msgstr "laden" -#~ msgid "speed Butia" -#~ msgstr "Butia-Geschwindigkeit" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "Audio oder Video anhalten" -#~ msgid "forward Butia" -#~ msgstr "Butia vor" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Die Schildkröte zeichnet nicht, wenn sie sich bewegt." -#~ msgid "move the Butia robot forward" -#~ msgstr "Bewege den Butia-Roboter vorwärts." +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (turtleart-activity) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "aufnehmen" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "Bewege den Butia-Roboter eine vordefinierte Entfernung vor." +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "Stiftdicke" -#~ msgid "left Butia" -#~ msgstr "Butia nach links" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "Schildkrötenpanzer" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "Drehe den Butia-Roboter nach rechts." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"spielt eine Sinuswelle mit der Frequenz, der Amplitude und der Dauer (in " +"Sekunden)" -#~ msgid "backward Butia" -#~ msgstr "Butia zurück" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "move the Butia robot backward" -#~ msgstr "Bewege den Butia-Roboter rückwärts." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "sprich" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "Bewege den Butia-Roboter eine vordefinierte Entfernung zurück." +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "Wert aus RFID-Quelle auslesen" -#~ msgid "right Butia" -#~ msgstr "Butia nach rechts" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "Schildkröte entlang eines Kreisbogens bewegen" -#~ msgid "turn the Butia robot at right" -#~ msgstr "Drehe den Butia-Roboter nach rechts." +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "Die Richtung umkehren" -#~ msgid "turn Butia" -#~ msgstr "Butia drehen" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "Logischer Ist-gleich-Operator" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "Drehe den Butia-Roboter um x Grad." +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palette der Stiftfarben" -#~ msgid "stop Butia" -#~ msgstr "Butia anhalten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "Audio oder Video unterbrechen" -#~ msgid "stop the Butia robot" -#~ msgstr "Halte den Butia-Roboter an." +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "Zahlenwert in Variable 1 speichern" -#~ msgid "Butia" -#~ msgstr "Butia" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "Zahlenwert in Variable 2 speichern" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Fehler beim Einrichten der Kamera." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "Den 'Panzer' der Schildkröte anpassen" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Keine Kamera gefunden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "Taste gedrückt" -#~ msgid "Error stopping camera" -#~ msgstr "Fehler beim Anhalten der Kamera" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "bewegt die Schildkröte rückwärts" -#~ msgid "Error starting camera" -#~ msgstr "Fehler beim Einschalten der Kamera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "y-Koordinate des oberen Bildschirmrandes" -#~ msgid "FollowMe" -#~ msgstr "FolgeMir" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Blöcke anzeigen" +#: pysamples/grecord.py:217 #, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Suche nach einem verbundenen NXT-Stein." - -#~ msgid "calibration" -#~ msgstr "Kalibrierung" +msgid "play" +msgstr "abspielen" +#: pysamples/grecord.py:219 #, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "Speichert eine individuelle Kalibrierung" - -#~ msgid "return a personalized calibration" -#~ msgstr "gib eine individuelle Kalibrierung zurück" - -#~ msgid "follow" -#~ msgstr "folge" - -#~ msgid "follow a color or calibration" -#~ msgstr "folge einer Farbe oder Kalibrierung" - -#~ msgid "minimum pixels" -#~ msgstr "minimale Pixelanzahl" - -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "Setze die Minimalzahl zu verfolgender Pixel fest" - -#~ msgid "threshold" -#~ msgstr "Grenzwert" +msgid "save" +msgstr "speichern" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "setze einen Grenzwert für eine RGB-Farbe" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Farben" -#~ msgid "camera mode" -#~ msgstr "Kameramodus" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "Breite der Schildkrötenspur festlegen" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "Wähle den Farbmodus der Kamera: RGB, YUV oder HSV" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Öffnen" -#~ msgid "x position" -#~ msgstr "x-Position" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "Orientierung" -#~ msgid "return x position" -#~ msgstr "gib die x-Position zurück" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y-Wert" -#~ msgid "y position" -#~ msgstr "y-Position" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke mit " +"mehreren Variablen wie wurzel(x*x+y*y)" -#~ msgid "return y position" -#~ msgstr "gib die y-Position zurück" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "wenn" -#~ msgid "pixels" -#~ msgstr "Pixel" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "Schildkröte zur Position x,y bewegen; (0,0) liegt in Bildschirmmitte." -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "Gib die Zahl der Pixel im größten Fleck zurück" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "Setze den Farbmodus der Kamera auf RGB" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stopp" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "Setze den Farbmodus der Kamera auf YUV" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "Aktion 2" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "Setze den Farbmodus der Kamera auf HSV" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "Aktion 1" -#~ msgid "empty calibration" -#~ msgstr "leere Kalibrierung" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "beende Füllung" -#, fuzzy -#~ msgid "error in string conversion" -#~ msgstr "Fehler bei der Zeichenkettenumwandlung" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopieren" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Einfügen" -#~ msgid "speed SumBot" -#~ msgstr "Geschwindigkeit des SumBot" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "keine Ausgabe erfolgt" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "Übermittle die Geschwindigkeit auf den Sumbot" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Aktivitäten" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "Setze die Standardgeschwindigkeit für die Bewegungsbefehle" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Ins Netz hochladen" -#~ msgid "forward SumBot" -#~ msgstr "SumBot vor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "leere Stapel" -#~ msgid "move SumBot forward" -#~ msgstr "Bewege den SumBot vorwärts" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "nimmt den Wert aus dem FILO-Stapel (first in, last out)" -#~ msgid "backward SumBot" -#~ msgstr "SumBot zurück" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Alles löschen" -#~ msgid "move SumBot backward" -#~ msgstr "Bewege den SumBot rückwärts" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palette der Präsentationsvorlagen" -#~ msgid "stop SumBot" -#~ msgstr "SumBot anhalten" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "Winkel" -#~ msgid "stop the SumBot" -#~ msgstr "Halte den SumBot an" +# (Markus S.) 'Gleichheit'? +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "Gleichheit" -#~ msgid "left SumBot" -#~ msgstr "SumBot nach links" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Speichern/Laden" -#~ msgid "turn left the SumBot" -#~ msgstr "Drehe den SumBot nach links" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "oben: y" -#~ msgid "right SumBot" -#~ msgstr "SumBot nach rechts" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "Audio" -#~ msgid "turn right the SumBot" -#~ msgstr "Drehe den SumBot nach rechts" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Werkzeuge" -#~ msgid "angle to center" -#~ msgstr "Winkel zum Zentrum" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "Bestimme den Winkel zum Zentrum des Dohyo." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "Anmerkung" -#~ msgid "angle to Enemy" -#~ msgstr "Winkel zum Gegner" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "Die untere Zahleneingabe von der oberen subtrahieren" -#~ msgid "get the angle to the Enemy" -#~ msgstr "Bestimme den Winkel zum Gegner." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "Medien unterbrechen" -#~ msgid "x coor. SumBot" -#~ msgstr "x-Koordinate Roboter" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "Füge den Ziel-RGB-Wert zum Stapel hinzu" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "Bestimme die x-Koordinate des Roboters." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"Tastatureingabe auslesen (das Ergebnis wird im Tastaturblock gespeichert)" -#~ msgid "y coor. SumBot" -#~ msgstr "y-Koordinate Roboter" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Kartesisch" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "Bestimme die y-Koordinate des Roboters." +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "Bildschirm leeren und Schildkröte zurücksetzen" -#~ msgid "x coor. Enemy" -#~ msgstr "x-Koordinate Gegner" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "Mikrofoneingangssignal" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "Bestimme die x-Koordinate des Gegners." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "Gibt die Farbe zurück, welche die Schildkröte \"sieht\"." -#~ msgid "y coor. Enemy" -#~ msgstr "y-Koordinate Gegner" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "Stapel von Aktion 1 afurufen" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "Bestimme die y-Koordinate des Gegners." +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palette der Schildkröten-Befehle" -#~ msgid "rotation SumBot" -#~ msgstr "Drehung Roboter" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "Endlos wiederholen" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "Bestimme die Drehung des Roboters." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "zeige ausgerichtet" -#~ msgid "rotation Enemy" -#~ msgstr "Drehung Gegner" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Schildkrötenkunst" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "Bestimme die Drehung des Gegners." +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Willst du %s erneut installieren?" -#~ msgid "distance to center" -#~ msgstr "Entfernung zur Mitte" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Projekt laden" -# Dohyo != Dojo (see Wikipedia) -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "Bestimme die Entfernung zur Mitte des Dohyo." +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projekt" -#~ msgid "distance to Enemy" -#~ msgstr "Entfernung zum Gegner" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Fehlersuche" -#~ msgid "get the distance to the Enemy" -#~ msgstr "Bestimme die Entfernung zum Gegner." +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Maus-darüber-Hilfe ausschalten" -#~ msgid "update information" -#~ msgstr "aktualisiere Informationen" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "update information from the server" -#~ msgstr "Aktualisiere die Informationen vom Server." +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Kennwort" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palette der Physikblöcke" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "Vertikaler Zwischenraum" -#~ msgid "start polygon" -#~ msgstr "Vieleck anfangen" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Starte die Schildkrötenkunst bitte neu, um das Plugin zu benützen." -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Fange an der aktuellen Position der Schildkröte an, ein Vieleck zu " -#~ "erstellen." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"Schließt ein gefülltes Polygon ab (benötigt einen Füllung-beginnen-Block)" -#~ msgid "add point" -#~ msgstr "Punkt hinzufügen" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Teilen" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Füge dem aktuellen Vieleck eine neue Ecke an der aktuellen Position der " -#~ "Schildkröte hinzu." +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "kleiner als" -#~ msgid "end polygon" -#~ msgstr "Vieleck beenden" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "Quadratwurzel" -#~ msgid "Define a new polygon." -#~ msgstr "Definiere ein neues Vieleck." +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Koordinaten skalieren" -#~ msgid "end filled polygon" -#~ msgstr "Ausgefülltes Vieleck beenden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "Blöcke anzeigen" -#~ msgid "Not a simple polygon" -#~ msgstr "Kein einfaches Vieleck" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Beenden" -#~ msgid "Define a new filled polygon." -#~ msgstr "Definiere ein neues gefülltes Vieleck." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Beschreibungsfeld im Sugar-Tagebuch" -#~ msgid "triangle" -#~ msgstr "Dreieck" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "setze Grauton" -#~ msgid "base" -#~ msgstr "Basis" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "Darstellung als Spiegelstrichliste" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Füge ein Dreiecksobjekt zum Projekt hinzu." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "Dauer" -#~ msgid "circle" -#~ msgstr "Kreis" +#: turtleblocks.py:354 +msgid "New" +msgstr "Neu" -#~ msgid "Add a circle object to the project." -#~ msgstr "Füge ein Kreisobjekt zum Projekt hinzu." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "Kommentar in dein Programm einfügen" -#~ msgid "rectangle" -#~ msgstr "Rechteck" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "lies Pixel" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Füge ein Rechtecksobjekt zum Projekt hinzu." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "Skalierung" -#~ msgid "reset" -#~ msgstr "Zurücksetzen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "unten" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Setze das Projekt zurück; leere die Objektliste." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "Violett" -#~ msgid "motor" -#~ msgstr "Motor" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Koordinaten herunterskalieren" -#~ msgid "torque" -#~ msgstr "Drehmoment" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "Zum Öffnen klicken" -#~ msgid "speed" -#~ msgstr "Geschwindigkeit" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "Mikrofoneingangstonhöhe" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Drehmoment des Motors und Geschwindigkeit variieren von 0 (aus) zu positiven " -#~ "Zahlen; der Motor wird auf dem zuletzt erzeugten Objekt platziert." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Konfiguration" -#~ msgid "pin" -#~ msgstr "Fixierung" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Beschreibung:" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Hefte ein Objekt fest an, sodass es nicht fallen kann." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "Tagebuch" -#~ msgid "joint" -#~ msgstr "Verbindung" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "Mülleimer leeren" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Verbinde zwei Objekte miteinander (das zuletzt erzeugte Objekt und das " -#~ "Objekt am Punkt x, y)." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Die Schildkröte zeichnet, wenn sie sich bewegt." -#~ msgid "save as Physics activity" -#~ msgstr "Speichern als Physik-Aktivität" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Laden..." -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Speichere das Projekt als Physik-Aktivität ins Tagebuch." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Audioobjekt aus dem Sugar-Tagebuch" -#~ msgid "gear" -#~ msgstr "Zahnrad" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Schildkröte anhalten" -#~ msgid "Add a gear object to the project." -#~ msgstr "Füge ein Zahnradobjekt zum Projekt hinzu." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Schildkröte" -# (Markus S.) 'Gleichheit'? -#~ msgid "density" -#~ msgstr "Dichte" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "Die Ausrichtung der Block-Palette ändern" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "Setze die Dichte als Eigenschaft für Objekte (Dichte kann jede positive Zahl " -#~ "sein)." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "speichere in" -#~ msgid "friction" -#~ msgstr "Reibung" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Blöcke verbergen" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Setze die Reibung als Eigenschaft für Objekte (ein Wert zwischen 0 und 1, " -#~ "wobei 0 Reibungslosigkeit bedeutet und 1 starke Reibung)." +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Python-Block laden" -#~ msgid "bounciness" -#~ msgstr "Elastizität" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Setze die Elastizität als Eigenschaft für Objekte (ein Wert zwischen 0 und " -#~ "1, wobei 0 keine und 1 volle Elastizität bedeutet)." +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "oder" -#~ msgid "dynamic" -#~ msgstr "Beweglichkeit" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "Präsentationsvorlage: Spiegelstrichliste" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Bei Beweglichkeit = 1 kann sich das Objekt bewegen; bei Beweglichkeit = 0 " -#~ "besitzt es eine feste Position." +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "Identitätsoperator, um Blöcke zu erweitern" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palette der WeDo-Blöcke" +# (Markus S.) 'Blöcke verkleinern'? +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Blöcke verkleinern" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "Ausgabe des Neigungssensors: (-1 == keine Neigung, 0 == vorwärts, 3 == " -#~ "rückwärts, 1 == nach links geneigt, 2 == nach rechts geneigt)" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "Größe des Textes festlegen, den die Schildkröte zeichnet" -#~ msgid "distance sensor output" -#~ msgstr "Ausgabe des Entfernungssensors" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"Die aktuelle Richtung der Schildkröte (kann an Stelle eines Zahlenblocks " +"benutzt werden)" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "Bild" -#~ msgid "returns the current value of Motor A" -#~ msgstr "Liefert den aktuellen Wert von Motor A." +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "Eine Zufallszahl zwischen dem Minimal- (oben) und Maximalwert (unten)" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"Die aktuelle Stiftfarbe (kann an Stelle eines Zahlenblocks benutzt werden)" -#~ msgid "returns the current value of Motor B" -#~ msgstr "Liefert den aktuellen Wert von Motor B." +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Palette anzeigen" -#~ msgid "set the value for Motor A" -#~ msgstr "Setze den Wert für Motor A." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "Ein Bild ins Sugar-Tagebuch speichern" -#~ msgid "set the value for Motor B" -#~ msgstr "Setze den Wert für Motor B." +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Momentaufnahme speichern" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palette der LEGO-NXT-Blöcke für Motoren" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "starte" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palette der LEGO-NXT-Blöcke für Sensoren" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "Gibt Wahr zurück, wenn der Stapel leer ist." -#~ msgid "touch" -#~ msgstr "Berührung" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "bewegt die Schildkröte vorwärts" -#~ msgid "ultrasonic" -#~ msgstr "Ultraschall" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "gehe vorwärts" -#~ msgid "light" -#~ msgstr "Helligkeit" +# (Markus S.) 'Rahmen'? +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "Meine Box" -#, fuzzy -#~ msgid "grey" -#~ msgstr "Grau" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Account-Kennung" +#: TurtleArt/tawindow.py:1310 #, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Überprüfe bitte die Verbindung mit dem Stein." +msgid "Select blocks to share" +msgstr "Wähle Blöcke zum Teilen" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "Der Wert der Spannung muss zwischen -127 und 127 liegen." +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "zurück" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "" -#~ "Ein Fehler ist aufgetreten: Überprüfe sämtliche Verbindungen und versuche " -#~ "erneut zu verbinden." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "Skalierung der Medien setzen" -#~ msgid "NXT not found" -#~ msgstr "NXT nicht gefunden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "behält aktuellen Skalierungsfaktor bei" -#~ msgid "refresh NXT" -#~ msgstr "NXT erneuern" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "Präsentation 1x1" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Suche nach einem verbundenen NXT-Stein." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "Präsentation 1x2" -#~ msgid "play tone" -#~ msgstr "Ton abspielen" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "Stapelanfang einer benennbaren Aktion" -#~ msgid "frequency" -#~ msgstr "Frequenz" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "Zahlenwert in benannte Variable speichern" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Spiele einen Ton einer Frequenz für die Dauer ab." +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "Logischer ODER-Operator" -#~ msgid "port" -#~ msgstr "Port" +#: 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 "Mikrofoneingangsspannung" -#~ msgid "power" -#~ msgstr "Spannung" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "So oft wiederholen, wie angegeben" -#~ msgid "rotations" -#~ msgstr "Drehungen" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Speichern..." -#~ msgid "turn a motor" -#~ msgstr "Einen Motor drehen" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "Stapel von Aktion 2 aufrufen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 #, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "Zwei Motoren synchronisieren" - -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "" -#~ "Synchronisiert zwei Motoren, die an PORT B und PORT C angeschlossen sind." - -#~ msgid "PORT A" -#~ msgstr "PORT A" - -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A des Steins" - -#~ msgid "PORT B" -#~ msgstr "PORT B" - -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B des Steins" - -#~ msgid "PORT C" -#~ msgstr "PORT C" - -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C des Steins" - -#~ msgid "start motor" -#~ msgstr "Motor starten" - -#~ msgid "Run a motor forever." -#~ msgstr "Lass einen Moter dauernd laufen." +msgid "setxy" +msgstr "setze xy" -#~ msgid "brake motor" -#~ msgstr "Motor anhalten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "Titel: y" -#~ msgid "Stop a specified motor." -#~ msgstr "Stopp einen bestimmten Motor." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "Titel: x" -#~ msgid "reset motor" -#~ msgstr "Motor zurücksetzen" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "fülle Bildschirm" -#~ msgid "Reset the motor counter." -#~ msgstr "Setze den Motorzähler zurück." +#: pysamples/journal-stats.py:78 +#, fuzzy +msgid "other" +msgstr "Sonstiges" -#~ msgid "motor position" -#~ msgstr "Motorposition" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Speichern unter" -#~ msgid "Get the motor position." -#~ msgstr "Erhalte die Motorposition." +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "setze xy" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "Müll" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 des Steins" +# (Markus S.) Vergleiche 'Cartesian' +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "Polar" -#~ msgid "read" -#~ msgstr "Auslesen" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "wiederhole" -#~ msgid "sensor" -#~ msgstr "Sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "Das Ende der aktuellen Video- oder Audio-Wiedergabe abwarten" -#~ msgid "Read sensor output." -#~ msgstr "Lies die Sensorausgabe aus." +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Als Bild speichern" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Bearbeiten" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 des Steins" +#: 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 "Mikrofoneingangswiderstand" -#~ msgid "light sensor" -#~ msgstr "Helligkeitssensor" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "Stapelanfang von Aktion 2" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "Dividiert die obere Zahleneingabe (Zähler) durch die untere (Nenner)" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 des Steins" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "touch sensor" -#~ msgstr "Berührungssensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "Zeigt den Wert im Statusblock am unteren Bildschirmrand an" -#~ msgid "distance sensor" -#~ msgstr "Entfernungssensor" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "beginne Füllung" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "Beinhaltet das Ergebnis des Tastaturabfrage-Blocks als ASCII-Zeichen." -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 des Steins" +#. #-#-#-#-# de.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# de.po (turtleart-activity) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "ablegen" -#~ msgid "sound sensor" -#~ msgstr "Geräuschsensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke mit " +"mehreren Variablen, z.B. sin(x+y+z)" -#~ msgid "color sensor" -#~ msgstr "Farbsensor" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "Alles rückgängig" -#~ msgid "set light" -#~ msgstr "Helligkeit einstellen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "Hallo" -#~ msgid "Set color sensor light." -#~ msgstr "Stelle die Helligkeit des Farbsensors ein." +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "Schildkrötenblöcke" -#~ msgid "battery level" -#~ msgstr "Batterieladung" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" +#: TurtleArtActivity.py:766 #, fuzzy -#~ msgid "Get battery level of the brick" -#~ msgstr "Der Ladezustand der Batterie des Steins" +msgid "Palettes" +msgstr "Palette" -#~ msgid "HIGH" -#~ msgstr "HOCH" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "LOW" -#~ msgstr "NIEDRIG" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Installiere bitte die Sprechen-Aktitvität und versuch es noch einmal." -#~ msgid "INPUT" -#~ msgstr "EINGANG" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Spanisch" -#~ msgid "OUTPUT" -#~ msgstr "AUSGANG" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "Englisch" -#~ msgid "PWM" -#~ msgstr "PWM" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Tut mir leid, ich kann nicht verstehen, wonach du fragst." -#~ msgid "SERVO" -#~ msgstr "SERVO" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" +"Entschuldige, es gibt keinen freien Speicher, um mein Gehirn zu laden. " +"Schließe andere Aktivitäten und versuch es noch einmal." -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "FEHLER: Überprüfe den Arduino und die Portnummer." +#: turtleblocks.py:407 +msgid "About..." +msgstr "" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "FEHLER: Der Wert muss eine Zahl von 0 bis 255 sein." +#~ msgid "magnetic induction" +#~ msgstr "Magnetische Induktion" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "FEHLER: Der Wert muss entweder HOCH oder NIEDRIG sein." +#~ msgid "vibration" +#~ msgstr "Vibration" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "" -#~ "FEHLER: Der Modus muss entweder EINGANG oder AUSGANG oder PWM oder SERVO " -#~ "sein." +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "Bewege den Butia-Roboter eine vordefinierte Entfernung vor." -#~ msgid "pin mode" -#~ msgstr "Pin-Modus" +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "Bewege den Butia-Roboter eine vordefinierte Entfernung zurück." -#~ msgid "mode" -#~ msgstr "Modus" +#~ msgid "turn Butia" +#~ msgstr "Butia drehen" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Wähle die Pin-Funktion (EINGANG, AUSGANG, PWM, SERVO)." +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "Drehe den Butia-Roboter um x Grad." -#~ msgid "analog write" -#~ msgstr "Analog Schreiben" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "" +#~ "Gibt den Grauwert des Objektes als eine Zahl zwischen 0 und 1023 zurück." -#~ msgid "Write analog value in specified port." -#~ msgstr "Schreibe analogen Wert in den angegebenen Port." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "" +#~ "Gibt die Umgebungshelligkeit als eine Zahl zwischen 0 und 1023 zurück." -#~ msgid "analog read" -#~ msgstr "Analog Lesen" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "" +#~ "Gibt die Umgebungstemperatur als eine Zahl zwischen 0 und 255 zurück." #~ 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." +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgstr "" -#~ "Lies den Wert aus dem analogen Port. Der Wert darf zwischen 0 und 1023 " -#~ "liegen. Benutze Vref, um die Spannun zu bestimmen. Für USB gilt ungefähr " -#~ "volt=((read)*5)/1024." - -#~ msgid "digital write" -#~ msgstr "Digital Schreiben" - -#~ msgid "Write digital value to specified port." -#~ msgstr "Schreibe digitalen Wert in den angegebenen Port." - -#~ msgid "digital read" -#~ msgstr "Digital Lesen" - -#~ msgid "Read value from digital port." -#~ msgstr "Lies den Wert aus dem digitalen Port." - -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Setze HOCH-Wert für den digitalen Port." - -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Konfiguriere den Arduino-Port für den digitalen Eingang." - -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Konfiguriere den Arduino-Port, um ein Servo anzusteuern." - -#~ msgid "Set LOW value for digital port." -#~ msgstr "Setze NIEDRIG-Wert für den digitalen Port." - -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Konfiguriere den Arduino-Port für den digitalen Ausgang." - -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Konfiguriere den Arduino-Port für PWM (Pulsweitenmodulierung)." - -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palette der WeDo-Blöcke" +#~ "Gibt die Entfernung zu dem Objekt vor dem Sensor als eine Zahl zwischen 0 " +#~ "und 255 zurück." #, fuzzy -#~ msgid "samples" -#~ msgstr "Vorlagen" +#~ msgid "grey" +#~ msgstr "Grau" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" #~ "Setzt die Geschwindigkeit der Butia-Motoren als einen Wert zwischen 0 und " #~ "1023, der als Argument übergeben wird." @@ -2878,7 +3899,8 @@ msgstr "Projekt speichern?" #~ msgstr "Zugeklappter Stapel: zum Öffnen anklicken" #~ msgid "bottom block in a collapsed stack: click to open" -#~ msgstr "Unterster Block in einem zugeklappten Stapel: zum Aufklappen klicken" +#~ msgstr "" +#~ "Unterster Block in einem zugeklappten Stapel: zum Aufklappen klicken" #~ msgid "top of stack" #~ msgstr "Stapelanfang" @@ -2946,8 +3968,10 @@ msgstr "Projekt speichern?" #, fuzzy #~ msgid "" -#~ "returns the object gray level encountered him as a number between 0 and 1023" -#~ msgstr "gibt den Grauwert des Objektes als eine Zahl zwischen 0 und 1023 zurück" +#~ "returns the object gray level encountered him as a number between 0 and " +#~ "1023" +#~ msgstr "" +#~ "gibt den Grauwert des Objektes als eine Zahl zwischen 0 und 1023 zurück" #~ msgid "activity count" #~ msgstr "Aktivitätszähler" @@ -3051,10 +4075,11 @@ msgstr "Projekt speichern?" #~ msgid "restore last" #~ msgstr "Letztes rückgängig" -#~ 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 "" -#~ "Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke wie " -#~ "sin(x)" +#~ "Ein programmierbarer Block für fortgeschrittene mathematische Ausdrücke " +#~ "wie sin(x)" #~ msgid "blocks" #~ msgstr "Blöcke" @@ -3067,7 +4092,8 @@ msgstr "Projekt speichern?" #~ msgid "holds current text color (can be used in place of a number block)" #~ msgstr "" -#~ "Die aktuelle Schriftfarbe (kann an Stelle eines Zahlenblocks benutzt werden)" +#~ "Die aktuelle Schriftfarbe (kann an Stelle eines Zahlenblocks benutzt " +#~ "werden)" #~ msgid "picture top" #~ msgstr "Oberer Bildrand" @@ -3113,7 +4139,8 @@ msgstr "Projekt speichern?" #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "" -#~ "Die aktuelle Schriftgröße (kann an Stelle eines Zahlenblocks benutzt werden)" +#~ "Die aktuelle Schriftgröße (kann an Stelle eines Zahlenblocks benutzt " +#~ "werden)" #~ msgid "extras" #~ msgstr "Extras" @@ -3154,10 +4181,11 @@ msgstr "Projekt speichern?" #~ "benutzt werden)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" -#~ "ein programmierbarer Block: füge deinen eigenen mathematischen Term in den " -#~ "Block ein, z.B. sin(x)" +#~ "ein programmierbarer Block: füge deinen eigenen mathematischen Term in " +#~ "den Block ein, z.B. sin(x)" #~ msgid "pop value off FILO" #~ msgstr "Wert aus FILO-Stapel holen: pop" diff --git a/po/dz.po b/po/dz.po index 358548b..8bcc906 100644 --- a/po/dz.po +++ b/po/dz.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# dz.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# dz.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# dz.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# dz.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/el.po b/po/el.po index 5756f92..887c717 100644 --- a/po/el.po +++ b/po/el.po @@ -1,13 +1,50 @@ +# #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1205 +59,1528 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Παλέτα εντολών της χελώνας" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "μπροστά" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "μετακίνηση της χελώνας μπροστά" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "πίσω" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "μετακίνηση της χελώνας προς τα πίσω" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "καθαρισμός" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "καθαρίζει την οθόνη και επανατοποθετεί τη χελώνα" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "αριστερά" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "περιστρέφει τη χελώνα αριστερόστροφα (γωνία σε μοίρες)" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "δεξιά" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "περιστροφή της χελώνας δεξιόστροφα (γωνία σε μοίρες)" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "τόξο" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "γωνία" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "ακτίνα" +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "μετακίνηση της χελώνας κατά μήκος ενός τόξου" +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "ορισμός χy" +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "χ" +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:71 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -"μετακίνηση της χελώνας στη θέση xσυντ, yσυντ; (0, 0) είναι στο κέντρο της " -"οθόνης." -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "ορισμός επικεφαλίδας" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "ορισμός επικεφαλίδας της χελώνας (0 προς την κορυφή της οθόνης)" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xσυντ" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:76 +msgid "returns the value of the resistance" msgstr "" -"διατήρηση τρέχουσας τιμής της x-συντεταγμένης της χελώνας (μπορεί να " -"χρησιμοποιηθεί στη θέση ενός αριθμού τμήματος)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "yσυντ" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:78 +msgid "button" msgstr "" -"διατήρηση τρέχουσας τιμής της y-συντεταγμένης της χελώνας (μπορεί να " -"χρησιμοποιηθεί στη θέση ενός αριθμού τμήματος)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "επικεφαλίδα" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:80 +msgid "ambient light" msgstr "" -"διατήρηση τρέχουσας επικεφαλίδας της χελώνας (μπορεί να χρησιμοποιηθεί στη " -"θέση μιας αριθμητικής εντολής)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Παλέτα εντολών του στιλό" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "γέμισμα οθόνης" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "χρώμα" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "σκιά" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "γέμισμα του παρασκηνίου με (χρώμα, σκιά)" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "γκρίζο" +#: taextras.py:86 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 "αντίσταση" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "ορισμός χρώματος" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "ορισμός χρώματος της γραμμής που σχεδιάζει η χελώνα" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "ορισμός σκιάς" +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "ορισμός σκιάς της γραμμής που σχεδιάζει η χελώνα" +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "ορισμός γκρίζου" +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "ορισμός του επιπέδου γκριζαρίσματος της γραμμής που σχεδιάζει η χελώνα" +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:95 +msgid "set the speed of the Butia motors" msgstr "" -"διατήρηση τρέχοντος χρώματος του στιλό (μπορεί να χρησιμοποιηθεί στη θέση " -"μιας αριθμητικής εντολής)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "συγκρατεί την τρέχουσα σκιά του στιλό" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" msgstr "" -"διατήρηση τρέχοντος επιπέδου του γκρίζου (μπορεί να χρησιμοποιηθεί στη θέση " -"ενός τμήματος αριθμού )" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "στιλό πάνω" +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Η χελώνα δεν θα σχεδιάζει καθώς μετακινείται." +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "στιλό κάτω" +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Η χελώνα θα σχεδιάζει καθώς μετακινείται." +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "ορισμός μεγέθους στιλό" +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "ορισμός μεγέθους της γραμμής που σχεδιάζει η χελώνα" +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "έναρξη γεμίσματος" +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" msgstr "" -"Έναρξη ενός γεμάτου πολύγωνου (χρησιμοποιείται μαζί με τον τερματισμό ενός " -"γεμάτου μπλοκ)" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "τέλος γεμίσματος" +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:111 +msgid "turn Butia" msgstr "" -"ολοκληρώνει ένα γεμάτο πολύγωνο (χρησιμοποιείται μαζί με την έναρξη ενός " -"γεμάτου μπλοκ)" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "μέγεθος στιλό" +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:113 +msgid "stop Butia" msgstr "" -"διατήρηση τρέχοντος μεγέθους του στιλό (μπορεί να χρησιμοποιηθεί στη θέση " -"ενός αριθμού τμήματος)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Παλέτα χρωμάτων του στιλό" +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "κόκκινο" +#: taextras.py:115 +msgid "Butia" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "πορτοκαλί" +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "κίτρινο" +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "πράσινο" +#: taextras.py:121 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "κυανό" +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "μπλε" +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "πορφυρό" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "λευκό" +#: taextras.py:126 +msgid "FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "μαύρο" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "ορισμός χρώματος κειμένου" +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "ορισμός χρώματος του κειμένου που γράφει η χελώνα" +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "ορισμός μεγέθους κειμένου" +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "ορισμός μεγέθους του κειμένου που γράφει η χελώνα" +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Παλέτα αριθμητικών τελεστών" +#: taextras.py:133 +msgid "follow" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "συν" +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "προσθέτει δύο αλφαριθμητικά" +#: taextras.py:135 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 "φωτεινότητα" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "πλην" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "αφαιρεί τον κάτω αριθμό από αυτόν της κορυφής" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "πολλαπλασιασμός" +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "πολλαπλασιάζει δύο αριθμούς" +#: taextras.py:139 +msgid "threshold" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "διαίρεση" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"διαιρεί τον αριθμό της κορυφής (αριθμητής) με τον αριθμό στο κάτω μέρος " -"(παρανομαστής)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "ταυτότητα" +#: taextras.py:149 +msgid "x position" +msgstr "θέση x" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "τελεστής ταυτότητας που χρησιμοποιείται για τις εκτεταμένες εντολές" +#: taextras.py:150 +msgid "return x position" +msgstr "επίστρεψε στη θέση x" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "υπόλοιπο" +#: taextras.py:151 +#, fuzzy +msgid "y position" +msgstr "θέση x" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "αρθρωτός (υπόλοιπο) τελεστής" +#: taextras.py:152 +#, fuzzy +msgid "return y position" +msgstr "επίστρεψε στη θέση x" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:153 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "τετραγωνική ρίζα" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "υπολογίζει την τετραγωνική ρίζα" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "τυχαίο" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "ελάχιστο" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "μέγιστο" +#: taextras.py:161 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:162 +msgid "error in string conversion" msgstr "" -"επιστρέφει έναν τυχαίο αριθμό μεταξύ των ελάχιστων (επάνω) και των μέγιστων " -"(κάτω) τιμών" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "αριθμός" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "χρησιμοποιείται ως αριθμός σε μαθηματικές πράξεις" +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "μεγαλύτερο από" +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "λογικός τελεστής - μεγαλύτερο από (>)" +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "μικρότερο από" +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "λογικός τελεστής - μικρότερο από (<)" +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "ίσο" +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "λογικός τελεστής ισότητας (=)" +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "όχι" +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "λογικός τελεστής άρνησης (όχι)" +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "και" +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "λογικός τελεστής σύζευξης (και)" +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "ή" +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "λογικός τελεστής διάζευξης (ή)" +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Παλέτα τελεστών ροής" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "αναμονή" +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" msgstr "" -"παύει την εκτέλεση του προγράμματος για καθορισμένο αριθμό δευτερολέπτων" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "για πάντα" +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "αδιάκοπη εκτέλεση σε βρόχο" +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "επανάληψη" +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "επανάληψη σύμφωνα με τον καθορισμένο αριθμό" +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "εάν" +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "τότε" +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "εάν τότε" +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" msgstr "" -"εάν - τότε ο τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την παλέτα " -"αριθμών" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "αλλιώς" +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "εάν τότε άλλο" +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:208 +msgid "get the rotation of the Sumbot" msgstr "" -"εάν - τότε άλλος τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την " -"παλέτα αριθμών" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "οριζόντιο διάστημα" +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "ώθηση στοίβας προς τα δεξιά" +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "κάθετο διάστημα" +#: taextras.py:212 +msgid "distance to center" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "ώθηση στοίβας προς τα κάτω" +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "σταμάτημα ενέργειας" +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "διακόπτει την τρέχουσα ενέργεια" +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Παλέτα μεταβλητών εντολών" +#: taextras.py:217 +msgid "update information" +msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "έναρξη" +#: taextras.py:218 +msgid "update information from the server" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "συνδέει την ενέργεια με τα πλήκτρα εκτέλεσης της γραμμής εργαλείων" +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "Παλέτα με μπλοκ αισθητήρων" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "κείμενο" +#: taextras.py:224 +msgid "start polygon" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "αλφαριθμητική τιμή" +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "ενέργεια" +#: taextras.py:227 +msgid "add point" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "κορυφή της επώνυμης ενέργειας της στοίβας" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "επίκληση της επώνυμης ενέργειας της στοίβας" +#: taextras.py:230 +msgid "end polygon" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "αποθήκευση στο πλαίσιο 1" +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "αποθηκεύει την αριθμητική τιμή στη μεταβλητή 1" +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "αποθήκευση στο πλαίσιο 2" +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "αποθηκεύει την αριθμητική τιμή στη μεταβλητή 2" +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "πλαίσιο 1" +#: taextras.py:235 +msgid "triangle" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "μεταβλητή 1 (αριθμητική τιμή)" +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "πλαίσιο 2" +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "ύψος" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "μεταβλητή 2 (αριθμητική τιμή)" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "αποθήκευση στο" +#: taextras.py:240 +msgid "circle" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "πλαίσιο" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "τιμή" +#: taextras.py:242 +msgid "rectangle" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "το δικό μου πλαίσιο" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "πλάτος" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "αποθηκεύει την αριθμητική τιμή στην επώνυμη μεταβλητή" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "μεταβλητή με όνομα (αριθμητική τιμή)" +#: taextras.py:246 +msgid "reset" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "ενέργεια 1" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "κορυφή της στοίβας της ενέργειας 1" +#: taextras.py:248 +msgid "motor" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "ενέργεια 2" +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "κορυφή της στοίβας της ενέργειας 2" +#: taextras.py:251 +msgid "speed" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "επίκληση της ενέργειας 1 της στοίβας" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "επίκληση της ενέργειας 2 της στοίβας" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "κάδος ανακύκλωσης" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "κενός κάδος ανακύκλωσης" +#: taextras.py:256 +msgid "joint" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "διαγράφει μόνιμα τα αντικείμενα του κάδου ανακύκλωσης" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "χ" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "επαναφορά όλων" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "επαναφέρει όλες τις εντολές από τον κάδο ανακύκλωσης" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "καθαρισμός όλων" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "μετακίνηση όλων των εντολών στον κάδο ανακύκλωσης" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Διαμοιρασμός επιλεγμένων εντολών" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Τίτλος" +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Σταμάτημα χελώνας" +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "ταυτότητα" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Εμφάνιση εντολών" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Απόκρυψη εντολών" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "δεν έγινε εξαγωγή στο" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Δεν γνωρίζω πως" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "δεν αρέσει" +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "ως εισαγωγή" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "εμφανίζει την επόμενη παλέτα" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "αλλάζει τον προσανατολισμό των παλετών που περιέχουν τις εντολές" +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "Παλέτα με μπλοκ αισθητήρων" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Φόρτωση..." +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Αποθήκευση..." +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "κάντε κλικ για άνοιγμα" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "προσανατολισμός" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "επόμενο" +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "μετατόπιση" +#: taextras.py:294 +msgid "Motor A" +msgstr "" -#: TurtleArt/tawindow.py:1256 +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "χρώμα" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "δεξιά" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "ήχος" + +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "γκρίζο" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "χρόνος" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +"turn motor\n" +"\n" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Επιλογή εντολών για διαμοιρασμό" +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "Θύρα" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Η Χελωνοτέχνη" +#: taextras.py:345 +msgid "power" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "εικόνα" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Αποθήκευση ως λογότυπο" +#: taextras.py:348 +msgid "turn a motor" +msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Αποθήκευση ως εικόνα" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "στιγμιότυπο οθόνης" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Αποθήκευση στιγμιότυπου" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Κλείσιμο βοήθειας μετεωρισμού" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Άνοιγμα βοήθειας μετεωρισμού" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Εμφάνιση παλέτας" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Απόκρυψη παλέτας" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Μείωση κλιμάκωσης συντεταγμένων" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Αύξηση κλιμάκωσης συντεταγμένων" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Επεξεργασία" +#: taextras.py:358 +msgid "start motor" +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Προβολή" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Έργο" +#: taextras.py:360 +msgid "brake motor" +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Αποθήκευση/Φόρτωση" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Αντιγραφή" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Επικόλληση" +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Επαναφορά εντολών από τον κάδο ανακύκλωσης" +#: taextras.py:365 +msgid "motor position" +msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Πλήρης οθόνη" +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Καρτεσιανές συντεταγμένες" +#: taextras.py:367 +msgid "PORT 1" +msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Πολικές συντεταγμένες" +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Μετρικές συντεταγμένες" +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "κόκκινο" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Ανάπτυξη εντολών" +#: taextras.py:370 +#, fuzzy +msgid "sensor" +msgstr "" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"αισθητήρες" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Συρρίκνωση εντολών" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Φόρτωση παραδείγματος" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Καθαρισμός" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Εκτέλεση" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Βήμα" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Βοήθεια" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Διακοπή" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Φόρτωση έργου" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Φόρτωση πρόσθετου" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Φόρτωση εντολών της Python" +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: TurtleArtActivity.py:766 -msgid "Palettes" +#: taextras.py:382 +msgid "sound sensor" msgstr "" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Ο διαμοιρασμός εντολών είναι απενεργοποιημένος" +#: taextras.py:383 +msgid "color sensor" +msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#. 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:386 +msgid "set light" +msgstr "" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Δεν είναι δυνατή η εγκατάσταση του πρόσθετου" +#: taextras.py:396 +msgid "LOW" +msgstr "" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:397 +msgid "INPUT" msgstr "" -"Παρακαλώ, επανεκκινήστε τη ΧελωνοΤέχνη για να χρησιμοποιήσετε το πρόσθετο" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Το πρόσθετο %s έχει ήδη εγκατασταθεί" +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Θέλετε να ξαναεγκαταστήσετε το %s;" +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Η δική μου συνεδρία της Τέχνης της Χελώνας" +#: taextras.py:401 +msgid "SERVO" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Έναρξη συνεργασίας" +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Δραστηριότητες" +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Φιλαράκια" +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Μοίρασμα" +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Ρύθμιση" +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Γειτονιά" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Ψευδώνυμο" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "ID λογαριασμού" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Διακομιστής" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Θύρα" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Κωδικός πρόσβασης" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Καταχώρηση" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Χρώματα" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" -#: 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 "Φόρτωση" +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "υπόλοιπο" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Αποστολή στο Web" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: gnome_plugins/uploader_plugin.py:90 +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "τιμή" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"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 "" -"Πρέπει να έχετε έναν λογαριασμό στο http://turtleartsite.sugarlabs.org για " -"να ανεβάσετε το έργο σας." -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Όνομα χρήστη:" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Κωδικός πρόσβασης:" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Τίτλος:" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Περιγραφή:" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Αποστολή στο Web" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Άκυρο" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Η σύνδεση απέτυχε" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Αποτυχία αποστολής!" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: 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:330 -msgid "Palette of sensor blocks" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" msgstr "Παλέτα με μπλοκ αισθητήρων" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "επιτάχυνση" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" +#: taextras.py:443 +msgid "set programmable voltage output" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "ήχος" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "ακατέργαστο σήμα εισόδου του μικροφώνου" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "ηχηρότητα" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "ένταση εισόδου μικροφώνου" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "τόνος" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "τόνος εισαγωγής μικροφώνου" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: 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 "αντίσταση" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: 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 "αντίσταση εισόδου μικροφώνου" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: 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 "τάση" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: 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 "τάση εισόδου μικροφώνου" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Παλέτα πολυμεσικών αντικειμένων" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: 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 "φωτεινότητα" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "επίπεδο φωτός που εντοπίστηκε από την κάμερα" +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-#\n" +"Παραδείγματα" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "συνέχιση αναπαραγωγής βίντεο ή ήχου" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Τίτλος" #: 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 "Μέσος όρος χρώματος RGB που μετακινήθηκε με ώθηση προς τη στοίβα" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "κίτρινο" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "εμφανίζει τις πολικές συντεταγμένες" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "αδειάζει το ΠΜΤΕ (Πρώτο-Μέσα Τελευταίο-Έξω)" + #: plugins/camera_sensor/camera_sensor.py:106 #: plugins/camera_sensor/camera_sensor.py:113 #: plugins/camera_sensor/camera_sensor.py:121 @@ -1229,357 +1589,1109 @@ msgstr "Μέσος όρος χρώματος RGB που μετακινήθηκε msgid "camera output" msgstr "έξοδος κάμερας" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "επίπεδο φωτός που έχει ανιχνευθεί από τον αισθητήρα φωτός" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"εάν - τότε ο τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την παλέτα " +"αριθμών" + +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "ώθηση στοίβας προς τα δεξιά" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Ημερολόγιο του Sugar: αντικείμενο πολυμέσων" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "πλαίσιο 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "πλαίσιο 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Βήμα" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "πολλαπλασιάζει δύο αριθμούς" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Εμφάνιση/Απόκρυση εντολών" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Απόκρυψη παλέτας" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Φιλαράκια" + +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Η δική μου συνεδρία της Τέχνης της Χελώνας" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Αντικείμενο ήχου του Ημερολογίου του Sugar" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "κυανό" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xσυντ από δεξιά της οθόνης" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Παλέτα πρόσθετων επιλογών" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Φόρτωση παραδείγματος" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "μετακίνηση όλων των εντολών στον κάδο ανακύκλωσης" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "λίστα" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Κατάλογος ρυθμίσεων μη εγγράψιμος: %s" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "συνέχιση μέσου" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "επικεφαλίδα" + +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Ο διαμοιρασμός εντολών είναι απενεργοποιημένος" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "" +"αποθηκεύει τα γραφικά της Χελώνας ως αρχεία SVG στο Ημερολόγιο του Sugar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "γράφει κείμενο ή εμφανίζει πολυμέσα από το Ημερολόγιο" #: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 msgid "RFID" msgstr "RFID" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "ανάγνωση τιμής από συσκευή RFID" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "βίντεο" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "μπλε" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "εμφανίζει Καρτεσιανές συντεταγμένες" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Δεν υπάρχει επιλογή ενέργειας:" + +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "ώθηση στοίβας προς τα κάτω" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "αρθρωτός (υπόλοιπο) τελεστής" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "κάτω y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "αποθήκευση SVG" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "" +"εκτελεί τον κώδικα που βρέθηκε στο άρθρωμα tamyblock.py το οποίο εντοπίστηκε " +"στο Ημερολόγιο" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "στιλό κάτω" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "αναμονή" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "πλαίσιο" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Αποτυχία αποστολής!" + +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "μετατόπιση" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "επίκληση της επώνυμης ενέργειας της στοίβας" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "ενέργεια" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"κάνε-μέχρι-Αληθής τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την " +"παλέτα αριθμών" + +#: turtleblocks.py:86 +msgid "usage is" +msgstr "το σύνηθες είναι" + +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "μεταβλητή 2 (αριθμητική τιμή)" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "διαίρεση" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "όνομα εικόνας" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 msgid "while" msgstr "λευκό" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "το πλάτος του καμβά" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "κενός σωρός" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "μεταβλητή με όνομα (αριθμητική τιμή)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "επόμενο" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "εάν τότε" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "ορισμός μεγέθους στιλό" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" msgstr "" -"κάνε-ενώ-Αληθής τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την " -"παλέτα αριθμών" +"πρότυπο παρουσίασης: επιλέξτε αντικείμενο από το Ημερολόγιο (χωρίς περιγραφή)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 msgid "until" msgstr "μέχρι" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "διακοπή μέσου" + +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Άνοιγμα βοήθειας μετεωρισμού" + +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "διαγράφει μόνιμα τα αντικείμενα του κάδου ανακύκλωσης" + +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "μεταβολή" + +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "κορυφή της στοίβας της ενέργειας 1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"κάνε-μέχρι-Αληθής τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την " +"ένα προγραμματιστικό τμήμα εντολών: χρησιμοποιείται για την προσθήκη " +"προχωρημένων μαθηματικών εξισώσεων μιας μεταβλητής, π.χ. sin(x)" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Παλέτα τελεστών ροής" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "κορυφή μιας στοίβας που κατέρρευσε" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"εάν - τότε άλλος τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την " "παλέτα αριθμών" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "κορυφή" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "επιστρέφει τη συντεταγμένη y του ποντικιού" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "κορυφή μιας στοίβας που μπορεί να καταρρεύσει" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "συγκρατεί την τρέχουσα σκιά του στιλό" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "Ημερολόγιο" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Η σύνδεση απέτυχε" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Ημερολόγιο του Sugar: αντικείμενο πολυμέσων" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "αριστερό x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ήχος" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "ορισμός επικεφαλίδας" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Ημερολόγιο του Sugar: αντικείμενο ήχου" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "Το χρώμα ΚΠΜ κάτω από τη χελώνα προωθήθηκε στη Στοίβα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "βίντεο" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "γέμισμα του καμβά με κρυμμένα εντολές" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Αντικείμενο ήχου του Ημερολογίου του Sugar" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "οριζόντιο διάστημα" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Μετρικές συντεταγμένες" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "αλφαριθμητική τιμή" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "περιγραφή" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Ημερολόγιο του Sugar: πεδίο περιγραφής" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Δεν γνωρίζω πως" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "εμφάνιση" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "ορισμός μεγέθους κειμένου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "γράφει κείμενο ή εμφανίζει πολυμέσα από το Ημερολόγιο" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Όνομα χρήστη:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "εμφάνιση στοιχισμένων" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"Έναρξη ενός γεμάτου πολύγωνου (χρησιμοποιείται μαζί με τον τερματισμό ενός " +"γεμάτου μπλοκ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "ορισμός κλίμακας" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "πρότυπο παρουσίασης: επιλέξτε τέσσερα αντικείμενα από το Ημερολόγιο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "ορισμός της κλίμακας των πολυμέσων" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Προβολή" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "ορισμός του επιπέδου γκριζαρίσματος της γραμμής που σχεδιάζει η χελώνα" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Κωδικός πρόσβασης:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "η χελώνα βλέπει" + +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "σταμάτημα ενέργειας" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "πράσινο" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "σκιά" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "γέμισμα του παρασκηνίου με (χρώμα, σκιά)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 msgid "save picture" msgstr "αποθήκευση εικόνας" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "όνομα εικόνας" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "τόνος" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "αποθηκεύει την εικόνα στο Ημερολόγιο του Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "επιστρέφει 1 εάν πατηθεί το πλήκτρο του ποντικιού" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "αποθήκευση SVG" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Αύξηση κλιμάκωσης συντεταγμένων" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "στιλό πάνω" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "πορτοκαλί" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" msgstr "" -"αποθηκεύει τα γραφικά της Χελώνας ως αρχεία SVG στο Ημερολόγιο του Sugar" +"παύει την εκτέλεση του προγράμματος για καθορισμένο αριθμό δευτερολέπτων" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "κλίμακα" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "προωθεί την τιμή στη ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "συγκρατεί την τρέχουσα τιμή της κλίμακας" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "καθαρισμός όλων" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "τότε" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Καταχώρηση" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "όχι" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "εάν τότε άλλο" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "διακόπτει την τρέχουσα ενέργεια" + +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "περιστροφή της χελώνας δεξιόστροφα (γωνία σε μοίρες)" + +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"διατήρηση τρέχοντος επιπέδου του γκρίζου (μπορεί να χρησιμοποιηθεί στη θέση " +"ενός τμήματος αριθμού )" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xσυντ από αριστερά της οθόνης" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Ρύθμιση μεγέθους πλαισίου εντολών" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "χελώνα" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "εμφανίζει την επόμενη παλέτα" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "απόκρυψη εντολών" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "επίπεδο φωτός που εντοπίστηκε από την κάμερα" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "λογικός τελεστής - μικρότερο από (<)" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "επαναφέρει όλες τις εντολές από τον κάδο ανακύκλωσης" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Αποθήκευση" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "αποθήκευση στο πλαίσιο 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "αποθήκευση στο πλαίσιο 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "αποκρύπτει τις εργαλειοθήκες του Sugar" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"διατήρηση τρέχουσας τιμής της x-συντεταγμένης της χελώνας (μπορεί να " +"χρησιμοποιηθεί στη θέση ενός αριθμού τμήματος)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "εκτύπωση" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "επιστρέφει τη συντεταγμένη x του ποντικιού" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Αποθήκευση ως λογότυπο" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "ορισμός χρώματος της γραμμής που σχεδιάζει η χελώνα" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "ορισμός χρώματος κειμένου" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "ηχηρότητα" + +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Έναρξη συνεργασίας" + +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Φόρτωση πρόσθετου" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +msgid "returns True if mouse button is pressed" +msgstr "επιστρέφει 'Αληθές' εάν πατηθεί το πλήκτρο του ποντικιού" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "αριθμός" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "ερώτημα πληκτρολογίου" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "κορυφή" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Αποστολή στο Web" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Καρτεσιανές συντεταγμένες" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Ψευδώνυμο" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "ορισμός κλίμακας" + +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Διαμοιρασμός επιλεγμένων εντολών" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "λευκό" + +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "συνδέει την ενέργεια με τα πλήκτρα εκτέλεσης της γραμμής εργαλείων" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "" +"χρόνος που πέρασε (σε δευτερόλεπτα) από τη στιγμή που ξεκίνησε το πρόγραμμα" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Άκυρο" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "το ύψος του καμβά" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "παρουσίαση 2X1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "πλην" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "και" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "κορυφή μιας στοίβας που μπορεί να καταρρεύσει" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "ως εισαγωγή" + +#: 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:653 +msgid "Python block" +msgstr "Εντολές Python" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 msgid "media wait" msgstr "αναμονή για πολυμέσα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "αναμονή για ολοκλήρωση του τρέχοντος βίντεο ή ήχου" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "επιτάχυνση" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "διακοπή μέσου" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"διατήρηση τρέχοντος μεγέθους του στιλό (μπορεί να χρησιμοποιηθεί στη θέση " +"ενός αριθμού τμήματος)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "διακοπή βίντεο ή ήχου" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "ορισμός χρώματος" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "παύση μέσου" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "ελάχιστο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "παύση βίντεο ή ήχου" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "φόρτωση του δικού μου πλαισίου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "συνέχιση μέσου" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Παλέτα εντολών του στιλό" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "συνέχιση αναπαραγωγής βίντεο ή ήχου" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "εμφανίζει την τιμή στη ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "ομιλία" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"κάνε-ενώ-Αληθής τελεστής που χρησιμοποιεί λογικές τιμές τελεστών από την " +"παλέτα αριθμών" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "γεια" +#: turtleblocks.py:363 +msgid "File" +msgstr "Αρχείο" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "λογικός τελεστής άρνησης (όχι)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "yσυντ από το κάτω μέρος της οθόνης" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "" +"πρότυπο παρουσίασης: επιλέξτε αντικείμενο από το Ημερολόγιο (με περιγραφή)" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Παλέτα αριθμητικών τελεστών" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "πολλαπλασιασμός" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "για πάντα" + +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Το πρόσθετο %s έχει ήδη εγκατασταθεί" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "ορισμός σκιάς της γραμμής που σχεδιάζει η χελώνα" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 msgid "speaks text" msgstr "κείμενο ομιλίας" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "στιγμιότυπο οθόνης" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "καθαρισμός" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "διάρκεια" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "πρότυπο παρουσίασης: επιλέξτε δύο αντικείμενο από το Ημερολόγιο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Ανάπτυξη εντολών" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "πλήκτρο κάτω" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Πλήρης οθόνη" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "επιστρέφει 1 εάν πατηθεί το πλήκτρο του ποντικιού" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Το αρχείο δεν βρέθηκε" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -msgid "returns True if mouse button is pressed" -msgstr "επιστρέφει 'Αληθές' εάν πατηθεί το πλήκτρο του ποντικιού" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "εμφάνιση" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "κείμενο" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "τυχαίο" + +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "λογικός τελεστής - μεγαλύτερο από (>)" + +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "περιστρέφει τη χελώνα αριστερόστροφα (γωνία σε μοίρες)" + +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "μαύρο" + +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "υπολογίζει την τετραγωνική ρίζα" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"διατήρηση τρέχουσας τιμής της y-συντεταγμένης της χελώνας (μπορεί να " +"χρησιμοποιηθεί στη θέση ενός αριθμού τμήματος)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 msgid "mouse x" msgstr "συντεταγμένη x του ποντικιού" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "επιστρέφει τη συντεταγμένη x του ποντικιού" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 msgid "mouse y" msgstr "συντεταγμένη y του ποντικιού" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "επιστρέφει τη συντεταγμένη y του ποντικιού" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "διακοπή" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "ερώτημα πληκτρολογίου" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "μεγαλύτερο από" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"ερώτημα για τα δεδομένα εισόδου του πληκτρολογίου (τα αποτελέσματα θα " -"αποθηκευτούν στην εντολή πληκτρολογίου)" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xσυντ" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Βοήθεια" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "Αποθήκευση έργου;" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "επιλέξτε σε ποια χελώνα θέλετε να δώσετε εντολή" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "δεξιό x" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "ορισμός χρώματος του κειμένου που γράφει η χελώνα" + +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "επίπεδο φωτός που έχει ανιχνευθεί από τον αισθητήρα φωτός" + +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Δεν είναι δυνατή η εγκατάσταση του πρόσθετου" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 msgid "keyboard" msgstr "πληκτρολόγιο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "διατηρεί τα αποτελέσματα του ερωτήματος - εντολή πληκτρολογίου" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "ανάγνωση εικονοστοιχείου" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "τόξο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "Το χρώμα ΚΠΜ κάτω από τη χελώνα προωθήθηκε στη Στοίβα" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "ακτίνα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "η χελώνα βλέπει" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Πολικές συντεταγμένες" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "επιστρέφει το χρώμα που \"βλέπει\" αυτή η χελώνα" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "ορισμός σκιάς" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "χρόνος" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "λογικός τελεστής σύζευξης (και)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." msgstr "" -"χρόνος που πέρασε (σε δευτερόλεπτα) από τη στιγμή που ξεκίνησε το πρόγραμμα" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Παλέτα πρόσθετων επιλογών" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "ώθηση" +"Πρέπει να έχετε έναν λογαριασμό στο http://turtleartsite.sugarlabs.org για " +"να ανεβάσετε το έργο σας." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "προωθεί την τιμή στη ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Εκτέλεση" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 msgid "show heap" msgstr "εμφάνιση στοίβας" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "εμφανίζει την τιμή στη ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "ορισμός επικεφαλίδας της χελώνας (0 προς την κορυφή της οθόνης)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "κενός σωρός" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "ένταση εισόδου μικροφώνου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "αδειάζει το ΠΜΤΕ (Πρώτο-Μέσα Τελευταίο-Έξω)" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Τίτλος:" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Παλέτα πολυμεσικών αντικειμένων" + +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Επαναφορά εντολών από τον κάδο ανακύκλωσης" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Παλέτα μεταβλητών εντολών" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "χρησιμοποιείται ως αριθμός σε μαθηματικές πράξεις" + +#: 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 "Φόρτωση" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Διακομιστής" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "παρουσίαση 2X2" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "μεταβλητή 1 (αριθμητική τιμή)" + +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Γειτονιά" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "προσθέτει δύο αλφαριθμητικά" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "ίσο" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "αλλιώς" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "δεν αρέσει" + +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "" +"Υπάρχει εργασία μη αποθηκευμένη. Θέλετε να την αποθηκεύσετε πριν την έξοδο;" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "επαναφέρει κρυμμένες εντολές" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "διακοπή βίντεο ή ήχου" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Η χελώνα δεν θα σχεδιάζει καθώς μετακινείται." + +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 msgid "pop" msgstr "απώθηση" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "ανάδυση της τιμής στον σωρό ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "μέγεθος στιλό" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "κενός σωρός" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "κέλυφος χελώνας" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "σχόλιο" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "ομιλία" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "τοποθετεί ένα σχόλιο στον κώδικά σας" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "ανάγνωση τιμής από συσκευή RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "εκτύπωση" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "μετακίνηση της χελώνας κατά μήκος ενός τόξου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "εκτυπώνει την αξία στο πεδίο κατάστασης στο κάτω μέρος της οθόνης" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "πραγματοποίηση μιας μεταβολής" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "λογικός τελεστής ισότητας (=)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Παλέτα χρωμάτων του στιλό" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "παύση βίντεο ή ήχου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"ένα προγραμματιστικό τμήμα εντολών: χρησιμοποιείται για την προσθήκη " -"προχωρημένων μαθηματικών εξισώσεων μιας μεταβλητής, π.χ. sin(x)" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "αποθηκεύει την αριθμητική τιμή στη μεταβλητή 1" + +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "αποθηκεύει την αριθμητική τιμή στη μεταβλητή 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "τοποθετεί ένα τροποποιημένο \"κέλυφος\" πάνω στη χελώνα" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "πλήκτρο κάτω" + +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "μετακίνηση της χελώνας προς τα πίσω" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "yσυντ από την κορυφή της οθόνης" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Εμφάνιση εντολών" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "αναπαραγωγή" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "αποθήκευση" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Χρώματα" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "ορισμός μεγέθους της γραμμής που σχεδιάζει η χελώνα" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Άνοιγμα" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "προσανατολισμός" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "yσυντ" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 msgid "" @@ -1589,419 +2701,728 @@ msgstr "" "μια προγραμματιστική εντολή: χρησιμοποιείται για την προσθήκη προχωρημένων " "μαθηματικών εξισώσεων πολλών μεταβλητών, π.χ. τ_ρ(x*x+y*y)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "εάν" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -"ένα προγραμματιστικό τμήμα εντολών: χρησιμοποιείται για την προσθήκη " -"προχωρημένων μαθηματικών εξισώσεων πολλών μεταβλητών, π.χ. ημ(x+y+z)" +"μετακίνηση της χελώνας στη θέση xσυντ, yσυντ; (0, 0) είναι στο κέντρο της " +"οθόνης." -#: 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:653 -msgid "Python block" -msgstr "Εντολές Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Διακοπή" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "ενέργεια 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "ενέργεια 1" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "τέλος γεμίσματος" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Αντιγραφή" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Επικόλληση" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "δεν έγινε εξαγωγή στο" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Δραστηριότητες" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Αποστολή στο Web" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "κενός σωρός" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "ανάδυση της τιμής στον σωρό ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Καθαρισμός" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Παλέτα προτύπων παρουσιάσεων" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "γωνία" + +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Αποθήκευση/Φόρτωση" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "επάνω y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ήχος" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Εργαλεία" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "αριστερά" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "σχόλιο" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "αφαιρεί τον κάτω αριθμό από αυτόν της κορυφής" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "παύση μέσου" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -"εκτελεί τον κώδικα που βρέθηκε στο άρθρωμα tamyblock.py το οποίο εντοπίστηκε " -"στο Ημερολόγιο" +"ερώτημα για τα δεδομένα εισόδου του πληκτρολογίου (τα αποτελέσματα θα " +"αποθηκευτούν στην εντολή πληκτρολογίου)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 msgid "Cartesian" msgstr "Καρτεσιανό" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "εμφανίζει Καρτεσιανές συντεταγμένες" +#: 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 "τάση" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "πολική" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "καθαρίζει την οθόνη και επανατοποθετεί τη χελώνα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "εμφανίζει τις πολικές συντεταγμένες" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "ακατέργαστο σήμα εισόδου του μικροφώνου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "χελώνα" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "επιστρέφει το χρώμα που \"βλέπει\" αυτή η χελώνα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "επιλέξτε σε ποια χελώνα θέλετε να δώσετε εντολή" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "επίκληση της ενέργειας 1 της στοίβας" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "κέλυφος χελώνας" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Παλέτα εντολών της χελώνας" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "τοποθετεί ένα τροποποιημένο \"κέλυφος\" πάνω στη χελώνα" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "αδιάκοπη εκτέλεση σε βρόχο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "κορυφή μιας στοίβας που κατέρρευσε" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "εμφάνιση στοιχισμένων" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Η Χελωνοτέχνη" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "φόρτωση του δικού μου πλαισίου" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Θέλετε να ξαναεγκαταστήσετε το %s;" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "ορισμός χy" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Φόρτωση έργου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Έργο" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Αποσφαλμάτωση" + +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Κλείσιμο βοήθειας μετεωρισμού" + +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Κωδικός πρόσβασης" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "κάθετο διάστημα" + +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." msgstr "" +"Παρακαλώ, επανεκκινήστε τη ΧελωνοΤέχνη για να χρησιμοποιήσετε το πρόσθετο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" msgstr "" +"ολοκληρώνει ένα γεμάτο πολύγωνο (χρησιμοποιείται μαζί με την έναρξη ενός " +"γεμάτου μπλοκ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Παλέτα προτύπων παρουσιάσεων" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Μοίρασμα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "απόκρυψη εντολών" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "μικρότερο από" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "γέμισμα του καμβά με κρυμμένα εντολές" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "τετραγωνική ρίζα" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Επανακλιμάκωση συντεταγμένων" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 msgid "show blocks" msgstr "εμφάνιση εντολών" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "επαναφέρει κρυμμένες εντολές" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Έξοδος" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "αποκρύπτει τις εργαλειοθήκες του Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Ημερολόγιο του Sugar: πεδίο περιγραφής" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "λίστα" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "ορισμός γκρίζου" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" msgstr "παρουσίαση λίστας με κουκκίδες" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "διάρκεια" + +#: turtleblocks.py:354 +msgid "New" +msgstr "Νέο" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "τοποθετεί ένα σχόλιο στον κώδικά σας" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "ανάγνωση εικονοστοιχείου" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "κλίμακα" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "κάτω μέρος" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "πορφυρό" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Μείωση κλιμάκωσης συντεταγμένων" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "κάντε κλικ για άνοιγμα" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "τόνος εισαγωγής μικροφώνου" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Ρύθμιση" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Περιγραφή:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "Ημερολόγιο" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "κενός κάδος ανακύκλωσης" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Η χελώνα θα σχεδιάζει καθώς μετακινείται." + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Φόρτωση..." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Ημερολόγιο του Sugar: αντικείμενο ήχου" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Σταμάτημα χελώνας" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Χελώνα" + +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "αλλάζει τον προσανατολισμό των παλετών που περιέχουν τις εντολές" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "αποθήκευση στο" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Απόκρυψη εντολών" + +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Φόρτωση εντολών της Python" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "συν" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "ή" + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 msgid "presentation template: list of bullets" msgstr "πρότυπο παρουσίασης: λίστα κουκκίδων" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "" -"πρότυπο παρουσίασης: επιλέξτε αντικείμενο από το Ημερολόγιο (χωρίς " -"περιγραφή)" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "τελεστής ταυτότητας που χρησιμοποιείται για τις εκτεταμένες εντολές" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "" -"πρότυπο παρουσίασης: επιλέξτε αντικείμενο από το Ημερολόγιο (με περιγραφή)" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Συρρίκνωση εντολών" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "πρότυπο παρουσίασης: επιλέξτε τέσσερα αντικείμενα από το Ημερολόγιο" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "ορισμός μεγέθους του κειμένου που γράφει η χελώνα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "πρότυπο παρουσίασης: επιλέξτε δύο αντικείμενο από το Ημερολόγιο" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"διατήρηση τρέχουσας επικεφαλίδας της χελώνας (μπορεί να χρησιμοποιηθεί στη " +"θέση μιας αριθμητικής εντολής)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xσυντ από αριστερά της οθόνης" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "εικόνα" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "κάτω μέρος" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"επιστρέφει έναν τυχαίο αριθμό μεταξύ των ελάχιστων (επάνω) και των μέγιστων " +"(κάτω) τιμών" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "yσυντ από το κάτω μέρος της οθόνης" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"διατήρηση τρέχοντος χρώματος του στιλό (μπορεί να χρησιμοποιηθεί στη θέση " +"μιας αριθμητικής εντολής)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "πλάτος" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Εμφάνιση παλέτας" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "το πλάτος του καμβά" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "αποθηκεύει την εικόνα στο Ημερολόγιο του Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xσυντ από δεξιά της οθόνης" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Αποθήκευση στιγμιότυπου" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "yσυντ από την κορυφή της οθόνης" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "έναρξη" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "ύψος" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "μετακίνηση της χελώνας μπροστά" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "το ύψος του καμβά" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "μπροστά" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "τίτλος χ" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "το δικό μου πλαίσιο" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "τίτλος y" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "ID λογαριασμού" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "αριστερό x" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Επιλογή εντολών για διαμοιρασμό" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "επάνω y" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "πίσω" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "δεξιό x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "ορισμός της κλίμακας των πολυμέσων" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "κάτω y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "συγκρατεί την τρέχουσα τιμή της κλίμακας" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 msgid "presentation 1x1" msgstr "παρουσίαση 1X1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "παρουσίαση 2X1" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 msgid "presentation 1x2" msgstr "παρουσίαση 1X2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "παρουσίαση 2X2" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "κορυφή της επώνυμης ενέργειας της στοίβας" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "αποθηκεύει την αριθμητική τιμή στην επώνυμη μεταβλητή" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "λογικός τελεστής διάζευξης (ή)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: 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 "τάση εισόδου μικροφώνου" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "επανάληψη σύμφωνα με τον καθορισμένο αριθμό" -#: pysamples/brain.py:100 -msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Αποθήκευση..." -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "επίκληση της ενέργειας 2 της στοίβας" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "διακοπή" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "ορισμός χy" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "αναπαραγωγή" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "τίτλος y" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "αποθήκευση" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "τίτλος χ" -#: pysamples/journal-stats.py:78 -msgid "other" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "γέμισμα οθόνης" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Αποθήκευση ως" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "ορισμός χy" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "κάδος ανακύκλωσης" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "πολική" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "επανάληψη" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "αναμονή για ολοκλήρωση του τρέχοντος βίντεο ή ήχου" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Αποθήκευση ως εικόνα" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Επεξεργασία" + +#: 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 "αντίσταση εισόδου μικροφώνου" + +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "κορυφή της στοίβας της ενέργειας 2" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" msgstr "" +"διαιρεί τον αριθμό της κορυφής (αριθμητής) με τον αριθμό στο κάτω μέρος " +"(παρανομαστής)" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "μεταβολή" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "μέγιστο" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "πραγματοποίηση μιας μεταβολής" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "εκτυπώνει την αξία στο πεδίο κατάστασης στο κάτω μέρος της οθόνης" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "το σύνηθες είναι" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "έναρξη γεμίσματος" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Δεν υπάρχει επιλογή ενέργειας:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "διατηρεί τα αποτελέσματα του ερωτήματος - εντολή πληκτρολογίου" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Το αρχείο δεν βρέθηκε" +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# el.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "ώθηση" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Κατάλογος ρυθμίσεων μη εγγράψιμος: %s" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"ένα προγραμματιστικό τμήμα εντολών: χρησιμοποιείται για την προσθήκη " +"προχωρημένων μαθηματικών εξισώσεων πολλών μεταβλητών, π.χ. ημ(x+y+z)" -#: turtleblocks.py:354 -msgid "New" -msgstr "Νέο" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "επαναφορά όλων" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Άνοιγμα" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "γεια" -#: turtleblocks.py:356 -msgid "Save" -msgstr "Αποθήκευση" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Αποθήκευση ως" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Έξοδος" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "δεξιά" -#: turtleblocks.py:363 -msgid "File" -msgstr "Αρχείο" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "γκρίζο" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Επανακλιμάκωση συντεταγμένων" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "κόκκινο" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Ρύθμιση μεγέθους πλαισίου εντολών" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "ταυτότητα" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Εμφάνιση/Απόκρυση εντολών" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "υπόλοιπο" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Εργαλεία" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Αποσφαλμάτωση" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Χελώνα" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Θύρα" -#: turtleblocks.py:407 -msgid "About..." +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" msgstr "" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Παλέτα με μπλοκ αισθητήρων" + +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" msgstr "" -"Υπάρχει εργασία μη αποθηκευμένη. Θέλετε να την αποθηκεύσετε πριν την έξοδο;" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "Αποθήκευση έργου;" +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "" -#~ msgid "x position" -#~ msgstr "θέση x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#~ msgid "return x position" -#~ msgstr "επίστρεψε στη θέση x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" -#, fuzzy -#~ msgid "y position" -#~ msgstr "θέση x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "" -#, fuzzy -#~ msgid "return y position" -#~ msgstr "επίστρεψε στη θέση x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "" -#, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "Παλέτα με μπλοκ αισθητήρων" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "" -#, fuzzy -#~ msgid "density" -#~ msgstr "ταυτότητα" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "" -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Παλέτα με μπλοκ αισθητήρων" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "δεξιά" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "" -#, fuzzy -#~ msgid "grey" -#~ msgstr "γκρίζο" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#, fuzzy -#~ msgid "port" -#~ msgstr "Θύρα" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#, fuzzy -#~ msgid "read" -#~ msgstr "κόκκινο" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#, fuzzy -#~ msgid "sensor" -#~ msgstr "αισθητήρες" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#, fuzzy -#~ msgid "mode" -#~ msgstr "υπόλοιπο" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Παλέτα με μπλοκ αισθητήρων" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" -#, fuzzy -#~ msgid "samples" -#~ msgstr "Παραδείγματα" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" + +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #~ msgid "follow a RGB color" #~ msgstr "ακολούθησε ένα χρώμα RGB" @@ -2018,7 +3439,8 @@ msgstr "Αποθήκευση έργου;" #~ msgid "bottom block in a collapsed stack: click to open" #~ msgstr "" -#~ "κάτω εντολή σε μια στοίβα που μπορεί να καταρρεύσει: κάντε κλικ για άνοιγμα" +#~ "κάτω εντολή σε μια στοίβα που μπορεί να καταρρεύσει: κάντε κλικ για " +#~ "άνοιγμα" #~ msgid "top of stack" #~ msgstr "κορυφή της στοίβας" @@ -2049,7 +3471,8 @@ msgstr "Αποθήκευση έργου;" #~ msgstr "b" #~ msgid "Move the cursor over the orange palette for help." -#~ msgstr "Μετακινείστε το δείκτη προς τις πορτοκαλί παλέτες για λήψη βοήθειας." +#~ msgstr "" +#~ "Μετακινείστε το δείκτη προς τις πορτοκαλί παλέτες για λήψη βοήθειας." #~ msgid "Import/Export" #~ msgstr "Εισαγωγή/Εξαγωγή" @@ -2078,7 +3501,8 @@ msgstr "Αποθήκευση έργου;" #~ msgid "restore last" #~ msgstr "επαναφορά τελευταίου" -#~ 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 "" #~ "μια εντολή προγραμματισμού: χρησιμοποιείται για την εισαγωγή προχωρημένων " #~ "μαθηματικών εξισώσεων, π.χ. ημ(x)" @@ -2094,8 +3518,8 @@ msgstr "Αποθήκευση έργου;" #~ msgid "holds current text color (can be used in place of a number block)" #~ msgstr "" -#~ "διατήρηση τρέχοντος χρώματος του κειμένου (μπορεί να χρησιμοποιηθεί στη θέση " -#~ "ενός αριθμού τμήματος)" +#~ "διατήρηση τρέχοντος χρώματος του κειμένου (μπορεί να χρησιμοποιηθεί στη " +#~ "θέση ενός αριθμού τμήματος)" #~ msgid "picture top" #~ msgstr "εικόνα στην κορυφή" @@ -2143,8 +3567,8 @@ msgstr "Αποθήκευση έργου;" #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "" -#~ "διατήρηση τρέχοντος μεγέθους του κειμένου (μπορεί να χρησιμοποιηθεί στη θέση " -#~ "ενός αριθμού τμήματος)" +#~ "διατήρηση τρέχοντος μεγέθους του κειμένου (μπορεί να χρησιμοποιηθεί στη " +#~ "θέση ενός αριθμού τμήματος)" #~ msgid "extras" #~ msgstr "πρόσθετα" @@ -2181,14 +3605,15 @@ msgstr "Αποθήκευση έργου;" #~ msgid "holds current pen shade (can be used in place of a number block)" #~ msgstr "" -#~ "διατήρηση τρέχουσας σκιάς του στιλό (μπορεί να χρησιμοποιηθεί στη θέση ενός " -#~ "αριθμού τμήματος)" +#~ "διατήρηση τρέχουσας σκιάς του στιλό (μπορεί να χρησιμοποιηθεί στη θέση " +#~ "ενός αριθμού τμήματος)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" -#~ "ένα προγραμματιζόμενο πλαίσιο: προσθέστε τη δική σας μαθηματική εξίσωση στο " -#~ "πλαίσιο, π.χ., sin(x)" +#~ "ένα προγραμματιζόμενο πλαίσιο: προσθέστε τη δική σας μαθηματική εξίσωση " +#~ "στο πλαίσιο, π.χ., sin(x)" #~ msgid "pop value off FILO" #~ msgstr "απομάκρυνση της τιμής εκτός ΠΜΤΕ" diff --git a/po/en.po b/po/en.po index 63a96e8..967dba4 100644 --- a/po/en.po +++ b/po/en.po @@ -2,8 +2,37 @@ # 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 "" +"#-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 08:17+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: en\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" +"#-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 08:17+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: en\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" +"#-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,565 +47,2090 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "TurtleBlocks" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" +msgstr "turtleart-extras (master)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palette of turtle commands" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "Turtle Blocks" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "forward" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "moves turtle forward" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "Turtle Art Mini" + +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "Turtle Confusion" + +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Select a challenge" + +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Amazonas Tortuga" + +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Palette of Mexican pesos" + +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Palette of Colombian pesos" + +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Palette of Rwandan francs" + +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "Palette of US dollars" + +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Palette of Australian dollars" + +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Palette of Paraguayan Guaranies" + +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Palette of Peruvian Nuevo Soles" + +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Palette of Uruguayan Pesos" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "TurtleBots" + +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" + +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "ERROR: The speed must be a value between 0 and 1023" + +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "ERROR: The pin must be between 1 and 8" + +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "ERROR: The value must be 0 or 1, LOW or HIGH" + +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "ERROR: The mode must be INPUT or OUTPUT." + +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "Turn LED on and off: 0 is off; 1 is on" + +#: taextras.py:79 +msgid "returns the gray level" +msgstr "returns the object gray level" + +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "returns 1 when the button is press and 0 otherwise" + +#: taextras.py:81 +msgid "returns the light level" +msgstr "returns the light level" + +#: taextras.py:82 +msgid "returns the temperature" +msgstr "returns the temperature" + +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "returns the distance from the object in front of the sensor" + +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "returns 1 when the sensors detects a magnetic field, 0 otherwise" + +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "returns the value of the resistance" + +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "returns the value of the voltage" + +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" + +#: taextras.py:88 +msgid "LED" +msgstr "LED" + +#: taextras.py:89 +msgid "button" +msgstr "button" + +#: taextras.py:90 taextras.py:358 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "gray" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "back" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "light" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "moves turtle backward" +#: taextras.py:92 +msgid "temperature" +msgstr "temperature" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "clean" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "distance" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "clears the screen and reset the turtle" +#: taextras.py:94 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" -#: TurtleArt/tabasics.py:162 +#: taextras.py:95 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:96 +msgid "Butia Robot" +msgstr "Butia Robot" + +#: taextras.py:97 +msgid "refresh Butia" +msgstr "refresh Butia" + +#: taextras.py:98 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "battery charge Butia" + +#: taextras.py:101 +msgid "" +"returns the battery charge in volts. If no motors present, it returns 255" +msgstr "" +"returns the battery charge in volts. If no motors present, it returns 255" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "speed Butia" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "set the speed of the Butia motors" + +#: taextras.py:105 +msgid "move Butia" +msgstr "move Butia" + +#: taextras.py:106 TurtleArt/tabasics.py:162 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 msgid "left" msgstr "left" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "turns turtle counterclockwise (angle in degrees)" - -#: TurtleArt/tabasics.py:174 +#: taextras.py:107 TurtleArt/tabasics.py:174 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 msgid "right" msgstr "right" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "turns turtle clockwise (angle in degrees)" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "moves the Butia motors at the specified speed" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "stop Butia" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "stop the Butia robot" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "forward Butia" + +#: taextras.py:113 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "left Butia" + +#: taextras.py:116 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "right Butia" + +#: taextras.py:119 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "backward Butia" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "move the Butia robot backward" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "Butia Robot extra blocks" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "hack pin mode" + +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "pin" + +#: taextras.py:126 taextras.py:457 +msgid "mode" +msgstr "mode" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Select the pin function (INPUT, OUTPUT)." + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "write hack pin Butia" + +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "value" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "set a hack pin to 0 or 1" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "angle" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "read hack pin Butia" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radius" +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "read the value of a hack pin" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "moves turtle along an arc" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "HIGH" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "set xy" +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "Set HIGH value for digital port." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "INPUT" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "Configure hack port for digital input." -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -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." +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "LOW" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "Set LOW value for digital port." -#: TurtleArt/tabasics.py:217 -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.)" +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "OUTPUT" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "Configure hack port for digital output." -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:141 +msgid "Butia" +msgstr "Butia" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "ERROR: The pin %s must be in OUTPUT mode." -#: TurtleArt/tabasics.py:237 +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "ERROR: The pin %s must be in INPUT mode." + +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "Error importing Pygame. This plugin require Pygame 1.9" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "Error on initialization of the camera" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "No camera was found" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Error stopping camera" + +#: taextras.py:151 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "Error in get mask" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "FollowMe" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "refresh FollowMe" + +#: taextras.py:156 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "calibration" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "store a personalized calibration" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "return a personalized calibration" + +#: taextras.py:161 +msgid "follow" +msgstr "follow" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "follow a color or calibration" + +#: taextras.py:163 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 "brightness" + +#: taextras.py:164 +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:165 +msgid "minimum pixels" +msgstr "minimum pixels" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "set the minimal number of pixels to follow" + +#: taextras.py:167 +msgid "threshold" +msgstr "threshold" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "set a threshold for a RGB color" + +#: taextras.py:170 +msgid "camera mode" +msgstr "camera mode" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +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:173 +msgid "get brightness" +msgstr "get brightness" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "get the brightness of the ambient light" + +#: taextras.py:175 +msgid "average color" +msgstr "average color" + +#: taextras.py:176 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" - -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "heading" - -#: TurtleArt/tabasics.py:248 +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" + +#: taextras.py:178 +msgid "x position" +msgstr "x position" + +#: taextras.py:179 +msgid "return x position" +msgstr "return x position" + +#: taextras.py:180 +msgid "y position" +msgstr "y position" + +#: taextras.py:181 +msgid "return y position" +msgstr "return y position" + +#: taextras.py:182 +msgid "pixels" +msgstr "pixels" + +#: taextras.py:183 +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) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +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) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +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) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "set the color mode of the camera to HSV" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "empty calibration" + +#: taextras.py:191 +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:197 +msgid "Pattern detection" +msgstr "Pattern detection" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "Seeing signal" + +#: taextras.py:199 +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:200 +msgid "Distance to signal" +msgstr "Distance to signal" + +#: taextras.py:201 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "speed SumBot" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "submit the speed to the SumBot" + +#: taextras.py:209 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "forward SumBot" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "move SumBot forward" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "backward SumBot" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "move SumBot backward" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "stop SumBot" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "stop the SumBot" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "left SumBot" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "turn left the SumBot" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "right SumBot" + +#: taextras.py:223 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:226 +msgid "angle to center" +msgstr "angle to center" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +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) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "angle to Enemy" + +#: taextras.py:232 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "x coor. SumBot" + +#: taextras.py:235 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "y coor. SumBot" + +#: taextras.py:238 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "x coor. Enemy" + +#: taextras.py:241 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "y coor. Enemy" + +#: taextras.py:244 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "rotation SumBot" + +#: taextras.py:247 +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" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "rotation Enemy" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "get the rotation of the Enemy" + +#: taextras.py:251 +msgid "distance to center" +msgstr "distance to center" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "get the distance to the center of the dohyo" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "distance to Enemy" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "get the distance to the Enemy" + +#: taextras.py:256 +msgid "update information" +msgstr "update information" + +#: taextras.py:257 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Palette of physics blocks" + +#: taextras.py:263 +msgid "start polygon" +msgstr "start polygon" + +#: taextras.py:264 +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:266 +msgid "add point" +msgstr "add point" + +#: taextras.py:267 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Add a new point to the current polygon based on the current Turtle xy " +"position." msgstr "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Add a new point to the current polygon based on the current Turtle xy " +"position." + +#: taextras.py:269 +msgid "end polygon" +msgstr "end polygon" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Define a new polygon." + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "end filled polygon" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "Not a simple polygon" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Define a new filled polygon." + +#: taextras.py:274 +msgid "triangle" +msgstr "triangle" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "base" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "height" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palette of pen commands" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Add a triangle object to the project." -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "fill screen" +#: taextras.py:279 +msgid "circle" +msgstr "circle" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "color" +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Add a circle object to the project." -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "shade" +#: taextras.py:281 +msgid "rectangle" +msgstr "rectangle" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "fills the background with (color, shade)" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "width" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "gray" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Add a rectangle object to the project." -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "set color" +#: taextras.py:285 +msgid "reset" +msgstr "reset" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "sets color of the line drawn by the turtle" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Reset the project; clear the object list." -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "set shade" +#: taextras.py:287 +msgid "motor" +msgstr "motor" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "sets shade of the line drawn by the turtle" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "torque" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "set gray" +#: taextras.py:290 +msgid "speed" +msgstr "speed" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "sets gray level of the line drawn by the turtle" +#: taextras.py:291 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." -#: TurtleArt/tabasics.py:349 -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)" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Pin an object down so that it cannot fall." -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "holds current pen shade" +#: taextras.py:295 +msgid "joint" +msgstr "joint" -#: TurtleArt/tabasics.py:368 -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)" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pen up" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Turtle will not draw when moved." +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "save as Physics activity" + +#: taextras.py:301 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "gear" + +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Add a gear object to the project." + +#: taextras.py:305 +msgid "density" +msgstr "density" + +#: taextras.py:306 +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)." -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pen down" +#: taextras.py:308 +msgid "friction" +msgstr "friction" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Turtle will draw when moved." +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "bounciness" + +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "dynamic" + +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "Palette of WeDo blocks" + +#: taextras.py:324 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "set current WeDo device" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "number of WeDo devices" + +#: taextras.py:327 +msgid "tilt" +msgstr "tilt" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "distance sensor output" + +#: taextras.py:333 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "returns the current value of Motor A" + +#: taextras.py:335 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "returns the current value of Motor B" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "set the value for Motor A" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "set the value for Motor B" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "WeDo is unavailable" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, 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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palette of LEGO NXT blocks of motors" + +#: taextras.py:350 +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) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "touch" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "ultrasonic" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "color" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "set pen size" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "sound" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "sets size of the line drawn by the turtle" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "Please check the connection with the brick" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "start fill" +#: taextras.py:361 +#, 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" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "starts filled polygon (used with end fill block)" +#: taextras.py:362 +#, 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" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "end fill" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "The value of power must be between -127 to 127" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "completes filled polygon (used with start fill block)" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "The parameter must be a integer, not '%s'" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "pen size" +#: taextras.py:365 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "An error has occurred: check all connections and try to reconnect" -#: TurtleArt/tabasics.py:427 -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)" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT found %s bricks" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palette of pen colors" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT not found" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "red" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "Brick number %s was not found" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "orange" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "refresh NXT" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "yellow" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Search for a connected NXT brick." -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "green" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyan" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "set current NXT device" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blue" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "number of NXT devices" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "purple" +#: taextras.py:374 +msgid "brick name" +msgstr "brick name" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "white" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "Get the name of a brick." -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "black" +#: taextras.py:376 +msgid "play tone" +msgstr "play tone" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "set text color" +#: taextras.py:377 +msgid "frequency" +msgstr "frequency" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "sets color of text drawn by the turtle" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "time" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "set text size" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Play a tone at frequency for time." -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "sets size of text drawn by the turtle" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: turn is the action +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: turn is the action +#: taextras.py:381 +msgid "" +"turn motor\n" +"\n" +msgstr "" +"turn motor\n" +"\n" + +#: taextras.py:382 +msgid "port" +msgstr "port" + +#: taextras.py:383 +msgid "power" +msgstr "power" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "rotations" + +#: taextras.py:386 +msgid "turn a motor" +msgstr "turn a motor" + +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"synchronize\n" +"\n" +"motors" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palette of numeric operators" +#: taextras.py:388 +msgid "steering" +msgstr "steering" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "synchronize two motors connected in PORT B and PORT C" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "adds two alphanumeric inputs" +#: taextras.py:390 +msgid "PORT A" +msgstr "PORT A" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "minus" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "PORT A of the brick" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "subtracts bottom numeric input from top numeric input" +#: taextras.py:392 +msgid "PORT B" +msgstr "PORT B" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "multiply" +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "PORT B of the brick" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplies two numeric inputs" +#: taextras.py:394 +msgid "PORT C" +msgstr "PORT C" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "divide" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "PORT C of the brick" -#: TurtleArt/tabasics.py:604 +#: taextras.py:396 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"synchronize\n" +"motors" msgstr "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" - -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identity" - -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identity operator used for extending blocks" - -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" - -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modular (remainder) operator" +"synchronize\n" +"motors" + +#: taextras.py:397 +msgid "start motor" +msgstr "start motor" + +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "Run a motor forever." + +#: taextras.py:399 +msgid "brake motor" +msgstr "brake motor" + +#: taextras.py:400 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "reset motor" + +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "Reset the motor counter." + +#: taextras.py:404 +msgid "motor position" +msgstr "motor position" + +#: taextras.py:405 +msgid "Get the motor position." +msgstr "Get the motor position." + +#: taextras.py:406 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "PORT 1 of the brick" + +#: taextras.py:408 +msgid "read" +msgstr "read" + +#: taextras.py:409 +msgid "sensor" +msgstr "sensor" + +#: taextras.py:410 +msgid "Read sensor output." +msgstr "Read sensor output." + +#: taextras.py:411 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "PORT 2 of the brick" + +#: taextras.py:413 +msgid "light sensor" +msgstr "light sensor" + +#: taextras.py:414 +msgid "gray sensor" +msgstr "gray sensor" + +#: taextras.py:415 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "PORT 3 of the brick" + +#: taextras.py:417 +msgid "touch sensor" +msgstr "touch sensor" + +#: taextras.py:418 +msgid "distance sensor" +msgstr "distance sensor" + +#: taextras.py:419 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:420 +msgid "PORT 4 of the brick" +msgstr "PORT 4 of the brick" + +#: taextras.py:421 +msgid "sound sensor" +msgstr "sound sensor" + +#: taextras.py:422 +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) +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:425 +msgid "set light" +msgstr "set light" + +#: taextras.py:426 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "battery level" + +#: taextras.py:429 +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: PWM is pulse-width modulation +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:440 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ERROR: Check the Arduino and the number of port." + +#: taextras.py:442 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "ERROR: Value must be a number from 0 to 255." + +#: taextras.py:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ERROR: Value must be either HIGH or LOW." + +#: taextras.py:444 +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:445 +msgid "refresh Arduino" +msgstr "refresh Arduino" + +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "Search for connected Arduinos." + +#: taextras.py:447 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "set current Arduino board" + +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "number of Arduinos" + +#: taextras.py:450 +msgid "number of Arduino boards" +msgstr "number of Arduino boards" + +#: taextras.py:451 +msgid "Arduino name" +msgstr "Arduino name" + +#: taextras.py:452 +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. +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:455 +msgid "pin mode" +msgstr "pin mode" + +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." + +#: taextras.py:459 +msgid "analog write" +msgstr "analog write" + +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "Write analog value in specified port." + +#: taextras.py:462 +msgid "analog read" +msgstr "analog read" + +#: taextras.py:463 +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 "" +"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:465 +msgid "digital write" +msgstr "digital write" + +#: taextras.py:466 +msgid "Write digital value to specified port." +msgstr "Write digital value to specified port." + +#: taextras.py:467 +msgid "digital read" +msgstr "digital read" + +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "Read value from digital port." + +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "Configure Arduino port for digital input." + +#: taextras.py:471 +msgid "Configure Arduino port to drive a servo." +msgstr "Configure Arduino port to drive a servo." + +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "Configure Arduino port for digital output." + +#: taextras.py:474 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Configure Arduino port for PWM (pulse-width modulation)." + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +msgid "Palette of Expeyes blocks" +msgstr "Palette of Expeyes blocks" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Programmable voltage output +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" +msgstr "set PVS" + +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "set programmable voltage output" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Square wave 1 voltage output +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "set SQR1 voltage" + +#: taextras.py:485 +msgid "set square wave 1 voltage output" +msgstr "set square wave 1 voltage output" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Square wave 2 voltage output +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Square wave 2 voltage output +#: taextras.py:487 +msgid "set SQR2 voltage" +msgstr "set SQR2 voltage" + +#: taextras.py:488 +msgid "set square wave 2 voltage output" +msgstr "set square wave 2 voltage output" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Digital output level +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "set OD1" + +#: taextras.py:491 +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 +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Input 1 voltage level +#: taextras.py:493 +msgid "IN1 level" +msgstr "IN1 level" + +#: taextras.py:494 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Input 2 voltage level +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "IN2 level" + +#: taextras.py:498 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Resistive sensor voltage level +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "SEN level" + +#: taextras.py:502 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" + +#: taextras.py:504 +msgid "capture" +msgstr "capture" + +#: taextras.py:505 +msgid "input" +msgstr "input" + +#: taextras.py:506 +msgid "samples" +msgstr "samples" + +#: taextras.py:507 +msgid "interval" +msgstr "interval" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: MS is microseconds +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: MS is microseconds +#: taextras.py:509 +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" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Analog input 1 voltage level +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Analog input 1 voltage level +#: taextras.py:512 +msgid "A1" +msgstr "A1" + +#: taextras.py:513 +msgid "read analog input 1 voltage" +msgstr "read analog input 1 voltage" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Analog input 2 voltage level +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "A2" + +#: taextras.py:516 +msgid "read analog input 2 voltage" +msgstr "read analog input 2 voltage" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read input 1 voltage +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "read input 1 voltage" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read input 2 voltage +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "read input 2 voltage" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read analog sensor input voltage +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:525 +msgid "read analog sensor input voltage" +msgstr "read analog sensor input voltage" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read square wave 1 input voltage +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:528 +msgid "read square wave 1 voltage" +msgstr "read square wave 1 voltage" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read square wave 2 input voltage +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read square wave 2 input voltage +#: taextras.py:530 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "read square wave 2 voltage" + +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read programmable voltage +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "read programmable voltage" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "Expeyes device not found" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "resume playing video or audio" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "square root" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Title" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "calculates square root" +#: 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 "Average RGB color from camera is pushed to the stack" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "random" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "yellow" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "displays polar coordinates" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "emptys FILO (first-in-last-out heap)" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "returns random number between minimum (top) and maximum (bottom) values" +#: 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 "camera output" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "number" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "push acceleration in x, y, z to heap" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "used as numeric input in mathematic operators" +#: TurtleArt/tabasics.py:781 +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:671 -msgid "greater than" -msgstr "greater than" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "jogs stack right" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logical greater-than operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Journal media object" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "less than" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "box 2" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logical less-than operator" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "box 1" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "equal" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Step" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logical equal-to operator" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplies two numeric inputs" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "not" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Show/hide blocks" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logical NOT operator" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Hide palette" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "and" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Buddies" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logical AND operator" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "My Turtle Art session" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "or" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar Journal video object" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logical OR operator" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyan" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palette of flow operators" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "wait" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor of right of screen" -#: TurtleArt/tabasics.py:747 -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:457 +msgid "Palette of extra options" +msgstr "Palette of extra options" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "forever" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Load example" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "loops forever" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "move all blocks to trash" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repeat" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "list" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "loops specified number of times" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Configuration directory not writable: %s" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "if" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "media resume" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "then" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "heading" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "if then" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Sharing blocks disabled" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "if-then operator that uses boolean operators from Numbers palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "saves turtle graphics as an SVG file in the Sugar Journal" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "else" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "draws text or show media from the Journal" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "if then else" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -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:163 +msgid "video" +msgstr "video" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "horizontal space" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blue" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "jogs stack right" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "displays Cartesian coordinates" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "vertical space" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "No option action:" #: TurtleArt/tabasics.py:820 msgid "jogs stack down" msgstr "jogs stack down" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "stop action" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modular (remainder) operator" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "stops current action" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "bottom y" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palette of variable blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "save SVG" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +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:846 -msgid "connects action to toolbar run buttons" -msgstr "connects action to toolbar run buttons" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pen down" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "text" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "wait" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "string value" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "box" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Failed to upload!" + +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "shift" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "invokes named action stack" #: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 #: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 @@ -586,557 +2140,246 @@ msgstr "string value" msgid "action" msgstr "action" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "top of nameable action stack" - -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "invokes named action stack" - -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "store in box 1" - -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "stores numeric value in Variable 1" - -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "store in box 2" - -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "stores numeric value in Variable 2" - -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "box 1" - -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variable 1 (numeric value)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"do-until-True operator that uses boolean operators from Numbers palette" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "box 2" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "usage is" #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "Variable 2 (numeric value)" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "store in" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "divide" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "box" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "picture name" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "value" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "while" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "my box" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "the canvas width" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "stores numeric value in named variable" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "empty heap?" #: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 msgid "named variable (numeric value)" msgstr "named variable (numeric value)" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "action 1" - -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "top of Action 1 stack" - -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "action 2" - -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "top of Action 2 stack" - -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "invokes Action 1 stack" - -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "invokes Action 2 stack" - -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "trash" - -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "empty trash" - -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "permanently deletes items in trash" - -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "restore all" - -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "restore all blocks from trash" - -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "clear all" - -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "move all blocks to trash" - -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Share selected blocks" - -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Title" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Stop turtle" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Show blocks" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Hide blocks" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "did not output to" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "I don't know how to" - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "doesn't like" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "as input" - -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "displays next palette" - -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "changes the orientation of the palette of blocks" - -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Load..." - -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Save..." - -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "click to open" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientation" - #: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 msgid "next" msgstr "next" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "shift" - -#: TurtleArt/tawindow.py:1256 -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/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Select blocks to share" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "image" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Save as Logo" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "if then" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Save as image" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "set pen size" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "snapshot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "presentation template: select Journal object (no description)" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Save snapshot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "until" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Turn off hover help" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "media stop" #: TurtleArtActivity.py:266 turtleblocks.py:380 msgid "Turn on hover help" msgstr "Turn on hover help" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Show palette" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Hide palette" - -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Rescale coordinates down" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Rescale coordinates up" - -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Edit" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "View" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Project" - -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Save/Load" - -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copy" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Paste" - -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Restore blocks from trash" - -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Fullscreen" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Cartesian coordinates" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Polar coordinates" - -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Metric coordinates" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "permanently deletes items in trash" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Grow blocks" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "uturn" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Shrink blocks" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "top of Action 1 stack" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Load example" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Clean" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palette of flow operators" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Run" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "top of a collapsed stack" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Step" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "if-then-else operator that uses boolean operators from Numbers palette" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Help" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "returns mouse y coordinate" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stop" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "holds current pen shade" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Load project" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinewave" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Load plugin" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Login failed" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Load Python block" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "left x" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "Palettes" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Sharing blocks disabled" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "RGB color under the turtle is pushed to the stack" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "declutters canvas by hiding blocks" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Plugin could not be installed." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Please restart Turtle Art in order to use the plugin." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Plugin %s already installed." - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Do you want to reinstall %s?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "My Turtle Art session" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Enable collaboration" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Activities" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Buddies" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Share" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Configuration" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Neighborhood" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Nickname" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Account ID" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Server" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Password" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python chr operator" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Register" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "horizontal space" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Colors" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Metric coordinates" -#: 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 "Upload" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "string value" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Facebook wall post" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "description" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Upload to Web" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "I don't know how to" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "set text size" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "Username:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Password:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Title:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Description:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Submit to Web" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "starts filled polygon (used with end fill block)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Cancel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "presentation template: select four Journal objects" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Login failed" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "View" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Failed to upload!" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "sets gray level of the line drawn by the turtle" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palette of sensor blocks" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Password:" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "acceleration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "turtle sees" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "push acceleration in x, y, z to heap" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "stop action" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "sound" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "green" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "raw microphone input signal" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "shade" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "loudness" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "fills the background with (color, shade)" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "microphone input volume" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "save picture" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1144,428 +2387,252 @@ msgstr "microphone input volume" msgid "pitch" msgstr "pitch" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "microphone input pitch" - -#: 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" - -#: 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 "microphone input resistance" - -#: 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" - -#: 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 "microphone input voltage" - -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palette of media objects" - -#: 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 "brightness" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "light level detected by camera" - -#: 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 "Average RGB color from camera is pushed to the stack" - -#: 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 "camera output" - -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "light level detected by light sensor" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "read value from RFID device" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "while" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "do-while-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "until" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "do-until-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "top" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "top of a collapsible stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "returns 1 if mouse button is pressed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "journal" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Rescale coordinates up" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Journal media object" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pen up" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "orange" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Journal audio object" +#: TurtleArt/tabasics.py:747 +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:163 -msgid "video" -msgstr "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "pushes value onto FILO (first-in last-out heap)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar Journal video object" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "clear all" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "description" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "then" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar Journal description field" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Register" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "show" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "not" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "draws text or show media from the Journal" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "if then else" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "show aligned" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "stops current action" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "set scale" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "turns turtle clockwise (angle in degrees)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "sets the scale of media" +#: TurtleArt/tabasics.py:368 +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:245 -msgid "save picture" -msgstr "save picture" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor of left of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "picture name" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Reset block size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "saves a picture to the Sugar Journal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "save SVG" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "displays next palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -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:772 +msgid "hide blocks" +msgstr "hide blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "scale" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "light level detected by camera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "holds current scale value" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python int operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "media wait" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logical less-than operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "wait for current video or audio to complete" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "restore all blocks from trash" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "media stop" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Save" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "stop video or audio" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "store in box 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "media pause" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "store in box 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "pause video or audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "hides the Sugar toolbars" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "media resume" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +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:299 -msgid "resume playing video or audio" -msgstr "resume playing video or audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "print" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "speak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "returns mouse x coordinate" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "hello" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "red" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "speaks text" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Save as Logo" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinewave" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "sets color of the line drawn by the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "amplitude" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "set text color" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "duration" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "loudness" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Enable collaboration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "button down" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palette of sensor blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "returns 1 if mouse button is pressed" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Load plugin" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "returns True if mouse button is pressed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "mouse x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "returns mouse x coordinate" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "mouse y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "returns mouse y coordinate" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "number" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "query keyboard" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -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:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "top" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "keyboard" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Submit to Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "holds results of query-keyboard block as ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Cartesian coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "read pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Nickname" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -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:234 +msgid "set scale" +msgstr "set scale" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "turtle sees" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Share selected blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "returns the color that the turtle \"sees\"" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "white" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "time" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "connects action to toolbar run buttons" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "elapsed time (in seconds) since program started" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Palette of extra options" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "push" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "pushes value onto FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "show heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "shows values in FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "empty heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "emptys FILO (first-in-last-out heap)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "pop" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "pops value off FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "empty heap?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "returns True if heap is empty" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "comment" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "places a comment in your code" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "print" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplitude" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "prints value in status block at bottom of the screen" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Cancel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python chr operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "the canvas height" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python int operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "presentation 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "minus" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"a programmable block: used to add advanced single-variable math equations, " -"e.g., sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "and" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"a programmable block: used to add advanced multi-variable math equations, " -"e.g., sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "top of a collapsible stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"a programmable block: used to add advanced multi-variable math equations, " -"e.g., sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "as input" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1573,56 +2640,26 @@ msgstr "" msgid "Python block" msgstr "Python block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -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" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesian" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "displays Cartesian coordinates" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "displays polar coordinates" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "turtle" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "chooses which turtle to command" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "media wait" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "turtle shell" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "acceleration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "put a custom 'shell' on the turtle" +#: TurtleArt/tabasics.py:427 +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)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "top of a collapsed stack" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "set color" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "load" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1630,70 +2667,68 @@ msgstr "load" msgid "loads a block" msgstr "loads a block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "setxy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palette of pen commands" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "shows values in FILO (first-in last-out heap)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "selects a palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"do-while-True operator that uses boolean operators from Numbers palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palette of presentation templates" +#: turtleblocks.py:363 +msgid "File" +msgstr "File" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "hide blocks" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logical NOT operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "declutters canvas by hiding blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor of bottom of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "show blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "presentation template: select Journal object (with description)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "restores hidden blocks" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palette of numeric operators" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "hides the Sugar toolbars" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "multiply" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "list" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "forever" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "presentation bulleted list" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Plugin %s already installed." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "presentation template: list of bullets" +#: TurtleArt/tabasics.py:329 +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:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "presentation template: select Journal object (no description)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "speaks text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "presentation template: select Journal object (with description)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "snapshot" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "presentation template: select four Journal objects" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "clean" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1702,1212 +2737,1082 @@ msgstr "presentation template: select four Journal objects" msgid "presentation template: select two Journal objects" msgstr "presentation template: select two Journal objects" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor of left of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "bottom" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor of bottom of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "width" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "the canvas width" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor of right of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor of top of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "height" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "the canvas height" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "title x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "title y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "left x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "top y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "right x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Grow blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "bottom y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Fullscreen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "presentation 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "File not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "presentation 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "show" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "presentation 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "presentation 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "random" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Please install the Speak Activity and try again." +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logical greater-than operator" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Spanish" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "turns turtle counterclockwise (angle in degrees)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "English" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "black" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Sorry, I can't understand what you are asking about." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "calculates square root" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "push destination rgb value to heap" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "mouse x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "mouse y" #: pysamples/grecord.py:215 msgid "stop" msgstr "stop" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "play" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "save" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "other" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "uturn" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "make a uturn" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "usage is" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "No option action:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "File not found" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Configuration directory not writable: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "New" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Open" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Save" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Save as" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Quit" - -#: turtleblocks.py:363 -msgid "File" -msgstr "File" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Rescale coordinates" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Reset block size" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Show/hide blocks" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Tools" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debug" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Turtle" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "greater than" -#: turtleblocks.py:407 -msgid "About..." -msgstr "About..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "You have unsaved work. Would you like to save before quitting?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Help" #: turtleblocks.py:448 msgid "Save project?" msgstr "Save project?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Turtle Art Mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "Turtle Confusion" - -#~ msgid "Select a challenge" -#~ msgstr "Select a challenge" - -#~ msgid "Amazonas Tortuga" -#~ msgstr "Amazonas Tortuga" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palette of Mexican pesos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palette of Colombian pesos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palette of Rwandan francs" - -#~ msgid "Palette of US dollars" -#~ msgstr "Palette of US dollars" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Palette of Australian dollars" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Palette of Paraguayan Guaranies" - -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Palette of Peruvian Nuevo Soles" - -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Palette of Uruguayan Pesos" - -#~ msgid "TurtleBots" -#~ msgstr "TurtleBots" - -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "adjust LED intensity between 0 and 255" - -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "returns the object gray level as a number between 0 and 1023" - -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "returns 1 when the button is press and 0 otherwise" - -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "returns the ambient light level as a number between 0 and 1023" - -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "returns the ambient temperature as a number between 0 and 255" - -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" - -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "returns 0 or 1 depending on the sensor inclination" - -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "returns 1 when the sensors detects a magnetic field, 0 otherwise" - -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "switches from 0 to 1, the frequency depends on the vibration" - -#~ msgid "returns the value of the resistance" -#~ msgstr "returns the value of the resistance" - -#~ msgid "LED" -#~ msgstr "LED" - -#~ msgid "button" -#~ msgstr "button" - -#~ msgid "grayscale" -#~ msgstr "grayscale" - -#~ msgid "ambient light" -#~ msgstr "ambient light" - -#~ msgid "temperature" -#~ msgstr "temperature" - -#~ msgid "distance" -#~ msgstr "distance" - -#~ msgid "tilt" -#~ msgstr "tilt" - -#~ msgid "magnetic induction" -#~ msgstr "magnetic induction" - -#~ msgid "vibration" -#~ msgstr "vibration" - -#~ msgid "Butia Robot" -#~ msgstr "Butia Robot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "chooses which turtle to command" -#~ msgid "refresh Butia" -#~ msgstr "refresh Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "right x" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "refresh the state of the Butia palette and blocks" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "sets color of text drawn by the turtle" -#~ msgid "battery charge Butia" -#~ msgstr "battery charge Butia" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "light level detected by light sensor" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "returns the battery charge as a number between 0 and 255" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Plugin could not be installed." -#~ msgid "speed Butia" -#~ msgstr "speed Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "keyboard" -#~ msgid "forward Butia" -#~ msgstr "forward Butia" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" -#~ msgid "move the Butia robot forward" -#~ msgstr "move the Butia robot forward" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radius" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "move the Butia robot forward a predefined distance" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Polar coordinates" -#~ msgid "left Butia" -#~ msgstr "left Butia" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "set shade" -#~ msgid "turn the Butia robot at left" -#~ msgstr "turn the Butia robot at left" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logical AND operator" -#~ msgid "backward Butia" -#~ msgstr "backward Butia" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." -#~ msgid "move the Butia robot backward" -#~ msgstr "move the Butia robot backward" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "palette" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "move the Butia robot backward a predefined distance" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Run" -#~ msgid "right Butia" -#~ msgstr "right Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "show heap" -#~ msgid "turn the Butia robot at right" -#~ msgstr "turn the Butia robot at right" +#: TurtleArt/tabasics.py:217 +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.)" -#~ msgid "turn Butia" -#~ msgstr "turn Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "selects a palette" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "turn the Butia robot x degrees" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "microphone input volume" -#~ msgid "stop Butia" -#~ msgstr "stop Butia" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Title:" -#~ msgid "stop the Butia robot" -#~ msgstr "stop the Butia robot" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palette of media objects" -#~ msgid "Butia" -#~ msgstr "Butia" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Restore blocks from trash" -#~ msgid "Error importing Pygame. This plugin require Pygame 1.9" -#~ msgstr "Error importing Pygame. This plugin require Pygame 1.9" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palette of variable blocks" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Error on initialization of the camera" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "used as numeric input in mathematic operators" -#~ msgid "No camera was found" -#~ msgstr "No camera was found" +#: 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 "Upload" -#~ msgid "Error stopping camera" -#~ msgstr "Error stopping camera" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Server" -#~ msgid "Error starting camera" -#~ msgstr "Error starting camera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "presentation 2x2" -#~ msgid "Error in get mask" -#~ msgstr "Error in get mask" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variable 1 (numeric value)" -#~ msgid "FollowMe" -#~ msgstr "FollowMe" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Neighborhood" -#~ msgid "refresh FollowMe" -#~ msgstr "refresh FollowMe" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "adds two alphanumeric inputs" -#~ msgid "Search for a connected camera." -#~ msgstr "Search for a connected camera." +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "equal" -#~ msgid "calibration" -#~ msgstr "calibration" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "else" -#~ msgid "store a personalized calibration" -#~ msgstr "store a personalized calibration" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "doesn't like" -#~ msgid "return a personalized calibration" -#~ msgstr "return a personalized calibration" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "You have unsaved work. Would you like to save before quitting?" -#~ msgid "follow" -#~ msgstr "follow" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "restores hidden blocks" -#~ msgid "follow a color or calibration" -#~ msgstr "follow a color or calibration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "load" -#~ msgid "set the camera brightness as a value between 0 to 255." -#~ msgstr "set the camera brightness as a value between 0 to 255." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "stop video or audio" -#~ msgid "minimum pixels" -#~ msgstr "minimum pixels" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Turtle will not draw when moved." -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "set the minimal number of pixels to follow" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "pop" -#~ msgid "threshold" -#~ msgstr "threshold" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "pen size" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "set a threshold for a RGB color" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "turtle shell" -#~ msgid "camera mode" -#~ msgstr "camera mode" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "set the color mode of the camera: RGB; YUV or HSV" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "get brightness" -#~ msgstr "get brightness" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "speak" -#~ msgid "average color" -#~ msgstr "average color" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "read value from RFID device" -#~ msgid "x position" -#~ msgstr "x position" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "moves turtle along an arc" -#~ msgid "return x position" -#~ msgstr "return x position" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "make a uturn" -#~ msgid "y position" -#~ msgstr "y position" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logical equal-to operator" -#~ msgid "return y position" -#~ msgstr "return y position" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palette of pen colors" -#~ msgid "pixels" -#~ msgstr "pixels" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "pause video or audio" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "return the number of pixels of the biggest blob" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "stores numeric value in Variable 1" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "set the color mode of the camera to RGB" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "stores numeric value in Variable 2" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "set the color mode of the camera to YUV" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "put a custom 'shell' on the turtle" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "set the color mode of the camera to HSV" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "button down" -#~ msgid "empty calibration" -#~ msgstr "empty calibration" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "moves turtle backward" -#~ msgid "error in string conversion" -#~ msgstr "error in string conversion" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor of top of screen" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Show blocks" -#~ msgid "speed SumBot" -#~ msgstr "speed SumBot" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "play" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "submit the speed to the SumBot" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "save" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "set the default speed for the movement commands" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Colors" -#~ msgid "forward SumBot" -#~ msgstr "forward SumBot" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "sets size of the line drawn by the turtle" -#~ msgid "move SumBot forward" -#~ msgstr "move SumBot forward" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Open" -#~ msgid "backward SumBot" -#~ msgstr "backward SumBot" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientation" -#~ msgid "move SumBot backward" -#~ msgstr "move SumBot backward" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "stop SumBot" -#~ msgstr "stop SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" -#~ msgid "stop the SumBot" -#~ msgstr "stop the SumBot" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "if" -#~ msgid "left SumBot" -#~ msgstr "left SumBot" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +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." -#~ msgid "turn left the SumBot" -#~ msgstr "turn left the SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "right SumBot" -#~ msgstr "right SumBot" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stop" -#~ msgid "turn right the SumBot" -#~ msgstr "turn right the SumBot" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "action 2" -#~ msgid "angle to center" -#~ msgstr "angle to center" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "action 1" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "get the angle to the center of the dohyo" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "end fill" -#~ msgid "angle to Enemy" -#~ msgstr "angle to Enemy" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copy" -#~ msgid "get the angle to the Enemy" -#~ msgstr "get the angle to the Enemy" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Paste" -#~ msgid "x coor. SumBot" -#~ msgstr "x coor. SumBot" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "did not output to" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "get the x coordinate of the SumBot" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Activities" -#~ msgid "y coor. SumBot" -#~ msgstr "y coor. SumBot" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Upload to Web" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "get the y coordinate of the SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "empty heap" -#~ msgid "x coor. Enemy" -#~ msgstr "x coor. Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "pops value off FILO (first-in last-out heap)" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "get the x coordinate of the Enemy" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Clean" -#~ msgid "y coor. Enemy" -#~ msgstr "y coor. Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palette of presentation templates" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "get the y coordinate of the Enemy" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "angle" -#~ msgid "rotation SumBot" -#~ msgstr "rotation SumBot" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identity" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "get the rotation of the Sumbot" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Save/Load" -#~ msgid "rotation Enemy" -#~ msgstr "rotation Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "top y" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "get the rotation of the Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" -#~ msgid "distance to center" -#~ msgstr "distance to center" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Tools" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "get the distance to the center of the dohyo" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "distance to Enemy" -#~ msgstr "distance to Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "comment" -#~ msgid "get the distance to the Enemy" -#~ msgstr "get the distance to the Enemy" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "subtracts bottom numeric input from top numeric input" -#~ msgid "update information" -#~ msgstr "update information" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "media pause" -#~ msgid "update information from the server" -#~ msgstr "update information from the server" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "push destination rgb value to heap" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palette of physics blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "query for keyboard input (results stored in keyboard block)" -#~ msgid "start polygon" -#~ msgstr "start polygon" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesian" -#~ 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." +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "clears the screen and reset the turtle" -#~ msgid "add point" -#~ msgstr "add point" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "raw microphone input signal" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "returns the color that the turtle \"sees\"" -#~ msgid "end polygon" -#~ msgstr "end polygon" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "invokes Action 1 stack" -#~ msgid "Define a new polygon." -#~ msgstr "Define a new polygon." +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palette of turtle commands" -#~ msgid "end filled polygon" -#~ msgstr "end filled polygon" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "loops forever" -#~ msgid "Not a simple polygon" -#~ msgstr "Not a simple polygon" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "show aligned" -#~ msgid "Define a new filled polygon." -#~ msgstr "Define a new filled polygon." +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Do you want to reinstall %s?" -#~ msgid "triangle" -#~ msgstr "triangle" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Load project" -#~ msgid "base" -#~ msgstr "base" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Project" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Add a triangle object to the project." +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debug" -#~ msgid "circle" -#~ msgstr "circle" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Turn off hover help" -#~ msgid "Add a circle object to the project." -#~ msgstr "Add a circle object to the project." +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "rectangle" -#~ msgstr "rectangle" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Password" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Add a rectangle object to the project." +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "vertical space" -#~ msgid "reset" -#~ msgstr "reset" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Please restart Turtle Art in order to use the plugin." -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Reset the project; clear the object list." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "completes filled polygon (used with start fill block)" -#~ msgid "motor" -#~ msgstr "motor" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Share" -#~ msgid "torque" -#~ msgstr "torque" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "less than" -#~ msgid "speed" -#~ msgstr "speed" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "square root" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Rescale coordinates" -#~ msgid "pin" -#~ msgstr "pin" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "show blocks" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Pin an object down so that it cannot fall." +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Quit" -#~ msgid "joint" -#~ msgstr "joint" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar Journal description field" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "set gray" -#~ msgid "save as Physics activity" -#~ msgstr "save as Physics activity" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "presentation bulleted list" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Save the project to the Journal as a Physics activity." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "duration" -#~ msgid "gear" -#~ msgstr "gear" +#: turtleblocks.py:354 +msgid "New" +msgstr "New" -#~ msgid "Add a gear object to the project." -#~ msgstr "Add a gear object to the project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "places a comment in your code" -#~ msgid "density" -#~ msgstr "density" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "read pixel" -#~ 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)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "scale" -#~ msgid "friction" -#~ msgstr "friction" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "bottom" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "purple" -#~ msgid "bounciness" -#~ msgstr "bounciness" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Rescale coordinates down" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "click to open" -#~ msgid "dynamic" -#~ msgstr "dynamic" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "microphone input pitch" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in " -#~ "position." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Configuration" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palette of WeDo blocks" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Description:" -#~ msgid "WeDo" -#~ msgstr "WeDo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "journal" -#~ msgid "set current WeDo device" -#~ msgstr "set current WeDo device" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "empty trash" -#~ msgid "number of WeDo devices" -#~ msgstr "number of WeDo devices" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Turtle will draw when moved." -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Load..." -#~ msgid "distance sensor output" -#~ msgstr "distance sensor output" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Journal audio object" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Stop turtle" -#~ msgid "returns the current value of Motor A" -#~ msgstr "returns the current value of Motor A" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Turtle" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "changes the orientation of the palette of blocks" -#~ msgid "returns the current value of Motor B" -#~ msgstr "returns the current value of Motor B" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "store in" -#~ msgid "set the value for Motor A" -#~ msgstr "set the value for Motor A" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Hide blocks" -#~ msgid "set the value for Motor B" -#~ msgstr "set the value for Motor B" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Load Python block" -#~ msgid "WeDo is unavailable" -#~ msgstr "WeDo is unavailable" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" -#, python-format -#~ msgid "WeDo %d is unavailable; defaulting to 1" -#~ msgstr "WeDo %d is unavailable; defaulting to 1" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "or" -#, python-format -#~ msgid "%(device)s is unavailable on WeDo %(wedo_number)d" -#~ msgstr "%(device)s is unavailable on WeDo %(wedo_number)d" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "presentation template: list of bullets" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palette of LEGO NXT blocks of motors" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identity operator used for extending blocks" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palette of LEGO NXT blocks of sensors" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Shrink blocks" -#~ msgid "touch" -#~ msgstr "touch" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "sets size of text drawn by the turtle" -#~ msgid "ultrasonic" -#~ msgstr "ultrasonic" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" -#~ msgid "light" -#~ msgstr "light" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "image" -#~ msgid "grey" -#~ msgstr "gray" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"returns random number between minimum (top) and maximum (bottom) values" -#~ msgid "Please check the connection with the brick" -#~ msgstr "Please check the connection with the brick" +#: TurtleArt/tabasics.py:349 +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)" -#, 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" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Show palette" -#, 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" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "saves a picture to the Sugar Journal" -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "The value of power must be between -127 to 127" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Save snapshot" -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "An error has occurred: check all connections and try to reconnect" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" -#, python-format -#~ msgid "NXT found %s bricks" -#~ msgstr "NXT found %s bricks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "returns True if heap is empty" -#~ msgid "NXT not found" -#~ msgstr "NXT not found" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "moves turtle forward" -#~ msgid "refresh NXT" -#~ msgstr "refresh NXT" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "forward" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Search for a connected NXT brick." +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "my box" -#~ msgid "set current NXT device" -#~ msgstr "set current NXT device" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Account ID" -#~ msgid "number of NXT devices" -#~ msgstr "number of NXT devices" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Select blocks to share" -#~ msgid "brick name" -#~ msgstr "brick name" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "back" -#~ msgid "Get the name of a brick." -#~ msgstr "Get the name of a brick." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "sets the scale of media" -#~ msgid "play tone" -#~ msgstr "play tone" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "holds current scale value" -#~ msgid "frequency" -#~ msgstr "frequency" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "presentation 1x1" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Play a tone at frequency for time." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "presentation 1x2" -#~ msgid "" -#~ "turn motor\n" -#~ "\n" -#~ msgstr "" -#~ "turn motor\n" -#~ "\n" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "top of nameable action stack" -#~ msgid "port" -#~ msgstr "port" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "stores numeric value in named variable" -#~ msgid "power" -#~ msgstr "power" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logical OR operator" -#~ msgid "rotations" -#~ msgstr "rotations" +#: 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 "microphone input voltage" -#~ msgid "turn a motor" -#~ msgstr "turn a motor" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "loops specified number of times" -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Save..." -#~ msgid "steering" -#~ msgstr "steering" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "invokes Action 2 stack" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "synchronize two motors connected in PORT B and PORT C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "setxy" -#~ msgid "PORT A" -#~ msgstr "PORT A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "title y" -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A of the brick" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "title x" -#~ msgid "PORT B" -#~ msgstr "PORT B" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "fill screen" -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B of the brick" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "other" -#~ msgid "PORT C" -#~ msgstr "PORT C" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Save as" -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C of the brick" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "set xy" -#~ msgid "start motor" -#~ msgstr "start motor" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "trash" -#~ msgid "Run a motor forever." -#~ msgstr "Run a motor forever." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polar" -#~ msgid "brake motor" -#~ msgstr "brake motor" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repeat" -#~ msgid "Stop a specified motor." -#~ msgstr "Stop a specified motor." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "wait for current video or audio to complete" -#~ msgid "reset motor" -#~ msgstr "reset motor" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Save as image" -#~ msgid "Reset the motor counter." -#~ msgstr "Reset the motor counter." +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Edit" -#~ msgid "motor position" -#~ msgstr "motor position" +#: 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 "microphone input resistance" -#~ msgid "Get the motor position." -#~ msgstr "Get the motor position." +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "top of Action 2 stack" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 of the brick" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "read" -#~ msgstr "read" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "prints value in status block at bottom of the screen" -#~ msgid "sensor" -#~ msgstr "sensor" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "start fill" -#~ msgid "Read sensor output." -#~ msgstr "Read sensor output." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "holds results of query-keyboard block as ASCII" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "push" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 of the brick" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" -#~ msgid "light sensor" -#~ msgstr "light sensor" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "restore all" -#~ msgid "grey sensor" -#~ msgstr "gray sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "hello" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "TurtleBlocks" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 of the brick" +#: TurtleArt/tawindow.py:1256 +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" -#~ msgid "touch sensor" -#~ msgstr "touch sensor" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "Palettes" -#~ msgid "distance sensor" -#~ msgstr "distance sensor" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Facebook wall post" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Please install the Speak Activity and try again." -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 of the brick" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Spanish" -#~ msgid "sound sensor" -#~ msgstr "sound sensor" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "English" -#~ msgid "color sensor" -#~ msgstr "color sensor" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Sorry, I can't understand what you are asking about." -#~ msgid "set light" -#~ msgstr "set light" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." -#~ msgid "Set color sensor light." -#~ msgstr "Set color sensor light." +#: turtleblocks.py:407 +msgid "About..." +msgstr "About..." -#~ msgid "battery level" -#~ msgstr "battery level" +#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgstr "returns the battery charge as a number between 0 and 255" #~ msgid "Get battery level of the brick" #~ msgstr "Get battery level of the brick" -#~ msgid "HIGH" -#~ msgstr "HIGH" - -#~ msgid "LOW" -#~ msgstr "LOW" - -#~ msgid "INPUT" -#~ msgstr "INPUT" - -#~ msgid "OUTPUT" -#~ msgstr "OUTPUT" - -#~ msgid "PWM" -#~ msgstr "PWM" - -#~ msgid "SERVO" -#~ msgstr "SERVO" - -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ERROR: Check the Arduino and the number of port." - -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ERROR: Value must be a number from 0 to 255." - -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERROR: Value must be either HIGH or LOW." - -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." - -#~ msgid "refresh Arduino" -#~ msgstr "refresh Arduino" - -#~ msgid "Search for connected Arduinos." -#~ msgstr "Search for connected Arduinos." - -#~ msgid "Get the name of an Arduino." -#~ msgstr "Get the name of an Arduino." +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "adjust LED intensity between 0 and 255" -#~ msgid "pin mode" -#~ msgstr "pin mode" +#~ msgid "returns the ambient light level" +#~ msgstr "returns the ambient light level" -#~ msgid "mode" -#~ msgstr "mode" +#~ msgid "returns the ambient temperature" +#~ msgstr "returns the ambient temperature" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "returns 0 or 1 depending on the sensor inclination" -#~ msgid "analog write" -#~ msgstr "analog write" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "switches from 0 to 1, the frequency depends on the vibration" -#~ msgid "Write analog value in specified port." -#~ msgstr "Write analog value in specified port." +#~ msgid "grayscale" +#~ msgstr "grayscale" -#~ msgid "analog read" -#~ msgstr "analog read" +#~ msgid "ambient light" +#~ msgstr "ambient light" #~ 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." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" #~ 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." - -#~ msgid "digital write" -#~ msgstr "digital write" - -#~ msgid "Write digital value to specified port." -#~ msgstr "Write digital value to specified port." - -#~ msgid "digital read" -#~ msgstr "digital read" - -#~ msgid "Read value from digital port." -#~ msgstr "Read value from digital port." - -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Set HIGH value for digital port." - -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Configure Arduino port for digital input." - -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Configure Arduino port to drive a servo." - -#~ msgid "Set LOW value for digital port." -#~ msgstr "Set LOW value for digital port." - -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Configure Arduino port for digital output." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Configure Arduino port for PWM (pulse-width modulation)." - -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palette of Expeyes blocks" - -#~ msgid "set PVS" -#~ msgstr "set PVS" - -#~ msgid "set programmable voltage output" -#~ msgstr "set programmable voltage output" - -#~ msgid "set SQR1 voltage" -#~ msgstr "set SQR1 voltage" +#~ msgid "magnetic induction" +#~ msgstr "magnetic induction" -#~ msgid "set square wave 1 voltage output" -#~ msgstr "set square wave 1 voltage output" +#~ msgid "vibration" +#~ msgstr "vibration" -#~ msgid "set SQR2 voltage" -#~ msgstr "set SQR2 voltage" +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "move the Butia robot forward a predefined distance" -#~ msgid "set square wave 2 voltage output" -#~ msgstr "set square wave 2 voltage output" +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "move the Butia robot backward a predefined distance" -#~ msgid "set OD1" -#~ msgstr "set OD1" +#~ msgid "turn Butia" +#~ msgstr "turn Butia" -#~ msgid "set digital output level (OD1) low (0) or high (1)" -#~ msgstr "set digital output level (OD1) low (0) or high (1)" +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "turn the Butia robot x degrees" -#~ msgid "IN1 level" -#~ msgstr "IN1 level" +#~ msgid "moves the Butia at specify speed motors" +#~ msgstr "moves the Butia at specified speed motors" -#~ msgid "" -#~ "returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " -#~ "volts" -#~ msgstr "" -#~ "returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " -#~ "volts" +#~ msgid "grey" +#~ msgstr "gray" -#~ msgid "IN2 level" -#~ msgstr "IN2 level" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "returns the object gray level as a number between 0 and 1023" -#~ msgid "" -#~ "returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " -#~ "volts" -#~ msgstr "" -#~ "returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " -#~ "volts" +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "returns the ambient light level as a number between 0 and 1023" -#~ msgid "SEN level" -#~ msgstr "SEN level" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "returns the ambient temperature as a number between 0 and 255" #~ msgid "" -#~ "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " -#~ "voltage level <= 2.5 volts" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgstr "" -#~ "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " -#~ "voltage level <= 2.5 volts" - -#~ msgid "capture" -#~ msgstr "capture" - -#~ msgid "input" -#~ msgstr "input" - -#~ msgid "samples" -#~ msgstr "samples" - -#~ msgid "interval" -#~ msgstr "interval" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgid "" -#~ "capture multiple samples from input at interval (MS); results pushed to FIFO" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "capture multiple samples from input at interval (MS); results pushed to FIFO" - -#~ msgid "A1" -#~ msgstr "A1" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" -#~ msgid "read analog input 1 voltage" -#~ msgstr "read analog input 1 voltage" - -#~ msgid "A2" -#~ msgstr "A2" - -#~ msgid "read analog input 2 voltage" -#~ msgstr "read analog input 2 voltage" - -#~ msgid "IN1" -#~ msgstr "IN1" - -#~ msgid "read input 1 voltage" -#~ msgstr "read input 1 voltage" - -#~ msgid "IN2" -#~ msgstr "IN2" - -#~ msgid "read input 2 voltage" -#~ msgstr "read input 2 voltage" - -#~ msgid "SEN" -#~ msgstr "SEN" - -#~ msgid "read analog sensor input voltage" -#~ msgstr "read analog sensor input voltage" - -#~ msgid "SQR1" -#~ msgstr "SQR1" - -#~ msgid "read square wave 1 voltage" -#~ msgstr "read square wave 1 voltage" - -#~ msgid "SQR2" -#~ msgstr "SQR2" - -#~ msgid "read square wave 2 voltage" -#~ msgstr "read square wave 2 voltage" - -#~ msgid "PVS" -#~ msgstr "PVS" - -#~ msgid "read programmable voltage" -#~ msgstr "read programmable voltage" - -#~ msgid "Expeyes device not found" -#~ msgstr "Expeyes device not found" - -#~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" -#~ msgstr "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ msgid "grey sensor" +#~ msgstr "gray sensor" #~ msgid "NxT" #~ msgstr "NXT" @@ -3090,9 +3995,11 @@ msgstr "Save project?" #~ msgstr "brake a specified motor" #~ 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 "" -#~ "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" #~ msgid "activity count" #~ msgstr "activity count" @@ -3186,8 +4093,10 @@ msgstr "Save project?" #~ msgstr "" #~ "Returns the level of ligth in the ambient as a number between 0 and 1023." -#~ msgid "Returns the temperature in the ambient as a number between 0 and 255." -#~ msgstr "Returns the temperature in the ambient as a number between 0 and 255." +#~ msgid "" +#~ "Returns the temperature in the ambient as a number between 0 and 255." +#~ msgstr "" +#~ "Returns the temperature in the ambient as a number between 0 and 255." #~ msgid "stack" #~ msgstr "stack" @@ -3207,8 +4116,10 @@ msgstr "Save project?" #~ msgid "restore last" #~ msgstr "restore last" -#~ msgid "a programmable block: used to add advanced math equations, e.g., sin(x)" -#~ msgstr "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 "" +#~ "a programmable block: used to add advanced math equations, e.g., sin(x)" #~ msgid "blocks" #~ msgstr "blocks" diff --git a/po/en_GB.po b/po/en_GB.po index e451750..b4d9a5e 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -1,13 +1,54 @@ +# #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 08:14+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: en_GB\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" +"#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 08:14+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: en_GB\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" +"#-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1124 +63,2245 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "TurtleBlocks" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "" -"A Logo-inspired turtle that draws colourful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" +msgstr "turtleart-extras (master)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palette of turtle commands" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "Turtle Blocks" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "forward" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "moves turtle forward" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "Turtle Art Mini" + +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "Turtle Confusion" + +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Select a challenge" + +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Amazonas Tortuga" + +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Palette of Mexican pesos" + +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Palette of Colombian pesos" + +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Palette of Rwandan francs" + +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "Palette of US dollars" + +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Palette of Australian dollars" + +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Palette of Paraguayan Guaranies" + +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Palette of Peruvian Nuevo Soles" + +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Palette of Uruguayan Pesos" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "TurtleBots" + +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" + +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "ERROR: The speed must be a value between 0 and 1023" + +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "ERROR: The pin must be between 1 and 8" + +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "ERROR: The value must be 0 or 1, LOW or HIGH" + +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "ERROR: The mode must be INPUT or OUTPUT." + +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "Turn LED on and off: 0 is off; 1 is on" + +#: taextras.py:79 +msgid "returns the gray level" +msgstr "returns the object grey level" + +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "returns 1 when the button is press and 0 otherwise" + +#: taextras.py:81 +msgid "returns the light level" +msgstr "returns the light level" + +#: taextras.py:82 +msgid "returns the temperature" +msgstr "returns the temperature" + +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "returns the distance from the object in front of the sensor" + +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "returns 1 when the sensors detects a magnetic field, 0 otherwise" + +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "returns the value of the resistance" + +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "returns the value of the voltage" + +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" + +#: taextras.py:88 +msgid "LED" +msgstr "LED" + +#: taextras.py:89 +msgid "button" +msgstr "button" + +#: taextras.py:90 taextras.py:358 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "grey" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "back" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "light" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "moves turtle backward" +#: taextras.py:92 +msgid "temperature" +msgstr "temperature" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "clean" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "distance" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "clears the screen and reset the turtle" +#: taextras.py:94 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:95 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:96 +msgid "Butia Robot" +msgstr "Butia Robot" + +#: taextras.py:97 +msgid "refresh Butia" +msgstr "refresh Butia" + +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "refresh the state of the Butia palette and blocks" -#: TurtleArt/tabasics.py:162 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "battery charge Butia" + +#: taextras.py:101 +msgid "" +"returns the battery charge in volts. If no motors present, it returns 255" +msgstr "" +"returns the battery charge in volts. If no motors present, it returns 255" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "speed Butia" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "set the speed of the Butia motors" + +#: taextras.py:105 +msgid "move Butia" +msgstr "move Butia" + +#: taextras.py:106 TurtleArt/tabasics.py:162 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 msgid "left" msgstr "left" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "turns turtle anticlockwise (angle in degrees)" - -#: TurtleArt/tabasics.py:174 +#: taextras.py:107 TurtleArt/tabasics.py:174 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 msgid "right" msgstr "right" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "turns turtle clockwise (angle in degrees)" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "moves the Butia motors at the specified speed" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "stop Butia" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "stop the Butia robot" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "forward Butia" + +#: taextras.py:113 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "left Butia" + +#: taextras.py:116 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "right Butia" + +#: taextras.py:119 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "backward Butia" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "move the Butia robot backward" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "Butia Robot extra blocks" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "hack pin mode" + +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "pin" + +#: taextras.py:126 taextras.py:457 +msgid "mode" +msgstr "mode" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Select the pin function (INPUT, OUTPUT)." + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "write hack pin Butia" + +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "value" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "set a hack pin to 0 or 1" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "angle" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "read hack pin Butia" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radius" +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "read the value of a hack pin" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "moves turtle along an arc" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "HIGH" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "set xy" +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "Set HIGH value for digital port." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "INPUT" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "Configure hack port for digital input." -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -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." +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "LOW" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "set heading" +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "Set LOW value for digital port." -#: TurtleArt/tabasics.py:217 -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.)" +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "OUTPUT" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "Configure hack port for digital output." -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:141 +msgid "Butia" +msgstr "Butia" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "ERROR: The pin %s must be in OUTPUT mode." -#: TurtleArt/tabasics.py:237 +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "ERROR: The pin %s must be in INPUT mode." + +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "Error importing Pygame. This plugin require Pygame 1.9" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "Error on initialisation of the camera" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "No camera was found" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Error stopping camera" + +#: taextras.py:151 +msgid "Error starting camera" +msgstr "Error starting camera" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "Error in get mask" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "FollowMe" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "refresh FollowMe" + +#: taextras.py:156 +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 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "calibration" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "return a personalised calibration" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "return a personalised calibration" + +#: taextras.py:161 +msgid "follow" +msgstr "follow" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "follow a colour or calibration" + +#: taextras.py:163 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 "brightness" + +#: taextras.py:164 +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:165 +msgid "minimum pixels" +msgstr "minimum pixels" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "set the minimal number of pixels to follow" + +#: taextras.py:167 +msgid "threshold" +msgstr "threshold" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "set a threshold for a RGB colour" + +#: taextras.py:170 +msgid "camera mode" +msgstr "camera mode" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +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:173 +msgid "get brightness" +msgstr "get brightness" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "get the brightness of the ambient light" + +#: taextras.py:175 +msgid "average color" +msgstr "average colour" + +#: taextras.py:176 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" - -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "heading" - -#: TurtleArt/tabasics.py:248 +"if set to 0 then colour averaging is off during calibration; for other " +"values it is on" + +#: taextras.py:178 +msgid "x position" +msgstr "x position" + +#: taextras.py:179 +msgid "return x position" +msgstr "return x position" + +#: taextras.py:180 +msgid "y position" +msgstr "y position" + +#: taextras.py:181 +msgid "return y position" +msgstr "return y position" + +#: taextras.py:182 +msgid "pixels" +msgstr "pixels" + +#: taextras.py:183 +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) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +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) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +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) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "set the colour mode of the camera to HSV" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "empty calibration" + +#: taextras.py:191 +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:197 +msgid "Pattern detection" +msgstr "Pattern detection" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "Seeing signal" + +#: taextras.py:199 +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:200 +msgid "Distance to signal" +msgstr "Distance to signal" + +#: taextras.py:201 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "speed SumBot" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "submit the speed to the SumBot" + +#: taextras.py:209 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "forward SumBot" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "move SumBot forward" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "backward SumBot" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "move SumBot backward" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "stop SumBot" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "stop the SumBot" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "left SumBot" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "turn left the SumBot" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "right SumBot" + +#: taextras.py:223 +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 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:226 +msgid "angle to center" +msgstr "angle to centre" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +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) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "angle to Enemy" + +#: taextras.py:232 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "x coor. SumBot" + +#: taextras.py:235 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "y coor. SumBot" + +#: taextras.py:238 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "x coor. Enemy" + +#: taextras.py:241 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "y coor. Enemy" + +#: taextras.py:244 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "rotation SumBot" + +#: taextras.py:247 +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" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "rotation Enemy" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "get the rotation of the Enemy" + +#: taextras.py:251 +msgid "distance to center" +msgstr "distance to centre" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "get the distance to the centre of the dohyo" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "distance to Enemy" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "get the distance to the Enemy" + +#: taextras.py:256 +msgid "update information" +msgstr "update information" + +#: taextras.py:257 +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 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Palette of physics blocks" + +#: taextras.py:263 +msgid "start polygon" +msgstr "start polygon" + +#: taextras.py:264 +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:266 +msgid "add point" +msgstr "add point" + +#: taextras.py:267 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Add a new point to the current polygon based on the current Turtle xy " +"position." msgstr "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" - -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palette of pen commands" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "fill screen" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "colour" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "shade" - -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "fills the background with (colour, shade)" - -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "grey" +"Add a new point to the current polygon based on the current Turtle xy " +"position." + +#: taextras.py:269 +msgid "end polygon" +msgstr "end polygon" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Define a new polygon." + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "end filled polygon" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "Not a simple polygon" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Define a new filled polygon." + +#: taextras.py:274 +msgid "triangle" +msgstr "triangle" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "base" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "height" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "set colour" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Add a triangle object to the project." -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "sets colour of the line drawn by the turtle" +#: taextras.py:279 +msgid "circle" +msgstr "circle" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "set shade" +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Add a circle object to the project." -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "sets shade of the line drawn by the turtle" - -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "set grey" - -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "sets grey level of the line drawn by the turtle" +#: taextras.py:281 +msgid "rectangle" +msgstr "rectangle" -#: TurtleArt/tabasics.py:349 -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)" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "width" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "holds current pen shade" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Add a rectangle object to the project." -#: TurtleArt/tabasics.py:368 -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)" +#: taextras.py:285 +msgid "reset" +msgstr "reset" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pen up" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Reset the project; clear the object list." -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Turtle will not draw when moved." +#: taextras.py:287 +msgid "motor" +msgstr "motor" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pen down" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "torque" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Turtle will draw when moved." +#: taextras.py:290 +msgid "speed" +msgstr "speed" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "set pen size" +#: taextras.py:291 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "sets size of the line drawn by the turtle" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Pin an object down so that it cannot fall." -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "start fill" +#: taextras.py:295 +msgid "joint" +msgstr "joint" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "starts filled polygon (used with end fill block)" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "end fill" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "completes filled polygon (used with start fill block)" +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "save as Physics activity" + +#: taextras.py:301 +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 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "gear" + +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Add a gear object to the project." + +#: taextras.py:305 +msgid "density" +msgstr "density" + +#: taextras.py:306 +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)." -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "pen size" +#: taextras.py:308 +msgid "friction" +msgstr "friction" -#: TurtleArt/tabasics.py:427 -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)" +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "bounciness" + +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "dynamic" + +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "Palette of WeDo blocks" + +#: taextras.py:324 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "set current WeDo device" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "number of WeDo devices" + +#: taextras.py:327 +msgid "tilt" +msgstr "tilt" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "distance sensor output" + +#: taextras.py:333 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "returns the current value of Motor A" + +#: taextras.py:335 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "returns the current value of Motor B" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "set the value for Motor A" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "set the value for Motor B" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "WeDo is unavailable" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "WeDo %d is unavailable; defaulting to 1" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palette of pen colours" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, 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 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palette of LEGO NXT blocks of motors" + +#: taextras.py:350 +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) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "touch" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "ultrasonic" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "colour" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "red" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "sound" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "orange" +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "Please check the connection with the brick" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "yellow" +#: taextras.py:361 +#, 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" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "green" +#: taextras.py:362 +#, 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" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyan" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "The value of power must be between -127 to 127" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blue" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "The parameter must be a integer, not '%s'" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "purple" +#: taextras.py:365 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "An error has occurred: check all connections and try to reconnect" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "white" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT found %s bricks" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "black" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT not found" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "set text colour" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "Brick number %s was not found" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "sets colour of text drawn by the turtle" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "refresh NXT" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "set text size" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Search for a connected NXT brick." -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "sets size of text drawn by the turtle" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palette of numeric operators" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "set current NXT device" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "number of NXT devices" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "adds two alphanumeric inputs" +#: taextras.py:374 +msgid "brick name" +msgstr "brick name" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "minus" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "Get the name of a brick." -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "subtracts bottom numeric input from top numeric input" +#: taextras.py:376 +msgid "play tone" +msgstr "play tone" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "multiply" +#: taextras.py:377 +msgid "frequency" +msgstr "frequency" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplies two numeric inputs" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "time" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "divide" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Play a tone at frequency for time." -#: TurtleArt/tabasics.py:604 +#. TRANS: turn is the action +#: taextras.py:381 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"turn motor\n" +"\n" msgstr "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" - -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identity" - -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identity operator used for extending blocks" - -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" - -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modular (remainder) operator" - -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +"turn motor\n" +"\n" + +#: taextras.py:382 +msgid "port" +msgstr "port" + +#: taextras.py:383 +msgid "power" +msgstr "power" + +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "rotations" + +#: taextras.py:386 +msgid "turn a motor" +msgstr "turn a motor" + +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"synchronise\n" +"\n" +"motors" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "square root" +#: taextras.py:388 +msgid "steering" +msgstr "steering" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "calculates square root" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "synchronise two motors connected in PORT B and PORT C" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "random" +#: taextras.py:390 +msgid "PORT A" +msgstr "PORT A" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "PORT A of the brick" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: taextras.py:392 +msgid "PORT B" +msgstr "PORT B" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "PORT B of the brick" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "number" +#: taextras.py:394 +msgid "PORT C" +msgstr "PORT C" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "used as numeric input in mathematic operators" - -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "greater than" - -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logical greater-than operator" - -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "less than" - -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logical less-than operator" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "PORT C of the brick" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "equal" +#: taextras.py:396 +msgid "" +"synchronize\n" +"motors" +msgstr "" +"synchronise\n" +"motors" + +#: taextras.py:397 +msgid "start motor" +msgstr "start motor" + +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "Run a motor forever." + +#: taextras.py:399 +msgid "brake motor" +msgstr "brake motor" + +#: taextras.py:400 +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 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "reset motor" + +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "Reset the motor counter." + +#: taextras.py:404 +msgid "motor position" +msgstr "motor position" + +#: taextras.py:405 +msgid "Get the motor position." +msgstr "Get the motor position." + +#: taextras.py:406 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "PORT 1 of the brick" + +#: taextras.py:408 +msgid "read" +msgstr "read" + +#: taextras.py:409 +msgid "sensor" +msgstr "sensor" + +#: taextras.py:410 +msgid "Read sensor output." +msgstr "Read sensor output." + +#: taextras.py:411 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "PORT 2 of the brick" + +#: taextras.py:413 +msgid "light sensor" +msgstr "light sensor" + +#: taextras.py:414 +msgid "gray sensor" +msgstr "grey sensor" + +#: taextras.py:415 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "PORT 3 of the brick" + +#: taextras.py:417 +msgid "touch sensor" +msgstr "touch sensor" + +#: taextras.py:418 +msgid "distance sensor" +msgstr "distance sensor" + +#: taextras.py:419 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:420 +msgid "PORT 4 of the brick" +msgstr "PORT 4 of the brick" + +#: taextras.py:421 +msgid "sound sensor" +msgstr "sound sensor" + +#: taextras.py:422 +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) +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:425 +msgid "set light" +msgstr "set light" + +#: taextras.py:426 +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 +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "battery level" + +#: taextras.py:429 +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: PWM is pulse-width modulation +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:440 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ERROR: Check the Arduino and the number of port." + +#: taextras.py:442 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "ERROR: Value must be a number from 0 to 255." + +#: taextras.py:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ERROR: Value must be either HIGH or LOW." + +#: taextras.py:444 +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:445 +msgid "refresh Arduino" +msgstr "refresh Arduino" + +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "Search for connected Arduinos." + +#: taextras.py:447 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "set current Arduino board" + +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "number of Arduinos" + +#: taextras.py:450 +msgid "number of Arduino boards" +msgstr "number of Arduino boards" + +#: taextras.py:451 +msgid "Arduino name" +msgstr "Arduino name" + +#: taextras.py:452 +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. +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:455 +msgid "pin mode" +msgstr "pin mode" + +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." + +#: taextras.py:459 +msgid "analog write" +msgstr "analogue write" + +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "Write analogue value in specified port." + +#: taextras.py:462 +msgid "analog read" +msgstr "analogue read" + +#: taextras.py:463 +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 "" +"Read value from analogue port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." + +#: taextras.py:465 +msgid "digital write" +msgstr "digital write" + +#: taextras.py:466 +msgid "Write digital value to specified port." +msgstr "Write digital value to specified port." + +#: taextras.py:467 +msgid "digital read" +msgstr "digital read" + +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "Read value from digital port." + +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "Configure Arduino port for digital input." + +#: taextras.py:471 +msgid "Configure Arduino port to drive a servo." +msgstr "Configure Arduino port to drive a servo." + +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "Configure Arduino port for digital output." + +#: taextras.py:474 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Configure Arduino port for PWM (pulse-width modulation)." + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +msgid "Palette of Expeyes blocks" +msgstr "Palette of Expeyes blocks" + +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" +msgstr "set PVS" + +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "set programmable voltage output" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "set SQR1 voltage" + +#: taextras.py:485 +msgid "set square wave 1 voltage output" +msgstr "set square wave 1 voltage output" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:487 +msgid "set SQR2 voltage" +msgstr "set SQR2 voltage" + +#: taextras.py:488 +msgid "set square wave 2 voltage output" +msgstr "set square wave 2 voltage output" + +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "set OD1" + +#: taextras.py:491 +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:493 +msgid "IN1 level" +msgstr "IN1 level" + +#: taextras.py:494 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logical equal-to operator" +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "IN2 level" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "not" +#: taextras.py:498 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logical NOT operator" +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "SEN level" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "and" +#: taextras.py:502 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logical AND operator" +#: taextras.py:504 +msgid "capture" +msgstr "capture" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "or" +#: taextras.py:505 +msgid "input" +msgstr "input" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logical OR operator" +#: taextras.py:506 +msgid "samples" +msgstr "samples" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palette of flow operators" +#: taextras.py:507 +msgid "interval" +msgstr "interval" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "wait" +#. TRANS: MS is microseconds +#: taextras.py:509 +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:512 +msgid "A1" +msgstr "A1" + +#: taextras.py:513 +msgid "read analog input 1 voltage" +msgstr "read analogue input 1 voltage" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "A2" + +#: taextras.py:516 +msgid "read analog input 2 voltage" +msgstr "read analogue input 2 voltage" + +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "read input 1 voltage" + +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "read input 2 voltage" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:525 +msgid "read analog sensor input voltage" +msgstr "read analogue sensor input voltage" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:528 +msgid "read square wave 1 voltage" +msgstr "read square wave 1 voltage" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:530 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "read square wave 2 voltage" + +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "read programmable voltage" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "Expeyes device not found" -#: TurtleArt/tabasics.py:747 -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:299 +msgid "resume playing video or audio" +msgstr "resume playing video or audio" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "forever" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Title" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "loops forever" +#: 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 "Average RGB colour from camera is pushed to the stack" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repeat" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "yellow" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "loops specified number of times" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "displays polar coordinates" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "if" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "empties FILO (first-in-last-out heap)" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "then" +#: 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 "camera output" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "if then" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "push acceleration in x, y, z to heap" #: TurtleArt/tabasics.py:781 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:789 -msgid "else" -msgstr "else" - -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "if then else" - -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "if-then-else operator that uses boolean operators from Numbers palette" - -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "horizontal space" - #: TurtleArt/tabasics.py:812 msgid "jogs stack right" msgstr "jogs stack right" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "vertical space" - -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "jogs stack down" - -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "stop action" - -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "stops current action" - -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palette of variable blocks" - -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" - -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "connects action to tool-bar run buttons" - -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "text" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "string value" - -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "action" - -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "top of nameable action stack" - -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "invokes named action stack" - -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "store in box 1" - -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "stores numeric value in Variable 1" - -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "store in box 2" - -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "stores numeric value in Variable 2" - -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "box 1" - -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variable 1 (numeric value)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Journal media object" #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "box 2" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variable 2 (numeric value)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "store in" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "box 1" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "box" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Step" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "value" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplies two numeric inputs" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "my box" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Show/hide blocks" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "stores numeric value in named variable" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Hide palette" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "named variable (numeric value)" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Buddies" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "action 1" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "My Turtle Art session" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "top of Action 1 stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar Journal video object" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "action 2" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyan" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "top of Action 2 stack" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"A Logo-inspired turtle that draws colourful pictures with snap-together " +"visual programming blocks" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "invokes Action 1 stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor of right of screen" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "invokes Action 2 stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Palette of extra options" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "wastebasket" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Load example" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "empty wastebasket" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "move all blocks to wastebasket" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "permanently deletes items in wastebasket" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "list" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "restore all" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Configuration directory not writable: %s" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "restore all blocks from wastebasket" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "media resume" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "clear all" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "heading" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "move all blocks to wastebasket" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Sharing blocks disabled" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Share selected blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "saves turtle graphics as an SVG file in the Sugar Journal" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Title" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "draws text or show media from the Journal" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Stop turtle" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Show blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "video" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Hide blocks" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blue" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "did not output to" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "displays Cartesian coordinates" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "I don't know how to" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "No option action:" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "doesn't like" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "jogs stack down" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "as input" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modular (remainder) operator" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "displays next palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "bottom y" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "changes the orientation of the palette of blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "save SVG" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Load..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +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/tautils.py:206 -msgid "Save..." -msgstr "Save..." +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pen down" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "click to open" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "wait" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientation" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "box" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "next" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Failed to upload!" #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" msgstr "shift" -#: TurtleArt/tawindow.py:1256 -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/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Select blocks to share" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "image" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Save as Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Save as image" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "snapshot" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "invokes named action stack" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Save snapshot" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "action" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Turn off hover help" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"do-until-True operator that uses boolean operators from Numbers palette" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Turn on hover help" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "usage is" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Show palette" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variable 2 (numeric value)" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Hide palette" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "divide" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Rescale coordinates down" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "picture name" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Rescale coordinates up" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "while" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Edit" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "the canvas width" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "View" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "empty heap?" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Project" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "named variable (numeric value)" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Save/Load" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "next" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copy" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "if then" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Paste" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "set pen size" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Restore all blocks from wastebasket" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "presentation template: select Journal object (no description)" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Full-screen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "until" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Cartesian coordinates" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "media stop" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Polar coordinates" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Turn on hover help" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Metric coordinates" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "permanently deletes items in wastebasket" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Grow blocks" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "uturn" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Shrink blocks" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "top of Action 1 stack" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Load example" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Clean" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palette of flow operators" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Run" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "top of a collapsed stack" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Step" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "if-then-else operator that uses boolean operators from Numbers palette" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Help" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "returns mouse y coordinate" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stop" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "holds current pen shade" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Load project" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinewave" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Load plugin" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Login failed" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Load Python block" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "left x" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "Palettes" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "set heading" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Sharing blocks disabled" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "RGB colour under the turtle is pushed to the stack" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "de-clutters canvas by hiding blocks" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Plugin could not be installed." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Please restart Turtle Art in order to use the plugin." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Plugin %s already installed." - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Do you want to reinstall %s?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "My Turtle Art session" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Enable collaboration" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Activities" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Buddies" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Share" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Configuration" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Neighbourhood" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Nickname" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Account ID" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Server" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Password" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python chr operator" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Register" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "horizontal space" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Colours" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Metric coordinates" -#: 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 "Upload" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "string value" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Facebook wall post" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "description" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Upload to Web" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "I don't know how to" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "set text size" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "Username:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Password:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Title:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Description:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Submit to Web" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "starts filled polygon (used with end fill block)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Cancel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "presentation template: select four Journal objects" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Login failed" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "View" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Failed to upload!" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "sets grey level of the line drawn by the turtle" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palette of sensor blocks" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Password:" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "acceleration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "turtle sees" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "push acceleration in x, y, z to heap" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "stop action" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "sound" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "green" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "raw microphone input signal" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "shade" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "loudness" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "fills the background with (colour, shade)" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "microphone input volume" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "save picture" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1147,428 +2309,252 @@ msgstr "microphone input volume" msgid "pitch" msgstr "pitch" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "microphone input pitch" - -#: 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" - -#: 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 "microphone input resistance" - -#: 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" - -#: 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 "microphone input voltage" - -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palette of media objects" - -#: 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 "brightness" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "light level detected by camera" - -#: 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 "Average RGB colour from camera is pushed to the stack" - -#: 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 "camera output" - -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "light level detected by light sensor" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "read value from RFID device" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "while" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "do-while-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "until" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "do-until-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "top" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "top of a collapsible stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "returns 1 if mouse button is pressed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "journal" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Rescale coordinates up" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Journal media object" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pen up" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "orange" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Journal audio object" +#: TurtleArt/tabasics.py:747 +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:163 -msgid "video" -msgstr "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "pushes value onto FILO (first-in last-out heap)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar Journal video object" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "clear all" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "description" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "then" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar Journal description field" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Register" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "show" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "not" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "draws text or show media from the Journal" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "if then else" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "show aligned" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "stops current action" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "set scale" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "turns turtle clockwise (angle in degrees)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "sets the scale of media" +#: TurtleArt/tabasics.py:368 +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:245 -msgid "save picture" -msgstr "save picture" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor of left of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "picture name" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Reset block size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "saves a picture to the Sugar Journal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "save SVG" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "displays next palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -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:772 +msgid "hide blocks" +msgstr "hide blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "scale" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "light level detected by camera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "holds current scale value" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python int operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "media wait" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logical less-than operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "wait for current video or audio to complete" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "restore all blocks from wastebasket" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "media stop" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Save" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "stop video or audio" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "store in box 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "media pause" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "store in box 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "pause video or audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "hides the Sugar tool-bars" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "media resume" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +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:299 -msgid "resume playing video or audio" -msgstr "resume playing video or audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "print" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "speak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "returns mouse x coordinate" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "hello" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "red" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "speaks text" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Save as Logo" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinewave" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "sets colour of the line drawn by the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "amplitude" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "set text colour" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "duration" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "loudness" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Enable collaboration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "button down" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palette of sensor blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "returns 1 if mouse button is pressed" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Load plugin" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "returns True if mouse button is pressed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "mouse x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "returns mouse x coordinate" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "mouse y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "returns mouse y coordinate" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "number" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "query keyboard" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -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:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "top" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "keyboard" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Submit to Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "holds results of query-keyboard block as ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Cartesian coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "read pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Nickname" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -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:234 +msgid "set scale" +msgstr "set scale" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "turtle sees" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Share selected blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "returns the colour that the turtle \"sees\"" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "white" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "time" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "connects action to tool-bar run buttons" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "elapsed time (in seconds) since program started" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Palette of extra options" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "push" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "pushes value onto FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "show heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "shows values in FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "empty heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "empties FILO (first-in-last-out heap)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "pop" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "pops value off FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "empty heap?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "returns True if heap is empty" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "comment" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "places a comment in your code" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "print" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplitude" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "prints value in status block at bottom of the screen" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Cancel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python chr operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "the canvas height" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python int operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "presentation 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "minus" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"a programmable block: used to add advanced single-variable math equations, " -"e.g., sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "and" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"a programmable block: used to add advanced multi-variable math equations, " -"e.g., sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "top of a collapsible stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"a programmable block: used to add advanced multi-variable math equations, " -"e.g., sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "as input" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1576,56 +2562,26 @@ msgstr "" msgid "Python block" msgstr "Python block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -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" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesian" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "displays Cartesian coordinates" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "displays polar coordinates" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "turtle" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "chooses which turtle to command" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "media wait" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "turtle shell" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "acceleration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "put a custom 'shell' on the turtle" +#: TurtleArt/tabasics.py:427 +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)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "top of a collapsed stack" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "set colour" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "load" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1633,70 +2589,68 @@ msgstr "load" msgid "loads a block" msgstr "loads a block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "setxy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palette of pen commands" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "shows values in FILO (first-in last-out heap)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "selects a palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"do-while-True operator that uses boolean operators from Numbers palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palette of presentation templates" +#: turtleblocks.py:363 +msgid "File" +msgstr "File" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "hide blocks" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logical NOT operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "de-clutters canvas by hiding blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor of bottom of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "show blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "presentation template: select Journal object (with description)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "restores hidden blocks" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palette of numeric operators" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "hides the Sugar tool-bars" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "multiply" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "list" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "forever" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "presentation bulleted list" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Plugin %s already installed." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "presentation template: list of bullets" +#: TurtleArt/tabasics.py:329 +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:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "presentation template: select Journal object (no description)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "speaks text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "presentation template: select Journal object (with description)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "snapshot" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "presentation template: select four Journal objects" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "clean" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1705,1014 +2659,1081 @@ msgstr "presentation template: select four Journal objects" msgid "presentation template: select two Journal objects" msgstr "presentation template: select two Journal objects" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor of left of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "bottom" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor of bottom of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "width" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "the canvas width" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor of right of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor of top of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "height" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "the canvas height" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "title x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "title y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "left x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "top y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "right x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Grow blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "bottom y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Full-screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "presentation 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "File not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "presentation 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "show" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "presentation 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "presentation 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "random" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Please install the Speak Activity and try again." +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logical greater-than operator" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Spanish" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "turns turtle anticlockwise (angle in degrees)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "English" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "black" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Sorry, I can't understand what you are asking about." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "calculates square root" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "push destination rgb value to heap" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "mouse x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "mouse y" #: pysamples/grecord.py:215 msgid "stop" msgstr "stop" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "play" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "save" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "other" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "uturn" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "make a uturn" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "usage is" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "No option action:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "File not found" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Configuration directory not writable: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "New" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Open" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Save" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Save as" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Quit" - -#: turtleblocks.py:363 -msgid "File" -msgstr "File" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Rescale coordinates" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Reset block size" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Show/hide blocks" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Tools" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debug" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Turtle" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "greater than" -#: turtleblocks.py:407 -msgid "About..." -msgstr "About..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "You have unsaved work. Would you like to save before quitting?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Help" #: turtleblocks.py:448 msgid "Save project?" msgstr "Save project?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Turtle Art Mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "Turtle Confusion" - -#~ msgid "Select a challenge" -#~ msgstr "Select a challenge" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palette of Mexican pesos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palette of Colombian pesos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palette of Rwandan francs" - -#~ msgid "Palette of US dollars" -#~ msgstr "Palette of US dollars" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Palette of Australian dollars" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Palette of Paraguayan Guaranies" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "chooses which turtle to command" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Palette of Peruvian Nuevo Soles" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "right x" -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Palette of Uruguayan Pesos" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "sets colour of text drawn by the turtle" -#~ msgid "TurtleBots" -#~ msgstr "TurtleBots" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "light level detected by light sensor" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "adjust LED intensity between 0 and 255" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Plugin could not be installed." -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "returns the object grey level as a number between 0 and 1023" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "keyboard" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "returns 1 when the button is press and 0 otherwise" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "returns the ambient light level as a number between 0 and 1023" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radius" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "returns the ambient temperature as a number between 0 and 255" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Polar coordinates" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "set shade" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "returns 0 or 1 depending on the sensor inclination" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logical AND operator" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "returns 1 when the sensors detects a magnetic field, 0 otherwise" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "switches from 0 to 1, the frequency depends on the vibration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "palette" -#~ msgid "LED" -#~ msgstr "LED" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Run" -#~ msgid "button" -#~ msgstr "button" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "show heap" -#~ msgid "grayscale" -#~ msgstr "grayscale" +#: TurtleArt/tabasics.py:217 +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.)" -#~ msgid "ambient light" -#~ msgstr "ambient light" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "selects a palette" -#~ msgid "temperature" -#~ msgstr "temperature" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "microphone input volume" -#~ msgid "distance" -#~ msgstr "distance" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Title:" -#~ msgid "tilt" -#~ msgstr "tilt" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palette of media objects" -#~ msgid "magnetic induction" -#~ msgstr "magnetic induction" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Restore all blocks from wastebasket" -#~ msgid "vibration" -#~ msgstr "vibration" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palette of variable blocks" -#~ msgid "Butia Robot" -#~ msgstr "Butia Robot" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "used as numeric input in mathematic operators" -#~ msgid "refresh Butia" -#~ msgstr "refresh Butia" +#: 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 "Upload" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "refresh the state of the Butia palette and blocks" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Server" -#~ msgid "battery charge Butia" -#~ msgstr "battery charge Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "presentation 2x2" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "returns the battery charge as a number between 0 and 255" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variable 1 (numeric value)" -#~ msgid "speed Butia" -#~ msgstr "speed Butia" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Neighbourhood" -#~ msgid "forward Butia" -#~ msgstr "forward Butia" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "adds two alphanumeric inputs" -#~ msgid "move the Butia robot forward" -#~ msgstr "move the Butia robot forward" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "equal" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "move the Butia robot forward a predefined distance" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "else" -#~ msgid "left Butia" -#~ msgstr "left Butia" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "doesn't like" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "turn the Butia robot at right" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "You have unsaved work. Would you like to save before quitting?" -#~ msgid "backward Butia" -#~ msgstr "backward Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "restores hidden blocks" -#~ msgid "move the Butia robot backward" -#~ msgstr "move the Butia robot backward" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "load" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "move the Butia robot backward a predefined distance" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "stop video or audio" -#~ msgid "right Butia" -#~ msgstr "right Butia" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Turtle will not draw when moved." -#~ msgid "turn the Butia robot at right" -#~ msgstr "turn the Butia robot at right" +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "pop" -#~ msgid "turn Butia" -#~ msgstr "turn Butia" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "pen size" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "turn the Butia robot x degrees" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "turtle shell" -#~ msgid "stop Butia" -#~ msgstr "stop Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" -#~ msgid "stop the Butia robot" -#~ msgstr "stop the Butia robot" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "Butia" -#~ msgstr "Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "speak" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Error on initialisation of the camera" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "read value from RFID device" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "No camera was found" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "moves turtle along an arc" -#~ msgid "Error stopping camera" -#~ msgstr "Error stopping camera" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "make a uturn" -#~ msgid "Error starting camera" -#~ msgstr "Error starting camera" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logical equal-to operator" -#~ msgid "FollowMe" -#~ msgstr "FollowMe" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palette of pen colours" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Search for a connected NXT brick." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "pause video or audio" -#~ msgid "calibration" -#~ msgstr "calibration" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "stores numeric value in Variable 1" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "stores a personalised calibration" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "stores numeric value in Variable 2" -#~ msgid "return a personalized calibration" -#~ msgstr "return a personalised calibration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "put a custom 'shell' on the turtle" -#~ msgid "follow" -#~ msgstr "follow" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "button down" -#~ msgid "follow a color or calibration" -#~ msgstr "follow a colour or calibration" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "moves turtle backward" -#~ msgid "minimum pixels" -#~ msgstr "minimum pixels" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor of top of screen" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "set the minimal number of pixels to follow" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Show blocks" -#~ msgid "threshold" -#~ msgstr "threshold" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "play" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "set a threshold for a RGB colour" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "save" -#~ msgid "camera mode" -#~ msgstr "camera mode" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Colours" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "set the colour mode of the camera: RGB, YUV, or HSV" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "sets size of the line drawn by the turtle" -#~ msgid "x position" -#~ msgstr "x position" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Open" -#~ msgid "return x position" -#~ msgstr "return x position" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientation" -#~ msgid "y position" -#~ msgstr "y position" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "return y position" -#~ msgstr "return y position" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" -#~ msgid "pixels" -#~ msgstr "pixels" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "if" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "return the number of pixels of the biggest blob" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +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." -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "set the colour mode of the camera to RGB" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "set the colour mode of the camera to YUV" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stop" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "set the colour mode of the camera to HSV" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "action 2" -#~ msgid "empty calibration" -#~ msgstr "empty calibration" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "action 1" -#~ msgid "error in string conversion" -#~ msgstr "error in string conversion" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "end fill" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copy" -#~ msgid "speed SumBot" -#~ msgstr "speed SumBot" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Paste" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "submit the speed to the SumBot" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "did not output to" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "set the default speed for the movement commands" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Activities" -#~ msgid "forward SumBot" -#~ msgstr "forward SumBot" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Upload to Web" -#~ msgid "move SumBot forward" -#~ msgstr "move SumBot forward" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "empty heap" -#~ msgid "backward SumBot" -#~ msgstr "backward SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "pops value off FILO (first-in last-out heap)" -#~ msgid "move SumBot backward" -#~ msgstr "move SumBot backward" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Clean" -#~ msgid "stop SumBot" -#~ msgstr "stop SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palette of presentation templates" -#~ msgid "stop the SumBot" -#~ msgstr "stop the SumBot" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "angle" -#~ msgid "left SumBot" -#~ msgstr "left SumBot" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identity" -#~ msgid "turn left the SumBot" -#~ msgstr "turn left the SumBot" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Save/Load" -#~ msgid "right SumBot" -#~ msgstr "right SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "top y" -#~ msgid "turn right the SumBot" -#~ msgstr "turn right the SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" -#~ msgid "angle to center" -#~ msgstr "angle to centre" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Tools" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "get the angle to the centre of the dohyo" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "angle to Enemy" -#~ msgstr "angle to Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "comment" -#~ msgid "get the angle to the Enemy" -#~ msgstr "get the angle to the Enemy" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "subtracts bottom numeric input from top numeric input" -#~ msgid "x coor. SumBot" -#~ msgstr "x coor. SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "media pause" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "get the x coordinate of the SumBot" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "push destination rgb value to heap" -#~ msgid "y coor. SumBot" -#~ msgstr "y coor. SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "query for keyboard input (results stored in keyboard block)" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "get the y coordinate of the SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesian" -#~ msgid "x coor. Enemy" -#~ msgstr "x coor. Enemy" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "clears the screen and reset the turtle" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "get the x coordinate of the Enemy" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "raw microphone input signal" -#~ msgid "y coor. Enemy" -#~ msgstr "y coor. Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "returns the colour that the turtle \"sees\"" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "get the y coordinate of the Enemy" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "invokes Action 1 stack" -#~ msgid "rotation SumBot" -#~ msgstr "rotation SumBot" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palette of turtle commands" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "get the rotation of the Sumbot" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "loops forever" -#~ msgid "rotation Enemy" -#~ msgstr "rotation Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "show aligned" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "get the rotation of the Enemy" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Do you want to reinstall %s?" -#~ msgid "distance to center" -#~ msgstr "distance to centre" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Load project" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "get the distance to the centre of the dohyo" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Project" -#~ msgid "distance to Enemy" -#~ msgstr "distance to Enemy" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debug" -#~ msgid "get the distance to the Enemy" -#~ msgstr "get the distance to the Enemy" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Turn off hover help" -#~ msgid "update information" -#~ msgstr "update information" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "update information from the server" -#~ msgstr "update information from the server" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Password" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palette of physics blocks" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "vertical space" -#~ msgid "start polygon" -#~ msgstr "start polygon" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Please restart Turtle Art in order to use the plugin." -#~ 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." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "completes filled polygon (used with start fill block)" -#~ msgid "add point" -#~ msgstr "add point" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Share" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "less than" -#~ msgid "end polygon" -#~ msgstr "end polygon" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "square root" -#~ msgid "Define a new polygon." -#~ msgstr "Define a new polygon." +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Rescale coordinates" -#~ msgid "end filled polygon" -#~ msgstr "end filled polygon" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "show blocks" -#~ msgid "Not a simple polygon" -#~ msgstr "Not a simple polygon" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Quit" -#~ msgid "Define a new filled polygon." -#~ msgstr "Define a new filled polygon." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar Journal description field" -#~ msgid "triangle" -#~ msgstr "triangle" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "set grey" -#~ msgid "base" -#~ msgstr "base" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "presentation bulleted list" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Add a triangle object to the project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "duration" -#~ msgid "circle" -#~ msgstr "circle" +#: turtleblocks.py:354 +msgid "New" +msgstr "New" -#~ msgid "Add a circle object to the project." -#~ msgstr "Add a circle object to the project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "places a comment in your code" -#~ msgid "rectangle" -#~ msgstr "rectangle" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "read pixel" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Add a rectangle object to the project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "scale" -#~ msgid "reset" -#~ msgstr "reset" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "bottom" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Reset the project; clear the object list." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "purple" -#~ msgid "motor" -#~ msgstr "motor" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Rescale coordinates down" -#~ msgid "torque" -#~ msgstr "torque" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "click to open" -#~ msgid "speed" -#~ msgstr "speed" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "microphone input pitch" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Configuration" -#~ msgid "pin" -#~ msgstr "pin" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Description:" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Pin an object down so that it cannot fall." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "journal" -#~ msgid "joint" -#~ msgstr "joint" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "empty wastebasket" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Turtle will draw when moved." -#~ msgid "save as Physics activity" -#~ msgstr "save as Physics activity" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Load..." -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Save the project to the Journal as a Physics activity." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Journal audio object" -#~ msgid "gear" -#~ msgstr "gear" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Stop turtle" -#~ msgid "Add a gear object to the project." -#~ msgstr "Add a gear object to the project." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Turtle" -#~ msgid "density" -#~ msgstr "density" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "changes the orientation of the palette of blocks" -#~ 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)." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "store in" -#~ msgid "friction" -#~ msgstr "friction" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Hide blocks" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Load Python block" -#~ msgid "bounciness" -#~ msgstr "bounciness" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "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:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "or" -#~ msgid "dynamic" -#~ msgstr "dynamic" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "presentation template: list of bullets" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in " -#~ "position." +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identity operator used for extending blocks" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palette of WeDo blocks" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Shrink blocks" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "sets size of text drawn by the turtle" -#~ msgid "distance sensor output" -#~ msgstr "distance sensor output" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "image" -#~ msgid "returns the current value of Motor A" -#~ msgstr "returns the current value of Motor A" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"returns random number between minimum (top) and maximum (bottom) values" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: TurtleArt/tabasics.py:349 +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)" -#~ msgid "returns the current value of Motor B" -#~ msgstr "returns the current value of Motor B" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Show palette" -#~ msgid "set the value for Motor A" -#~ msgstr "set the value for Motor A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "saves a picture to the Sugar Journal" -#~ msgid "set the value for Motor B" -#~ msgstr "set the value for Motor B" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Save snapshot" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palette of LEGO NXT blocks of motors" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palette of LEGO NXT blocks of sensors" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "returns True if heap is empty" -#~ msgid "touch" -#~ msgstr "touch" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "moves turtle forward" -#~ msgid "ultrasonic" -#~ msgstr "ultrasonic" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "forward" -#~ msgid "light" -#~ msgstr "light" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "my box" -#, fuzzy -#~ msgid "grey" -#~ msgstr "grey" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Account ID" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Please check the connection with the brick." +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Select blocks to share" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "The value of power must be between -127 to 127." +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "back" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "An error has occurred: check all connections and try to reconnect." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "sets the scale of media" -#~ msgid "NXT not found" -#~ msgstr "NXT not found" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "holds current scale value" -#~ msgid "refresh NXT" -#~ msgstr "refresh NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "presentation 1x1" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Search for a connected NXT brick." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "presentation 1x2" -#~ msgid "play tone" -#~ msgstr "play tone" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "top of nameable action stack" -#~ msgid "frequency" -#~ msgstr "frequency" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "stores numeric value in named variable" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Play a tone at frequency for time." +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logical OR operator" -#~ msgid "port" -#~ msgstr "port" +#: 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 "microphone input voltage" -#~ msgid "power" -#~ msgstr "power" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "loops specified number of times" -#~ msgid "rotations" -#~ msgstr "rotations" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Save..." -#~ msgid "turn a motor" -#~ msgstr "turn a motor" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "invokes Action 2 stack" -#, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "synchronise two motors" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "setxy" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "synchronise two motors connected in PORT B and PORT C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "title y" -#~ msgid "PORT A" -#~ msgstr "PORT A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "title x" -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A of the brick" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "fill screen" -#~ msgid "PORT B" -#~ msgstr "PORT B" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "other" -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B of the brick" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Save as" -#~ msgid "PORT C" -#~ msgstr "PORT C" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "set xy" -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C of the brick" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "wastebasket" -#~ msgid "start motor" -#~ msgstr "start motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polar" -#~ msgid "Run a motor forever." -#~ msgstr "Run a motor forever." +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repeat" -#~ msgid "brake motor" -#~ msgstr "brake motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "wait for current video or audio to complete" -#~ msgid "Stop a specified motor." -#~ msgstr "Stop a specified motor." +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Save as image" -#~ msgid "reset motor" -#~ msgstr "reset motor" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Edit" -#~ msgid "Reset the motor counter." -#~ msgstr "Reset the motor counter." +#: 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 "microphone input resistance" -#~ msgid "motor position" -#~ msgstr "motor position" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "top of Action 2 stack" -#~ msgid "Get the motor position." -#~ msgstr "Get the motor position." +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 of the brick" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "prints value in status block at bottom of the screen" -#~ msgid "read" -#~ msgstr "read" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "start fill" -#~ msgid "sensor" -#~ msgstr "sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "holds results of query-keyboard block as ASCII" -#~ msgid "Read sensor output." -#~ msgstr "Read sensor output." +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_GB.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "push" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 of the brick" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "restore all" -#~ msgid "light sensor" -#~ msgstr "light sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "hello" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "TurtleBlocks" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 of the brick" +#: TurtleArt/tawindow.py:1256 +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" -#~ msgid "touch sensor" -#~ msgstr "touch sensor" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "Palettes" -#~ msgid "distance sensor" -#~ msgstr "distance sensor" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Facebook wall post" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Please install the Speak Activity and try again." -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 of the brick" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Spanish" -#~ msgid "sound sensor" -#~ msgstr "sound sensor" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "English" -#~ msgid "color sensor" -#~ msgstr "colour sensor" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Sorry, I can't understand what you are asking about." -#~ msgid "set light" -#~ msgstr "set light" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." -#~ msgid "Set color sensor light." -#~ msgstr "Set colour sensor light." +#: turtleblocks.py:407 +msgid "About..." +msgstr "About..." -#~ msgid "battery level" -#~ msgstr "battery level" +#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgstr "returns the battery charge as a number between 0 and 255" -#, fuzzy #~ msgid "Get battery level of the brick" -#~ msgstr "Get battery level of brick." +#~ msgstr "Get battery level of the brick" -#~ msgid "HIGH" -#~ msgstr "HIGH" - -#~ msgid "LOW" -#~ msgstr "LOW" - -#~ msgid "INPUT" -#~ msgstr "INPUT" - -#~ msgid "OUTPUT" -#~ msgstr "OUTPUT" - -#~ msgid "PWM" -#~ msgstr "PWM" - -#~ msgid "SERVO" -#~ msgstr "SERVO" - -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ERROR: Check the Arduino and the number of port." - -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ERROR: Value must be a number from 0 to 255." - -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERROR: Value must be either HIGH or LOW." - -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "adjust LED intensity between 0 and 255" -#~ msgid "pin mode" -#~ msgstr "pin mode" +#~ msgid "returns the ambient light level" +#~ msgstr "returns the ambient light level" -#~ msgid "mode" -#~ msgstr "mode" +#~ msgid "returns the ambient temperature" +#~ msgstr "returns the ambient temperature" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "returns 0 or 1 depending on the sensor inclination" -#~ msgid "analog write" -#~ msgstr "analog write" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "switches from 0 to 1, the frequency depends on the vibration" -#~ msgid "Write analog value in specified port." -#~ msgstr "Write analog value in specified port." +#~ msgid "grayscale" +#~ msgstr "grayscale" -#~ msgid "analog read" -#~ msgstr "analog read" +#~ msgid "ambient light" +#~ msgstr "ambient light" #~ 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." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" #~ 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." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" -#~ msgid "digital write" -#~ msgstr "digital write" +#~ msgid "magnetic induction" +#~ msgstr "magnetic induction" -#~ msgid "Write digital value to specified port." -#~ msgstr "Write digital value to specified port." +#~ msgid "vibration" +#~ msgstr "vibration" -#~ msgid "digital read" -#~ msgstr "digital read" +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "move the Butia robot forward a predefined distance" -#~ msgid "Read value from digital port." -#~ msgstr "Read value from digital port." +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "move the Butia robot backward a predefined distance" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Set HIGH value for digital port." +#~ msgid "turn Butia" +#~ msgstr "turn Butia" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Configure Arduino port for digital input." +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "turn the Butia robot x degrees" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Configure Arduino port to drive a servo." +#~ msgid "moves the Butia at specify speed motors" +#~ msgstr "moves the Butia at specified motor speeds" -#~ msgid "Set LOW value for digital port." -#~ msgstr "Set LOW value for digital port." +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "returns the object grey level as a number between 0 and 1023" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Configure Arduino port for digital output." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "returns the ambient light level as a number between 0 and 1023" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Configure Arduino port for PWM (pulse-width modulation)." +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "returns the ambient temperature as a number between 0 and 255" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palette of WeDo blocks" +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" +#~ msgstr "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #, fuzzy -#~ msgid "samples" -#~ msgstr "Samples" +#~ msgid "grey" +#~ msgstr "grey" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "set the speed of the Butia motors to a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors to a value between 0 and 1023, passed " +#~ "by an argument" #~ msgid "turn the Butia robot to the left" #~ msgstr "turn the Butia robot to the left" @@ -2892,9 +3913,11 @@ msgstr "Save project?" #~ msgstr "brake a specified motor" #~ 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 "" -#~ "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" #~ msgid "activity count" #~ msgstr "activity count" @@ -2998,8 +4021,10 @@ msgstr "Save project?" #~ msgid "restore last" #~ msgstr "restore last" -#~ msgid "a programmable block: used to add advanced math equations, e.g., sin(x)" -#~ msgstr "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 "" +#~ "a programmable block: used to add advanced math equations, e.g., sin(x)" #~ msgid "blocks" #~ msgstr "blocks" diff --git a/po/en_US.po b/po/en_US.po index d222450..09d616b 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -1,13 +1,54 @@ +# #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 08:17+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: en_US\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" +"#-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 08:17+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: en_US\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" +"#-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1125 +63,2246 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "TurtleBlocks" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" +msgstr "turtleart-extras (master)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palette of turtle commands" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "Turtle Blocks" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "forward" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "moves turtle forward" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "Turtle Art Mini" + +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "Turtle Confusion" + +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Select a challenge" + +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Amazonas Tortuga" + +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Palette of Mexican pesos" + +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Palette of Colombian pesos" + +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Palette of Rwandan francs" + +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "Palette of US dollars" + +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Palette of Australian dollars" + +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Palette of Paraguayan Guaranies" + +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Palette of Peruvian Nuevo Soles" + +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Palette of Uruguayan Pesos" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "TurtleBots" + +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" + +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "ERROR: The speed must be a value between 0 and 1023" + +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "ERROR: The pin must be between 1 and 8" + +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "ERROR: The value must be 0 or 1, LOW or HIGH" + +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "ERROR: The mode must be INPUT or OUTPUT." + +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "Turn LED on and off: 0 is off; 1 is on" + +#: taextras.py:79 +msgid "returns the gray level" +msgstr "returns the object gray level" + +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "returns 1 when the button is press and 0 otherwise" + +#: taextras.py:81 +msgid "returns the light level" +msgstr "returns the light level" + +#: taextras.py:82 +msgid "returns the temperature" +msgstr "returns the temperature" + +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "returns the distance from the object in front of the sensor" + +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "returns 1 when the sensors detects a magnetic field, 0 otherwise" + +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "returns the value of the resistance" + +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "returns the value of the voltage" + +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" + +#: taextras.py:88 +msgid "LED" +msgstr "LED" + +#: taextras.py:89 +msgid "button" +msgstr "button" + +#: taextras.py:90 taextras.py:358 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "gray" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "back" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "light" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "moves turtle backward" +#: taextras.py:92 +msgid "temperature" +msgstr "temperature" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "clean" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "distance" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "clears the screen and reset the turtle" +#: taextras.py:94 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:95 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:96 +msgid "Butia Robot" +msgstr "Butia Robot" -#: TurtleArt/tabasics.py:162 +#: taextras.py:97 +msgid "refresh Butia" +msgstr "refresh Butia" + +#: taextras.py:98 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "battery charge Butia" + +#: taextras.py:101 +msgid "" +"returns the battery charge in volts. If no motors present, it returns 255" +msgstr "" +"returns the battery charge in volts. If no motors present, it returns 255" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "speed Butia" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "set the speed of the Butia motors" + +#: taextras.py:105 +msgid "move Butia" +msgstr "move Butia" + +#: taextras.py:106 TurtleArt/tabasics.py:162 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 msgid "left" msgstr "left" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "turns turtle counterclockwise (angle in degrees)" - -#: TurtleArt/tabasics.py:174 +#: taextras.py:107 TurtleArt/tabasics.py:174 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 msgid "right" msgstr "right" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "turns turtle clockwise (angle in degrees)" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "moves the Butia motors at the specified speed" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "stop Butia" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "stop the Butia robot" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "forward Butia" + +#: taextras.py:113 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "left Butia" + +#: taextras.py:116 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "right Butia" + +#: taextras.py:119 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "backward Butia" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "move the Butia robot backward" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "Butia Robot extra blocks" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "hack pin mode" + +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "pin" + +#: taextras.py:126 taextras.py:457 +msgid "mode" +msgstr "mode" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Select the pin function (INPUT, OUTPUT)." + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "write hack pin Butia" + +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "value" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "set a hack pin to 0 or 1" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "angle" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "read hack pin Butia" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radius" +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "read the value of a hack pin" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "moves turtle along an arc" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "HIGH" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "set xy" +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "Set HIGH value for digital port." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "INPUT" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "Configure hack port for digital input." -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -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." +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "LOW" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "Set LOW value for digital port." -#: TurtleArt/tabasics.py:217 -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.)" +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "OUTPUT" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "Configure hack port for digital output." -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:141 +msgid "Butia" +msgstr "Butia" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "ERROR: The pin %s must be in OUTPUT mode." -#: TurtleArt/tabasics.py:237 +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "ERROR: The pin %s must be in INPUT mode." + +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "Error importing Pygame. This plugin require Pygame 1.9" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "Error on initialization of the camera" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "No camera was found" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Error stopping camera" + +#: taextras.py:151 +msgid "Error starting camera" +msgstr "Error starting camera" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "Error in get mask" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "FollowMe" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "refresh FollowMe" + +#: taextras.py:156 +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 +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "calibration" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "store a personalized calibration" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "return a personalized calibration" + +#: taextras.py:161 +msgid "follow" +msgstr "follow" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "follow a color or calibration" + +#: taextras.py:163 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 "brightness" + +#: taextras.py:164 +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:165 +msgid "minimum pixels" +msgstr "minimum pixels" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "set the minimal number of pixels to follow" + +#: taextras.py:167 +msgid "threshold" +msgstr "threshold" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "set a threshold for a RGB color" + +#: taextras.py:170 +msgid "camera mode" +msgstr "camera mode" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +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:173 +msgid "get brightness" +msgstr "get brightness" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "get the brightness of the ambient light" + +#: taextras.py:175 +msgid "average color" +msgstr "average color" + +#: taextras.py:176 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" - -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "heading" - -#: TurtleArt/tabasics.py:248 +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" + +#: taextras.py:178 +msgid "x position" +msgstr "x position" + +#: taextras.py:179 +msgid "return x position" +msgstr "return x position" + +#: taextras.py:180 +msgid "y position" +msgstr "y position" + +#: taextras.py:181 +msgid "return y position" +msgstr "return y position" + +#: taextras.py:182 +msgid "pixels" +msgstr "pixels" + +#: taextras.py:183 +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) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +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) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +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) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "set the color mode of the camera to HSV" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "empty calibration" + +#: taextras.py:191 +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:197 +msgid "Pattern detection" +msgstr "Pattern detection" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "Seeing signal" + +#: taextras.py:199 +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:200 +msgid "Distance to signal" +msgstr "Distance to signal" + +#: taextras.py:201 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "speed SumBot" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "submit the speed to the SumBot" + +#: taextras.py:209 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "forward SumBot" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "move SumBot forward" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "backward SumBot" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "move SumBot backward" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "stop SumBot" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "stop the SumBot" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "left SumBot" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "turn left the SumBot" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "right SumBot" + +#: taextras.py:223 +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 +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:226 +msgid "angle to center" +msgstr "angle to center" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +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) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "angle to Enemy" + +#: taextras.py:232 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "x coor. SumBot" + +#: taextras.py:235 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "y coor. SumBot" + +#: taextras.py:238 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "x coor. Enemy" + +#: taextras.py:241 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "y coor. Enemy" + +#: taextras.py:244 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "rotation SumBot" + +#: taextras.py:247 +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" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "rotation Enemy" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "get the rotation of the Enemy" + +#: taextras.py:251 +msgid "distance to center" +msgstr "distance to center" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "get the distance to the center of the dohyo" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "distance to Enemy" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "get the distance to the Enemy" + +#: taextras.py:256 +msgid "update information" +msgstr "update information" + +#: taextras.py:257 +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 +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Palette of physics blocks" + +#: taextras.py:263 +msgid "start polygon" +msgstr "start polygon" + +#: taextras.py:264 +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:266 +msgid "add point" +msgstr "add point" + +#: taextras.py:267 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Add a new point to the current polygon based on the current Turtle xy " +"position." msgstr "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" - -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palette of pen commands" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "fill screen" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "color" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "shade" - -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "fills the background with (color, shade)" - -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "gray" +"Add a new point to the current polygon based on the current Turtle xy " +"position." + +#: taextras.py:269 +msgid "end polygon" +msgstr "end polygon" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Define a new polygon." + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "end filled polygon" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "Not a simple polygon" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Define a new filled polygon." + +#: taextras.py:274 +msgid "triangle" +msgstr "triangle" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "base" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "height" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "set color" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Add a triangle object to the project." -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "sets color of the line drawn by the turtle" +#: taextras.py:279 +msgid "circle" +msgstr "circle" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "set shade" - -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "sets shade of the line drawn by the turtle" +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Add a circle object to the project." -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "set gray" +#: taextras.py:281 +msgid "rectangle" +msgstr "rectangle" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "sets gray level of the line drawn by the turtle" - -#: TurtleArt/tabasics.py:349 -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)" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "width" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "holds current pen shade" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Add a rectangle object to the project." -#: TurtleArt/tabasics.py:368 -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)" +#: taextras.py:285 +msgid "reset" +msgstr "reset" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pen up" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Reset the project; clear the object list." -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Turtle will not draw when moved." +#: taextras.py:287 +msgid "motor" +msgstr "motor" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pen down" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "torque" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Turtle will draw when moved." +#: taextras.py:290 +msgid "speed" +msgstr "speed" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "set pen size" +#: taextras.py:291 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "sets size of the line drawn by the turtle" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Pin an object down so that it cannot fall." -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "start fill" +#: taextras.py:295 +msgid "joint" +msgstr "joint" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "starts filled polygon (used with end fill block)" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "end fill" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "completes filled polygon (used with start fill block)" +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "save as Physics activity" + +#: taextras.py:301 +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 +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "gear" + +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Add a gear object to the project." + +#: taextras.py:305 +msgid "density" +msgstr "density" + +#: taextras.py:306 +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)." -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "pen size" +#: taextras.py:308 +msgid "friction" +msgstr "friction" -#: TurtleArt/tabasics.py:427 -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)" +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "bounciness" + +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "dynamic" + +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "Palette of WeDo blocks" + +#: taextras.py:324 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "set current WeDo device" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "number of WeDo devices" + +#: taextras.py:327 +msgid "tilt" +msgstr "tilt" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "distance sensor output" + +#: taextras.py:333 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "returns the current value of Motor A" + +#: taextras.py:335 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "returns the current value of Motor B" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "set the value for Motor A" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "set the value for Motor B" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "WeDo is unavailable" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "WeDo %d is unavailable; defaulting to 1" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palette of pen colors" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, 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 +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palette of LEGO NXT blocks of motors" + +#: taextras.py:350 +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) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "touch" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "ultrasonic" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "color" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "red" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "sound" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "orange" +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "Please check the connection with the brick" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "yellow" +#: taextras.py:361 +#, 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" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "green" +#: taextras.py:362 +#, 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" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyan" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "The value of power must be between -127 to 127" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blue" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "The parameter must be a integer, not '%s'" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "purple" +#: taextras.py:365 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "An error has occurred: check all connections and try to reconnect" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "white" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT found %s bricks" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "black" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT not found" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "set text color" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "Brick number %s was not found" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "sets color of text drawn by the turtle" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "refresh NXT" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "set text size" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Search for a connected NXT brick." -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "sets size of text drawn by the turtle" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palette of numeric operators" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "set current NXT device" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "number of NXT devices" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "adds two alphanumeric inputs" +#: taextras.py:374 +msgid "brick name" +msgstr "brick name" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "minus" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "Get the name of a brick." -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "subtracts bottom numeric input from top numeric input" +#: taextras.py:376 +msgid "play tone" +msgstr "play tone" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "multiply" +#: taextras.py:377 +msgid "frequency" +msgstr "frequency" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplies two numeric inputs" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "time" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "divide" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Play a tone at frequency for time." -#: TurtleArt/tabasics.py:604 +#. TRANS: turn is the action +#: taextras.py:381 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"turn motor\n" +"\n" msgstr "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" - -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identity" - -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identity operator used for extending blocks" - -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" - -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modular (remainder) operator" - -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +"turn motor\n" +"\n" + +#: taextras.py:382 +msgid "port" +msgstr "port" + +#: taextras.py:383 +msgid "power" +msgstr "power" + +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "rotations" + +#: taextras.py:386 +msgid "turn a motor" +msgstr "turn a motor" + +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"synchronize\n" +"\n" +"motors" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "square root" +#: taextras.py:388 +msgid "steering" +msgstr "steering" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "calculates square root" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "synchronize two motors connected in PORT B and PORT C" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "random" +#: taextras.py:390 +msgid "PORT A" +msgstr "PORT A" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "PORT A of the brick" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: taextras.py:392 +msgid "PORT B" +msgstr "PORT B" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "PORT B of the brick" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "number" +#: taextras.py:394 +msgid "PORT C" +msgstr "PORT C" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "used as numeric input in mathematic operators" - -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "greater than" - -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logical greater-than operator" - -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "less than" - -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logical less-than operator" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "PORT C of the brick" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "equal" +#: taextras.py:396 +msgid "" +"synchronize\n" +"motors" +msgstr "" +"synchronize\n" +"motors" + +#: taextras.py:397 +msgid "start motor" +msgstr "start motor" + +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "Run a motor forever." + +#: taextras.py:399 +msgid "brake motor" +msgstr "brake motor" + +#: taextras.py:400 +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 +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "reset motor" + +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "Reset the motor counter." + +#: taextras.py:404 +msgid "motor position" +msgstr "motor position" + +#: taextras.py:405 +msgid "Get the motor position." +msgstr "Get the motor position." + +#: taextras.py:406 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "PORT 1 of the brick" + +#: taextras.py:408 +msgid "read" +msgstr "read" + +#: taextras.py:409 +msgid "sensor" +msgstr "sensor" + +#: taextras.py:410 +msgid "Read sensor output." +msgstr "Read sensor output." + +#: taextras.py:411 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "PORT 2 of the brick" + +#: taextras.py:413 +msgid "light sensor" +msgstr "light sensor" + +#: taextras.py:414 +msgid "gray sensor" +msgstr "gray sensor" + +#: taextras.py:415 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "PORT 3 of the brick" + +#: taextras.py:417 +msgid "touch sensor" +msgstr "touch sensor" + +#: taextras.py:418 +msgid "distance sensor" +msgstr "distance sensor" + +#: taextras.py:419 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:420 +msgid "PORT 4 of the brick" +msgstr "PORT 4 of the brick" + +#: taextras.py:421 +msgid "sound sensor" +msgstr "sound sensor" + +#: taextras.py:422 +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) +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:425 +msgid "set light" +msgstr "set light" + +#: taextras.py:426 +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 +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "battery level" + +#: taextras.py:429 +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: PWM is pulse-width modulation +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:440 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ERROR: Check the Arduino and the number of port." + +#: taextras.py:442 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "ERROR: Value must be a number from 0 to 255." + +#: taextras.py:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ERROR: Value must be either HIGH or LOW." + +#: taextras.py:444 +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:445 +msgid "refresh Arduino" +msgstr "refresh Arduino" + +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "Search for connected Arduinos." + +#: taextras.py:447 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "set current Arduino board" + +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "number of Arduinos" + +#: taextras.py:450 +msgid "number of Arduino boards" +msgstr "number of Arduino boards" + +#: taextras.py:451 +msgid "Arduino name" +msgstr "Arduino name" + +#: taextras.py:452 +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. +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:455 +msgid "pin mode" +msgstr "pin mode" + +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." + +#: taextras.py:459 +msgid "analog write" +msgstr "analog write" + +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "Write analog value in specified port." + +#: taextras.py:462 +msgid "analog read" +msgstr "analog read" + +#: taextras.py:463 +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 "" +"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:465 +msgid "digital write" +msgstr "digital write" + +#: taextras.py:466 +msgid "Write digital value to specified port." +msgstr "Write digital value to specified port." + +#: taextras.py:467 +msgid "digital read" +msgstr "digital read" + +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "Read value from digital port." + +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "Configure Arduino port for digital input." + +#: taextras.py:471 +msgid "Configure Arduino port to drive a servo." +msgstr "Configure Arduino port to drive a servo." + +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "Configure Arduino port for digital output." + +#: taextras.py:474 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Configure Arduino port for PWM (pulse-width modulation)." + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +msgid "Palette of Expeyes blocks" +msgstr "Palette of Expeyes blocks" + +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" +msgstr "set PVS" + +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "set programmable voltage output" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "set SQR1 voltage" + +#: taextras.py:485 +msgid "set square wave 1 voltage output" +msgstr "set square wave 1 voltage output" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:487 +msgid "set SQR2 voltage" +msgstr "set SQR2 voltage" + +#: taextras.py:488 +msgid "set square wave 2 voltage output" +msgstr "set square wave 2 voltage output" + +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "set OD1" + +#: taextras.py:491 +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:493 +msgid "IN1 level" +msgstr "IN1 level" + +#: taextras.py:494 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logical equal-to operator" +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "IN2 level" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "not" +#: taextras.py:498 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logical NOT operator" +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "SEN level" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "and" +#: taextras.py:502 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logical AND operator" +#: taextras.py:504 +msgid "capture" +msgstr "capture" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "or" +#: taextras.py:505 +msgid "input" +msgstr "input" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logical OR operator" +#: taextras.py:506 +msgid "samples" +msgstr "samples" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palette of flow operators" +#: taextras.py:507 +msgid "interval" +msgstr "interval" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "wait" +#. TRANS: MS is microseconds +#: taextras.py:509 +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:512 +msgid "A1" +msgstr "A1" + +#: taextras.py:513 +msgid "read analog input 1 voltage" +msgstr "read analog input 1 voltage" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "A2" + +#: taextras.py:516 +msgid "read analog input 2 voltage" +msgstr "read analog input 2 voltage" + +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "read input 1 voltage" + +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "read input 2 voltage" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:525 +msgid "read analog sensor input voltage" +msgstr "read analog sensor input voltage" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:528 +msgid "read square wave 1 voltage" +msgstr "read square wave 1 voltage" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:530 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "read square wave 2 voltage" + +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "read programmable voltage" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "Expeyes device not found" -#: TurtleArt/tabasics.py:747 -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:299 +msgid "resume playing video or audio" +msgstr "resume playing video or audio" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "forever" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Title" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "loops forever" +#: 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 "Average RGB color from camera is pushed to the stack" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repeat" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "yellow" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "loops specified number of times" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "displays polar coordinates" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "if" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "emptys FILO (first-in-last-out heap)" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "then" +#: 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 "camera output" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "if then" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "push acceleration in x, y, z to heap" #: TurtleArt/tabasics.py:781 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:789 -msgid "else" -msgstr "else" - -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "if then else" - -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "if-then-else operator that uses boolean operators from Numbers palette" - -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "horizontal space" - #: TurtleArt/tabasics.py:812 msgid "jogs stack right" msgstr "jogs stack right" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "vertical space" - -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "jogs stack down" - -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "stop action" - -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "stops current action" - -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palette of variable blocks" - -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" - -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "connects action to toolbar run buttons" - -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "text" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "string value" - -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "action" - -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "top of nameable action stack" - -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "invokes named action stack" - -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "store in box 1" - -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "stores numeric value in Variable 1" - -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "store in box 2" - -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "stores numeric value in Variable 2" - -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "box 1" - -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variable 1 (numeric value)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Journal media object" #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "box 2" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variable 2 (numeric value)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "store in" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "box 1" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "box" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Step" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "value" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplies two numeric inputs" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "my box" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Show/hide blocks" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "stores numeric value in named variable" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Hide palette" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "named variable (numeric value)" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Buddies" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "action 1" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "My Turtle Art session" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "top of Action 1 stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar Journal video object" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "action 2" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyan" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "top of Action 2 stack" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "invokes Action 1 stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor of right of screen" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "invokes Action 2 stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Palette of extra options" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "trash" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Load example" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "empty trash" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "move all blocks to trash" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "permanently deletes items in trash" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "list" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "restore all" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Configuration directory not writable: %s" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "restore all blocks from trash" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "media resume" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "clear all" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "heading" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "move all blocks to trash" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Sharing blocks disabled" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Share selected blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "saves turtle graphics as an SVG file in the Sugar Journal" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Title" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "draws text or show media from the Journal" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Stop turtle" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Show blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "video" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Hide blocks" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blue" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "did not output to" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "displays Cartesian coordinates" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "I don't know how to" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "No option action:" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "doesn't like" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "jogs stack down" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "as input" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modular (remainder) operator" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "displays next palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "bottom y" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "changes the orientation of the palette of blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "save SVG" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Load..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +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/tautils.py:206 -msgid "Save..." -msgstr "Save..." +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pen down" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "click to open" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "wait" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientation" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "box" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "next" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Failed to upload!" #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" msgstr "shift" -#: TurtleArt/tawindow.py:1256 -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/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Select blocks to share" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "image" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Save as Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Save as image" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "snapshot" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "invokes named action stack" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Save snapshot" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "action" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Turn off hover help" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"do-until-True operator that uses boolean operators from Numbers palette" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Turn on hover help" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "usage is" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Show palette" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variable 2 (numeric value)" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Hide palette" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "divide" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Rescale coordinates down" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "picture name" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Rescale coordinates up" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "while" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Edit" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "the canvas width" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "View" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "empty heap?" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Project" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "named variable (numeric value)" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Save/Load" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "next" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copy" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "if then" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Paste" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "set pen size" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Restore blocks from trash" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "presentation template: select Journal object (no description)" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Fullscreen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "until" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Cartesian coordinates" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "media stop" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Polar coordinates" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Turn on hover help" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Metric coordinates" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "permanently deletes items in trash" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Grow blocks" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "uturn" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Shrink blocks" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "top of Action 1 stack" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Load example" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Clean" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palette of flow operators" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Run" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "top of a collapsed stack" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Step" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "if-then-else operator that uses boolean operators from Numbers palette" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Help" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "returns mouse y coordinate" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stop" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "holds current pen shade" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Load project" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinewave" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Load plugin" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Login failed" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Load Python block" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "left x" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "Palettes" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Sharing blocks disabled" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "RGB color under the turtle is pushed to the stack" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "declutters canvas by hiding blocks" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Plugin could not be installed." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Please restart Turtle Art in order to use the plugin." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Plugin %s already installed." - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Do you want to reinstall %s?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "My Turtle Art session" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Enable collaboration" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Activities" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Buddies" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Share" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Configuration" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Neighborhood" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Nickname" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Account ID" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Server" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Password" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python chr operator" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Register" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "horizontal space" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Colors" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Metric coordinates" -#: 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 "Upload" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "string value" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Facebook wall post" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "description" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Upload to Web" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "I don't know how to" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "set text size" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "Username:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Password:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Title:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Description:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Submit to Web" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "starts filled polygon (used with end fill block)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Cancel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "presentation template: select four Journal objects" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Login failed" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "View" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Failed to upload!" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "sets gray level of the line drawn by the turtle" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palette of sensor blocks" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Password:" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "acceleration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "turtle sees" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "push acceleration in x, y, z to heap" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "stop action" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "sound" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "green" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "raw microphone input signal" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "shade" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "loudness" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "fills the background with (color, shade)" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "microphone input volume" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "save picture" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1148,428 +2310,252 @@ msgstr "microphone input volume" msgid "pitch" msgstr "pitch" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "microphone input pitch" - -#: 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" - -#: 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 "microphone input resistance" - -#: 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" - -#: 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 "microphone input voltage" - -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palette of media objects" - -#: 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 "brightness" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "light level detected by camera" - -#: 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 "Average RGB color from camera is pushed to the stack" - -#: 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 "camera output" - -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "light level detected by light sensor" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "read value from RFID device" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "while" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "do-while-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "until" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "do-until-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "top" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "top of a collapsible stack" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "returns 1 if mouse button is pressed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "journal" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Rescale coordinates up" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Journal media object" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pen up" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "orange" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Journal audio object" +#: TurtleArt/tabasics.py:747 +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:163 -msgid "video" -msgstr "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "pushes value onto FILO (first-in last-out heap)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar Journal video object" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "clear all" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "description" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "then" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar Journal description field" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Register" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "show" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "not" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "draws text or show media from the Journal" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "if then else" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "show aligned" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "stops current action" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "set scale" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "turns turtle clockwise (angle in degrees)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "sets the scale of media" +#: TurtleArt/tabasics.py:368 +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:245 -msgid "save picture" -msgstr "save picture" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor of left of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "picture name" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Reset block size" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "saves a picture to the Sugar Journal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "save SVG" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "displays next palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -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:772 +msgid "hide blocks" +msgstr "hide blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "scale" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "light level detected by camera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "holds current scale value" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python int operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "media wait" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logical less-than operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "wait for current video or audio to complete" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "restore all blocks from trash" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "media stop" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Save" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "stop video or audio" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "store in box 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "media pause" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "store in box 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "pause video or audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "hides the Sugar toolbars" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "media resume" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +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:299 -msgid "resume playing video or audio" -msgstr "resume playing video or audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "print" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "speak" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "returns mouse x coordinate" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "hello" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "red" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "speaks text" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Save as Logo" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinewave" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "sets color of the line drawn by the turtle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "amplitude" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "set text color" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "duration" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "loudness" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Enable collaboration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "button down" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palette of sensor blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "returns 1 if mouse button is pressed" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Load plugin" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "returns True if mouse button is pressed" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "mouse x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "returns mouse x coordinate" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "mouse y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "returns mouse y coordinate" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "number" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "query keyboard" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -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:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "top" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "keyboard" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Submit to Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "holds results of query-keyboard block as ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Cartesian coordinates" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "read pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Nickname" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -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:234 +msgid "set scale" +msgstr "set scale" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "turtle sees" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Share selected blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "returns the color that the turtle \"sees\"" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "white" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "time" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "connects action to toolbar run buttons" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "elapsed time (in seconds) since program started" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Palette of extra options" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "push" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "pushes value onto FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "show heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "shows values in FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "empty heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "emptys FILO (first-in-last-out heap)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "pop" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "pops value off FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "empty heap?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "returns True if heap is empty" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "comment" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "places a comment in your code" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "print" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplitude" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "prints value in status block at bottom of the screen" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Cancel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python chr operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "the canvas height" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python int operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "presentation 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "minus" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"a programmable block: used to add advanced single-variable math equations, " -"e.g., sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "and" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"a programmable block: used to add advanced multi-variable math equations, " -"e.g., sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "top of a collapsible stack" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"a programmable block: used to add advanced multi-variable math equations, " -"e.g., sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "as input" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1577,56 +2563,26 @@ msgstr "" msgid "Python block" msgstr "Python block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -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" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesian" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "displays Cartesian coordinates" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "displays polar coordinates" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "turtle" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "chooses which turtle to command" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "media wait" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "turtle shell" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "acceleration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "put a custom 'shell' on the turtle" +#: TurtleArt/tabasics.py:427 +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)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "top of a collapsed stack" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "set color" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "load" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1634,70 +2590,68 @@ msgstr "load" msgid "loads a block" msgstr "loads a block" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "setxy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palette of pen commands" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "shows values in FILO (first-in last-out heap)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "selects a palette" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"do-while-True operator that uses boolean operators from Numbers palette" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palette of presentation templates" +#: turtleblocks.py:363 +msgid "File" +msgstr "File" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "hide blocks" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logical NOT operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "declutters canvas by hiding blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor of bottom of screen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "show blocks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "presentation template: select Journal object (with description)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "restores hidden blocks" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palette of numeric operators" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "hides the Sugar toolbars" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "multiply" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "list" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "forever" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "presentation bulleted list" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Plugin %s already installed." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "presentation template: list of bullets" +#: TurtleArt/tabasics.py:329 +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:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "presentation template: select Journal object (no description)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "speaks text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "presentation template: select Journal object (with description)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "snapshot" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "presentation template: select four Journal objects" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "clean" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1706,1014 +2660,1081 @@ msgstr "presentation template: select four Journal objects" msgid "presentation template: select two Journal objects" msgstr "presentation template: select two Journal objects" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor of left of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "bottom" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor of bottom of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "width" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "the canvas width" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor of right of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor of top of screen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "height" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "the canvas height" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "title x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "title y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "left x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "top y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "right x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Grow blocks" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "bottom y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Fullscreen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "presentation 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "File not found" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "presentation 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "show" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "presentation 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "text" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "presentation 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "random" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Please install the Speak Activity and try again." +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logical greater-than operator" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Spanish" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "turns turtle counterclockwise (angle in degrees)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "English" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "black" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Sorry, I can't understand what you are asking about." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "calculates square root" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "push destination rgb value to heap" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "mouse x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "mouse y" #: pysamples/grecord.py:215 msgid "stop" msgstr "stop" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "play" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "save" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "other" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "uturn" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "make a uturn" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "usage is" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "No option action:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "File not found" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Configuration directory not writable: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "New" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Open" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Save" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Save as" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Quit" - -#: turtleblocks.py:363 -msgid "File" -msgstr "File" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Rescale coordinates" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Reset block size" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Show/hide blocks" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Tools" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debug" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Turtle" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "greater than" -#: turtleblocks.py:407 -msgid "About..." -msgstr "About..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "You have unsaved work. Would you like to save before quitting?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Help" #: turtleblocks.py:448 msgid "Save project?" msgstr "Save project?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Turtle Art Mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "Turtle Confusion" - -#~ msgid "Select a challenge" -#~ msgstr "Select a challenge" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palette of Mexican pesos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palette of Colombian pesos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palette of Rwandan francs" - -#~ msgid "Palette of US dollars" -#~ msgstr "Palette of US dollars" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Palette of Australian dollars" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Palette of Paraguayan Guaranies" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "chooses which turtle to command" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Palette of Peruvian Nuevo Soles" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "right x" -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Palette of Uruguayan Pesos" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "sets color of text drawn by the turtle" -#~ msgid "TurtleBots" -#~ msgstr "TurtleBots" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "light level detected by light sensor" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "adjust LED intensity between 0 and 255" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Plugin could not be installed." -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "returns the object gray level as a number between 0 and 1023" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "keyboard" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "returns 1 when the button is press and 0 otherwise" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "returns the ambient light level as a number between 0 and 1023" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radius" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "returns the ambient temperature as a number between 0 and 255" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Polar coordinates" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "set shade" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "returns 0 or 1 depending on the sensor inclination" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logical AND operator" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "returns 1 when the sensors detects a magnetic field, 0 otherwise" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "switches from 0 to 1, the frequency depends on the vibration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "palette" -#~ msgid "LED" -#~ msgstr "LED" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Run" -#~ msgid "button" -#~ msgstr "button" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "show heap" -#~ msgid "grayscale" -#~ msgstr "grayscale" +#: TurtleArt/tabasics.py:217 +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.)" -#~ msgid "ambient light" -#~ msgstr "ambient light" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "selects a palette" -#~ msgid "temperature" -#~ msgstr "temperature" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "microphone input volume" -#~ msgid "distance" -#~ msgstr "distance" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Title:" -#~ msgid "tilt" -#~ msgstr "tilt" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palette of media objects" -#~ msgid "magnetic induction" -#~ msgstr "magnetic induction" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Restore blocks from trash" -#~ msgid "vibration" -#~ msgstr "vibration" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palette of variable blocks" -#~ msgid "Butia Robot" -#~ msgstr "Butia Robot" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "used as numeric input in mathematic operators" -#~ msgid "refresh Butia" -#~ msgstr "refresh Butia" +#: 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 "Upload" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "refresh the state of the Butia palette and blocks" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Server" -#~ msgid "battery charge Butia" -#~ msgstr "battery charge Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "presentation 2x2" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "returns the battery charge as a number between 0 and 255" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variable 1 (numeric value)" -#~ msgid "speed Butia" -#~ msgstr "speed Butia" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Neighborhood" -#~ msgid "forward Butia" -#~ msgstr "forward Butia" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "adds two alphanumeric inputs" -#~ msgid "move the Butia robot forward" -#~ msgstr "move the Butia robot forward" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "equal" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "move the Butia robot forward a predefined distance" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "else" -#~ msgid "left Butia" -#~ msgstr "left Butia" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "doesn't like" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "turn the Butia robot at right" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "You have unsaved work. Would you like to save before quitting?" -#~ msgid "backward Butia" -#~ msgstr "backward Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "restores hidden blocks" -#~ msgid "move the Butia robot backward" -#~ msgstr "move the Butia robot backward" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "load" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "move the Butia robot backward a predefined distance" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "stop video or audio" -#~ msgid "right Butia" -#~ msgstr "right Butia" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Turtle will not draw when moved." -#~ msgid "turn the Butia robot at right" -#~ msgstr "turn the Butia robot at right" +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "pop" -#~ msgid "turn Butia" -#~ msgstr "turn Butia" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "pen size" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "turn the Butia robot x degrees" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "turtle shell" -#~ msgid "stop Butia" -#~ msgstr "stop Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" -#~ msgid "stop the Butia robot" -#~ msgstr "stop the Butia robot" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "Butia" -#~ msgstr "Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "speak" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Error on initialization of the camera" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "read value from RFID device" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "No camera was found" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "moves turtle along an arc" -#~ msgid "Error stopping camera" -#~ msgstr "Error stopping camera" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "make a uturn" -#~ msgid "Error starting camera" -#~ msgstr "Error starting camera" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logical equal-to operator" -#~ msgid "FollowMe" -#~ msgstr "FollowMe" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palette of pen colors" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Search for a connected NXT brick." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "pause video or audio" -#~ msgid "calibration" -#~ msgstr "calibration" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "stores numeric value in Variable 1" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "stores a personalized calibration" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "stores numeric value in Variable 2" -#~ msgid "return a personalized calibration" -#~ msgstr "return a personalized calibration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "put a custom 'shell' on the turtle" -#~ msgid "follow" -#~ msgstr "follow" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "button down" -#~ msgid "follow a color or calibration" -#~ msgstr "follow a color or calibration" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "moves turtle backward" -#~ msgid "minimum pixels" -#~ msgstr "minimum pixels" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor of top of screen" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "set the minimal number of pixels to follow" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Show blocks" -#~ msgid "threshold" -#~ msgstr "threshold" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "play" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "set a threshold for a RGB color" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "save" -#~ msgid "camera mode" -#~ msgstr "camera mode" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Colors" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "set the color mode of the camera: RGB, YUV, or HSV" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "sets size of the line drawn by the turtle" -#~ msgid "x position" -#~ msgstr "x position" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Open" -#~ msgid "return x position" -#~ msgstr "return x position" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientation" -#~ msgid "y position" -#~ msgstr "y position" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "return y position" -#~ msgstr "return y position" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" -#~ msgid "pixels" -#~ msgstr "pixels" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "if" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "return the number of pixels of the biggest blob" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +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." -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "set the color mode of the camera to RGB" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "set the color mode of the camera to YUV" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stop" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "set the color mode of the camera to HSV" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "action 2" -#~ msgid "empty calibration" -#~ msgstr "empty calibration" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "action 1" -#~ msgid "error in string conversion" -#~ msgstr "error in string conversion" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "end fill" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copy" -#~ msgid "speed SumBot" -#~ msgstr "speed SumBot" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Paste" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "submit the speed to the SumBot" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "did not output to" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "set the default speed for the movement commands" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Activities" -#~ msgid "forward SumBot" -#~ msgstr "forward SumBot" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Upload to Web" -#~ msgid "move SumBot forward" -#~ msgstr "move SumBot forward" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "empty heap" -#~ msgid "backward SumBot" -#~ msgstr "backward SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "pops value off FILO (first-in last-out heap)" -#~ msgid "move SumBot backward" -#~ msgstr "move SumBot backward" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Clean" -#~ msgid "stop SumBot" -#~ msgstr "stop SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palette of presentation templates" -#~ msgid "stop the SumBot" -#~ msgstr "stop the SumBot" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "angle" -#~ msgid "left SumBot" -#~ msgstr "left SumBot" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identity" -#~ msgid "turn left the SumBot" -#~ msgstr "turn left the SumBot" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Save/Load" -#~ msgid "right SumBot" -#~ msgstr "right SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "top y" -#~ msgid "turn right the SumBot" -#~ msgstr "turn right the SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" -#~ msgid "angle to center" -#~ msgstr "angle to center" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Tools" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "get the angle to the center of the dohyo" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "angle to Enemy" -#~ msgstr "angle to Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "comment" -#~ msgid "get the angle to the Enemy" -#~ msgstr "get the angle to the Enemy" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "subtracts bottom numeric input from top numeric input" -#~ msgid "x coor. SumBot" -#~ msgstr "x coor. SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "media pause" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "get the x coordinate of the SumBot" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "push destination rgb value to heap" -#~ msgid "y coor. SumBot" -#~ msgstr "y coor. SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "query for keyboard input (results stored in keyboard block)" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "get the y coordinate of the SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesian" -#~ msgid "x coor. Enemy" -#~ msgstr "x coor. Enemy" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "clears the screen and reset the turtle" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "get the x coordinate of the Enemy" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "raw microphone input signal" -#~ msgid "y coor. Enemy" -#~ msgstr "y coor. Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "returns the color that the turtle \"sees\"" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "get the y coordinate of the Enemy" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "invokes Action 1 stack" -#~ msgid "rotation SumBot" -#~ msgstr "rotation SumBot" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palette of turtle commands" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "get the rotation of the Sumbot" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "loops forever" -#~ msgid "rotation Enemy" -#~ msgstr "rotation Enemy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "show aligned" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "get the rotation of the Enemy" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Do you want to reinstall %s?" -#~ msgid "distance to center" -#~ msgstr "distance to center" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Load project" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "get the distance to the center of the dohyo" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Project" -#~ msgid "distance to Enemy" -#~ msgstr "distance to Enemy" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debug" -#~ msgid "get the distance to the Enemy" -#~ msgstr "get the distance to the Enemy" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Turn off hover help" -#~ msgid "update information" -#~ msgstr "update information" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "update information from the server" -#~ msgstr "update information from the server" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Password" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palette of physics blocks" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "vertical space" -#~ msgid "start polygon" -#~ msgstr "start polygon" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Please restart Turtle Art in order to use the plugin." -#~ 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." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "completes filled polygon (used with start fill block)" -#~ msgid "add point" -#~ msgstr "add point" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Share" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "less than" -#~ msgid "end polygon" -#~ msgstr "end polygon" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "square root" -#~ msgid "Define a new polygon." -#~ msgstr "Define a new polygon." +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Rescale coordinates" -#~ msgid "end filled polygon" -#~ msgstr "end filled polygon" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "show blocks" -#~ msgid "Not a simple polygon" -#~ msgstr "Not a simple polygon" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Quit" -#~ msgid "Define a new filled polygon." -#~ msgstr "Define a new filled polygon." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar Journal description field" -#~ msgid "triangle" -#~ msgstr "triangle" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "set gray" -#~ msgid "base" -#~ msgstr "base" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "presentation bulleted list" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Add a triangle object to the project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "duration" -#~ msgid "circle" -#~ msgstr "circle" +#: turtleblocks.py:354 +msgid "New" +msgstr "New" -#~ msgid "Add a circle object to the project." -#~ msgstr "Add a circle object to the project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "places a comment in your code" -#~ msgid "rectangle" -#~ msgstr "rectangle" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "read pixel" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Add a rectangle object to the project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "scale" -#~ msgid "reset" -#~ msgstr "reset" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "bottom" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Reset the project; clear the object list." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "purple" -#~ msgid "motor" -#~ msgstr "motor" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Rescale coordinates down" -#~ msgid "torque" -#~ msgstr "torque" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "click to open" -#~ msgid "speed" -#~ msgstr "speed" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "microphone input pitch" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Configuration" -#~ msgid "pin" -#~ msgstr "pin" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Description:" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Pin an object down so that it cannot fall." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "journal" -#~ msgid "joint" -#~ msgstr "joint" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "empty trash" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Turtle will draw when moved." -#~ msgid "save as Physics activity" -#~ msgstr "save as Physics activity" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Load..." -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Save the project to the Journal as a Physics activity." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Journal audio object" -#~ msgid "gear" -#~ msgstr "gear" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Stop turtle" -#~ msgid "Add a gear object to the project." -#~ msgstr "Add a gear object to the project." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Turtle" -#~ msgid "density" -#~ msgstr "density" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "changes the orientation of the palette of blocks" -#~ 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)." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "store in" -#~ msgid "friction" -#~ msgstr "friction" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Hide blocks" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Load Python block" -#~ msgid "bounciness" -#~ msgstr "bounciness" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "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:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "or" -#~ msgid "dynamic" -#~ msgstr "dynamic" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "presentation template: list of bullets" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in " -#~ "position." +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identity operator used for extending blocks" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palette of WeDo blocks" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Shrink blocks" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "sets size of text drawn by the turtle" -#~ msgid "distance sensor output" -#~ msgstr "distance sensor output" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "image" -#~ msgid "returns the current value of Motor A" -#~ msgstr "returns the current value of Motor A" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"returns random number between minimum (top) and maximum (bottom) values" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: TurtleArt/tabasics.py:349 +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)" -#~ msgid "returns the current value of Motor B" -#~ msgstr "returns the current value of Motor B" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Show palette" -#~ msgid "set the value for Motor A" -#~ msgstr "set the value for Motor A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "saves a picture to the Sugar Journal" -#~ msgid "set the value for Motor B" -#~ msgstr "set the value for Motor B" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Save snapshot" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palette of LEGO NXT blocks of motors" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palette of LEGO NXT blocks of sensors" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "returns True if heap is empty" -#~ msgid "touch" -#~ msgstr "touch" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "moves turtle forward" -#~ msgid "ultrasonic" -#~ msgstr "ultrasonic" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "forward" -#~ msgid "light" -#~ msgstr "light" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "my box" -#, fuzzy -#~ msgid "grey" -#~ msgstr "gray" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Account ID" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Please check the connection with the brick." +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Select blocks to share" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "The value of power must be between -127 to 127." +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "back" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "An error has occurred: check all connections and try to reconnect." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "sets the scale of media" -#~ msgid "NXT not found" -#~ msgstr "NXT not found" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "holds current scale value" -#~ msgid "refresh NXT" -#~ msgstr "refresh NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "presentation 1x1" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Search for a connected NXT brick." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "presentation 1x2" -#~ msgid "play tone" -#~ msgstr "play tone" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "top of nameable action stack" -#~ msgid "frequency" -#~ msgstr "frequency" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "stores numeric value in named variable" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Play a tone at frequency for time." +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logical OR operator" -#~ msgid "port" -#~ msgstr "port" +#: 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 "microphone input voltage" -#~ msgid "power" -#~ msgstr "power" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "loops specified number of times" -#~ msgid "rotations" -#~ msgstr "rotations" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Save..." -#~ msgid "turn a motor" -#~ msgstr "turn a motor" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "invokes Action 2 stack" -#, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "synchronize two motors" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "setxy" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "synchronize two motors connected in PORT B and PORT C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "title y" -#~ msgid "PORT A" -#~ msgstr "PORT A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "title x" -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A of the brick" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "fill screen" -#~ msgid "PORT B" -#~ msgstr "PORT B" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "other" -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B of the brick" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Save as" -#~ msgid "PORT C" -#~ msgstr "PORT C" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "set xy" -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C of the brick" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "trash" -#~ msgid "start motor" -#~ msgstr "start motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polar" -#~ msgid "Run a motor forever." -#~ msgstr "Run a motor forever." +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repeat" -#~ msgid "brake motor" -#~ msgstr "brake motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "wait for current video or audio to complete" -#~ msgid "Stop a specified motor." -#~ msgstr "Stop a specified motor." +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Save as image" -#~ msgid "reset motor" -#~ msgstr "reset motor" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Edit" -#~ msgid "Reset the motor counter." -#~ msgstr "Reset the motor counter." +#: 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 "microphone input resistance" -#~ msgid "motor position" -#~ msgstr "motor position" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "top of Action 2 stack" -#~ msgid "Get the motor position." -#~ msgstr "Get the motor position." +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 of the brick" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "prints value in status block at bottom of the screen" -#~ msgid "read" -#~ msgstr "read" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "start fill" -#~ msgid "sensor" -#~ msgstr "sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "holds results of query-keyboard block as ASCII" -#~ msgid "Read sensor output." -#~ msgstr "Read sensor output." +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# en_US.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "push" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 of the brick" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "restore all" -#~ msgid "light sensor" -#~ msgstr "light sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "hello" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "TurtleBlocks" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 of the brick" +#: TurtleArt/tawindow.py:1256 +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" -#~ msgid "touch sensor" -#~ msgstr "touch sensor" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "Palettes" -#~ msgid "distance sensor" -#~ msgstr "distance sensor" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Facebook wall post" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Please install the Speak Activity and try again." -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 of the brick" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Spanish" -#~ msgid "sound sensor" -#~ msgstr "sound sensor" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "English" -#~ msgid "color sensor" -#~ msgstr "color sensor" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Sorry, I can't understand what you are asking about." -#~ msgid "set light" -#~ msgstr "set light" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." -#~ msgid "Set color sensor light." -#~ msgstr "Set color sensor light." +#: turtleblocks.py:407 +msgid "About..." +msgstr "About..." -#~ msgid "battery level" -#~ msgstr "battery level" +#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgstr "returns the battery charge as a number between 0 and 255" -#, fuzzy #~ msgid "Get battery level of the brick" -#~ msgstr "Get battery level of brick." - -#~ msgid "HIGH" -#~ msgstr "HIGH" - -#~ msgid "LOW" -#~ msgstr "LOW" +#~ msgstr "Get battery level of the brick" -#~ msgid "INPUT" -#~ msgstr "INPUT" - -#~ msgid "OUTPUT" -#~ msgstr "OUTPUT" - -#~ msgid "PWM" -#~ msgstr "PWM" - -#~ msgid "SERVO" -#~ msgstr "SERVO" - -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ERROR: Check the Arduino and the number of port." - -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ERROR: Value must be a number from 0 to 255." - -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERROR: Value must be either HIGH or LOW." - -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "adjust LED intensity between 0 and 255" -#~ msgid "pin mode" -#~ msgstr "pin mode" +#~ msgid "returns the ambient light level" +#~ msgstr "returns the ambient light level" -#~ msgid "mode" -#~ msgstr "mode" +#~ msgid "returns the ambient temperature" +#~ msgstr "returns the ambient temperature" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "returns 0 or 1 depending on the sensor inclination" -#~ msgid "analog write" -#~ msgstr "analog write" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "switches from 0 to 1, the frequency depends on the vibration" -#~ msgid "Write analog value in specified port." -#~ msgstr "Write analog value in specified port." +#~ msgid "grayscale" +#~ msgstr "grayscale" -#~ msgid "analog read" -#~ msgstr "analog read" +#~ msgid "ambient light" +#~ msgstr "ambient light" #~ 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." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" #~ 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." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" -#~ msgid "digital write" -#~ msgstr "digital write" +#~ msgid "magnetic induction" +#~ msgstr "magnetic induction" -#~ msgid "Write digital value to specified port." -#~ msgstr "Write digital value to specified port." +#~ msgid "vibration" +#~ msgstr "vibration" -#~ msgid "digital read" -#~ msgstr "digital read" +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "move the Butia robot forward a predefined distance" -#~ msgid "Read value from digital port." -#~ msgstr "Read value from digital port." +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "move the Butia robot backward a predefined distance" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Set HIGH value for digital port." +#~ msgid "turn Butia" +#~ msgstr "turn Butia" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Configure Arduino port for digital input." +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "turn the Butia robot x degrees" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Configure Arduino port to drive a servo." +#~ msgid "moves the Butia at specify speed motors" +#~ msgstr "moves the Butia at specified speed motors" -#~ msgid "Set LOW value for digital port." -#~ msgstr "Set LOW value for digital port." +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "returns the object gray level as a number between 0 and 1023" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Configure Arduino port for digital output." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "returns the ambient light level as a number between 0 and 1023" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Configure Arduino port for PWM (pulse-width modulation)." +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "returns the ambient temperature as a number between 0 and 255" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palette of WeDo blocks" +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" +#~ msgstr "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #, fuzzy -#~ msgid "samples" -#~ msgstr "Samples" +#~ msgid "grey" +#~ msgstr "gray" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "set the speed of the Butia motors to a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors to a value between 0 and 1023, passed " +#~ "by an argument" #~ msgid "turn the Butia robot to the left" #~ msgstr "turn the Butia robot to the left" @@ -2893,9 +3914,11 @@ msgstr "Save project?" #~ msgstr "brake a specified motor" #~ 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 "" -#~ "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" #~ msgid "activity count" #~ msgstr "activity count" @@ -2989,8 +4012,10 @@ msgstr "Save project?" #~ msgstr "" #~ "Returns the level of light in the ambient as a number between 0 and 1023." -#~ msgid "Returns the temperature in the ambient as a number between 0 and 255." -#~ msgstr "Returns the temperature in the ambient as a number between 0 and 255." +#~ msgid "" +#~ "Returns the temperature in the ambient as a number between 0 and 255." +#~ msgstr "" +#~ "Returns the temperature in the ambient as a number between 0 and 255." #~ msgid "stack" #~ msgstr "stack" @@ -3010,8 +4035,10 @@ msgstr "Save project?" #~ msgid "restore last" #~ msgstr "restore last" -#~ msgid "a programmable block: used to add advanced math equations, e.g., sin(x)" -#~ msgstr "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 "" +#~ "a programmable block: used to add advanced math equations, e.g., sin(x)" #~ msgid "blocks" #~ msgstr "blocks" diff --git a/po/es.po b/po/es.po index df256de..2498ac0 100644 --- a/po/es.po +++ b/po/es.po @@ -2,8 +2,37 @@ # 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-03-03 00:33-0500\n" +"PO-Revision-Date: 2013-03-06 22:33+0200\n" +"Last-Translator: Chris \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" +"#-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-03-03 00:33-0500\n" +"PO-Revision-Date: 2013-03-06 22:33+0200\n" +"Last-Translator: Chris \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-02-24 00:31-0500\n" @@ -18,1143 +47,2349 @@ 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 "" -"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" +msgid "turtleart-extras (master)" +msgstr "turtleart-extras (master)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Paleta de comandos de la tortuga" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "TortuBlocks" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "adelante" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "TortugArte" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "mueve la tortuga hacia adelante" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "TortugArte Mini" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "atrás" +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "TortugArte Confusión" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "mueve la tortuga hacia atrás" +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Selecciona un desafío" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "limpiar" +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Tortuga Amazonas" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "limpia la pantalla y restaura la tortuga" +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Paleta de Pesos Mexicanos" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "izquierda" +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Paleta de Pesos Colombianos" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "gira la tortuga en sentido anti-horario (ángulo en grados)" +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Paleta de Francos de Ruanda" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "derecha" +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "Paleta de Dólares Americanos" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "gira la tortuga en sentido horario (ángulo en grados)" +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Paleta de Dólares Australianos" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arco" +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Paleta de Guaraníes Paraguayos" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "ángulo" +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Paletea de Nuevos Soles Peruanos" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radio" +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Paleta de Pesos Uruguayos" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "mueve la tortuga a lo largo de un arco" +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "TortuBots" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "fijar xy" +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "TortuBlocks con plugins: Butiá, Lego NxT, WeDo, Arduino, FollowMe" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:74 +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:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "ERROR: El pin debe estar entre 1 y 8" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -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:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "ERROR: El valor debe ser 0 o 1, ALTO o BAJO" -# rumbo is the word traditionally used in LOGO; we should try to maintain consistency with the LOGO community -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "fijar rumbo" +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "ERROR: El modo debe ser ENTRADA o SALIDA." -#: TurtleArt/tabasics.py:217 -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:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "Prende o apaga el LED; 0 es apagado, 1 prendido" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "coorx" +#: taextras.py:79 +msgid "returns the gray level" +msgstr "devuelve el nivel de gris de un objeto" -#: TurtleArt/tabasics.py:226 -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:80 +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:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "coory" +#: taextras.py:81 +msgid "returns the light level" +msgstr "devuelve el nivel de gris" -#: TurtleArt/tabasics.py:237 -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:82 +msgid "returns the temperature" +msgstr "devuelve la temperatura" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "rumbo" +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "devuelve la distancia al objeto en frente del sensor" -#: TurtleArt/tabasics.py:248 -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:84 +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" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Paleta de órdenes de la pluma" +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "devuleve el valor de la resistencia" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "rellenar pantalla" +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "devuleve el valor del voltaje" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "color" +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "tono" +#: taextras.py:88 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "rellena el fondo con (color, sombra)" +#: taextras.py:89 +msgid "button" +msgstr "botón" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: taextras.py:90 taextras.py:358 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:367 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 msgid "gray" msgstr "gris" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "fijar color" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "luz" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "fija el color de la línea que la tortuga dibuja" +#: taextras.py:92 +msgid "temperature" +msgstr "temperatura" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "fijar tono" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "distancia" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "fija la tonalidad de la linea que la tortuga dibuja" +#: taextras.py:94 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:337 -msgid "set gray" -msgstr "establecer gris" +#: taextras.py:95 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" -#: TurtleArt/tabasics.py:340 -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:96 +msgid "Butia Robot" +msgstr "Robot Butiá" + +#: taextras.py:97 +msgid "refresh Butia" +msgstr "refrescar Butiá" + +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "actualiza el estado de la paleta y de los bloques Butiá" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "carga de batería Butiá" + +#: taextras.py:101 +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" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "velocidad Butiá" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "establece la velocidad de los motores del Butiá" + +#: taextras.py:105 +msgid "move Butia" +msgstr "mover Butiá" + +#: taextras.py:106 TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "izquierda" -#: TurtleArt/tabasics.py:349 -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:107 TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "derecha" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "contiene la tonalidad actual de la pluma" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "mueve los motores del Butiá a la velocidad especificada" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "detener Butiá" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "detiene al robot Butiá" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "adelante Butiá" + +#: taextras.py:113 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "izquierda Butiá" + +#: taextras.py:116 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "derecha Butiá" + +#: taextras.py:119 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "atrás Butiá" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "mueve el robot Butiá hacia atrás" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "Bloques extra del Robot Butiá" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "modo del hack pin" + +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "pin" + +#: taextras.py:126 taextras.py:457 +msgid "mode" +msgstr "modo" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Selecciona la función del pin (ENTRADA, SALIDA)." + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "escribir en hack pin" + +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "valor" -#: TurtleArt/tabasics.py:368 -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:130 +msgid "set a hack pin to 0 or 1" +msgstr "establce el hack pin en 0 o 1" -# verbo -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "subir pluma" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "leer en hack pin" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "La tortuga no dibujará cuando se mueva." +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "lee el valor de un hack pin" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "bajar pluma" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "ALTO" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "La tortuga dibujará cuando se mueva." +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "Setea el valor ALTO en el puerto digital." -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "fijar tamaño" +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "ENTRADA" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "fija el ancho de la línea que la tortuga dibuja" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "Configura el puerto hack como entrada digital." -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "comenzar a rellenar" +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "BAJO" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "" -"comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "Setea el valor BAJO en el puerto digital." -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "finalizar relleno" +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "SALIDA" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "" -"completa el polígono relleno (utilizado con comenzar relleno del bloque)" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "Configura el puerto hack como salida digital." -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "tamaño" +#: taextras.py:141 +msgid "Butia" +msgstr "Butiá" -#: TurtleArt/tabasics.py:427 -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)" - -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Paleta de colores de la pluma" +#: taextras.py:142 +#, 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:443 -msgid "red" -msgstr "rojo" +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "ERROR: El pin %s debe estar en modo ENTRADA." + +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "Error importando Pygame. Este plugin requiere Pygame 1.9" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "Error en la inicialización de la cámara" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "No se encontraró cámara" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Error deteniendo cámara" + +#: taextras.py:151 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "Error en obtener máscara" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "FollowMe" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "refrescar FollowMe" + +#: taextras.py:156 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "calibración" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "almacena una calibración personalizada" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "devuelve una calibración personalizada" + +#: taextras.py:161 +msgid "follow" +msgstr "seguir" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "seguir un color o calibración" + +#: taextras.py:163 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:444 -msgid "orange" -msgstr "naranja" +#: taextras.py:164 +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." + +#: taextras.py:165 +msgid "minimum pixels" +msgstr "mínimo de pixeles" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "define el mínimo número de píxeles a seguir" + +#: taextras.py:167 +msgid "threshold" +msgstr "umbral" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "define el umbral para un color RGB" + +#: taextras.py:170 +msgid "camera mode" +msgstr "modo de cámara" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +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" + +#: taextras.py:173 +msgid "get brightness" +msgstr "obtener brillo" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "obtiene el brillo de la luz ambiente" + +#: taextras.py:175 +msgid "average color" +msgstr "color promedio" + +#: taextras.py:176 +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" + +#: taextras.py:178 +msgid "x position" +msgstr "posición x" + +#: taextras.py:179 +msgid "return x position" +msgstr "retorna la posición x" + +#: taextras.py:180 +msgid "y position" +msgstr "posición y" + +#: taextras.py:181 +msgid "return y position" +msgstr "retorna la posición y" + +#: taextras.py:182 +msgid "pixels" +msgstr "píxeles" + +#: taextras.py:183 +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) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +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) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +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) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "establece el modo de color de la cámara a HSV" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "calibración vacía" + +#: taextras.py:191 +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:197 +msgid "Pattern detection" +msgstr "Detección de marcas" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "Viendo señal" + +#: taextras.py:199 +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:200 +msgid "Distance to signal" +msgstr "Distancia a la señal" + +#: taextras.py:201 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "velocidad SumBot" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "setea la velocidad del SumBot" + +#: taextras.py:209 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "adelante SumBot" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "mueve el SumBot hacia adelante" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "atrás SumBot" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "mueve el SumBot hacia atrás" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "detener SumBot" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "detiene el SumBot" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "izquierda SumBot" + +#: taextras.py:220 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "derecha SumBot" + +#: taextras.py:223 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:226 +msgid "angle to center" +msgstr "ángulo al centro" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +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) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "ángulo al Enemigo" + +#: taextras.py:232 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "coor. x SumBot" + +#: taextras.py:235 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "coor. y SumBot" + +#: taextras.py:238 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "coor. x Enemigo" + +#: taextras.py:241 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "coor. y Enemigo" + +#: taextras.py:244 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "rotación SumBot" + +#: taextras.py:247 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "rotación Enemigo" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "obtiene la rotación del Enemigo" + +#: taextras.py:251 +msgid "distance to center" +msgstr "distancia al centro" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "obtiene la distancia al centro del dohyo" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "distancia al Enemigo" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "obtiene la distancia al Enemigo" + +#: taextras.py:256 +msgid "update information" +msgstr "actualizar información" + +#: taextras.py:257 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Paleta de bloques de física" + +#: taextras.py:263 +msgid "start polygon" +msgstr "comenzar polígono" + +#: taextras.py:264 +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." -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "amarillo" +#: taextras.py:266 +msgid "add point" +msgstr "agregar punto" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "verde" +#: taextras.py:267 +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:449 -msgid "cyan" -msgstr "cian" +# finalizar polígono +#: taextras.py:269 +msgid "end polygon" +msgstr "terminar polígono" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Define un nuevo polígono." + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "termina polígono relleno" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "No es un polígono simple" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Define un nuevo polígono relleno." + +#: taextras.py:274 +msgid "triangle" +msgstr "triángulo" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "base" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "altura" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "azul" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Agrega un objeto triángulo al proyecto." -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "morado" +#: taextras.py:279 +msgid "circle" +msgstr "círculo" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "blanco" +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Agrega un objeto círculo al proyecto." -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "negro" +#: taextras.py:281 +msgid "rectangle" +msgstr "rectángulo" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "fijar el color del texto" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "anchura" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "fija el color del texto dibujado por la tortuga" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Agrega un objeto rectángulo al proyecto." -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "fijar tamaño del texto" +#: taextras.py:285 +msgid "reset" +msgstr "resetear" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "fija el tamaño del texto dibujado por la tortuga" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Resetea el proyecto; limpia la lista de objetos." -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Paleta de operadores numéricos" +#: taextras.py:287 +msgid "motor" +msgstr "motor" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "sumar" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "torque" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "suma dos entradas alfanuméricas" +#: taextras.py:290 +msgid "speed" +msgstr "velocidad" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "menos" +#: taextras.py:291 +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:578 -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:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Sujeta un objeto para que no se caiga." -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "multiplicar" +# enPhysics es unión... podría ser articulación +#: taextras.py:295 +msgid "joint" +msgstr "unión" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplica dos entradas numéricas" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "dividir" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:604 +#: taextras.py:298 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -"divide la entrada numérica de arriba (numerador) por la entrada numérica de " -"bajo (denominador)" - -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identidad" - -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "operador de identidad usado para extender bloques" - -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" - -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "operador módular (resto)" +"Une dos objetos (el objeto creado mas reciententemente y el objeto en el " +"punto x, y)." + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "guardar como Actividad Física" + +#: taextras.py:301 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Guarda el proyecto al Diario como una Actividad de Física." + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "círculo" + +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Agrega un objeto engranaje al proyecto." + +#: taextras.py:305 +msgid "density" +msgstr "densidad" + +#: taextras.py:306 +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:635 -msgid "√" -msgstr "√" +#: taextras.py:308 +msgid "friction" +msgstr "fricción" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "raiz cuadrada" +#: taextras.py:309 +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:639 -msgid "calculates square root" -msgstr "calcula la raíz cuadrada" +# podría ser elasticidad? +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "restitución" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "aleatorio" +# very bouncy = muy restituible? +#: taextras.py:313 +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)." + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "dinámico" + +#: taextras.py:317 +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." + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "Paleta de bloques WeDo" + +#: taextras.py:324 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "setea el dispositivo WeDo actual" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "número de dispositivos WeDo" + +#: taextras.py:327 +msgid "tilt" +msgstr "inclinación" + +#: taextras.py:328 +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" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "salida del sensor distancia" + +#: taextras.py:333 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "devuelve el valor actual del Motor A" + +#: taextras.py:335 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "devuelve el valor actual del Motor B" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "setea el valor del Motor A" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "setea el valor del Motor B" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "WeDo no está disponible" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "Wedo %d no está disponible; usando por defecto el 1" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "%(device)s no está disponible en el WeDo %(wedo_number)d" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Paleta de bloques LEGO NXT de motores" + +#: taextras.py:350 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Paleta de bloques LEGO NXT de sensores" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "botón" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "distancia" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "color" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "sonido" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "Por favor chequee la conexión con el brick" -#: TurtleArt/tabasics.py:650 -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)" +#: taextras.py:361 +#, 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:662 -msgid "number" -msgstr "número" +#: taextras.py:362 +#, 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:663 -msgid "used as numeric input in mathematic operators" -msgstr "utilizado como entrada numérica en los operadores matemáticos" +#: taextras.py:363 +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:671 -msgid "greater than" -msgstr "mayor que" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "El parámetro debe ser un entero, no '%s'" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "operador lógico mayor que" +#: taextras.py:365 +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:683 -msgid "less than" -msgstr "menor que" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT encontró %s bricks" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "operador lógico menor que" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT no encontrado" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "igual" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "El brick número %s no fue encontrado" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "operador lógico de igualdad" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "refrescar NXT" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "no" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Busca por un brick NXT conectado." -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "operador NO lógico" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "y" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "establece el dispositivo NXT actual" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "operador Y lógico" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "número de dispositivos NXT" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "o" +#: taextras.py:374 +msgid "brick name" +msgstr "nombre del brick" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "operador O lógico" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "Obtiene el nombre del brick." -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Paleta de operadores de flujo" +#: taextras.py:376 +msgid "play tone" +msgstr "reproducir tono" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "esperar" +#: taextras.py:377 +msgid "frequency" +msgstr "frecuencia" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "detiene la ejecución del programa por número determinado de segundos" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "tiempo" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "por siempre" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Reproduce un tono a cierta frecuencia por un determinado tiempo." -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "repetir para siempre" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: turn is the action +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: turn is the action +#: taextras.py:381 +msgid "" +"turn motor\n" +"\n" +msgstr "" +"girar motor\n" +"\n" + +#: taextras.py:382 +msgid "port" +msgstr "puerto" + +#: taextras.py:383 +msgid "power" +msgstr "potencia" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "rotaciones" + +#: taextras.py:386 +msgid "turn a motor" +msgstr "gira un motor" + +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"sincronizar\n" +"\n" +"motores" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repetir" +#: taextras.py:388 +msgid "steering" +msgstr "dirección" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "repite el número especificado de veces" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "sincroniza dos motores conectados en el PUERTO B y PUERTO C" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "si" +#: taextras.py:390 +msgid "PORT A" +msgstr "PUERTO A" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "entonces" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "PUERTO A del brick" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "si entonces" +#: taextras.py:392 +msgid "PORT B" +msgstr "PUERTO B" -#: TurtleArt/tabasics.py:781 -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:393 +msgid "PORT B of the brick" +msgstr "PUERTO B del brick" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "sino" +#: taextras.py:394 +msgid "PORT C" +msgstr "PUERTO C" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "si entonces sino" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "PUERTO C del brick" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:396 +msgid "" +"synchronize\n" +"motors" msgstr "" -"operador si-entonces-sino que usa operadores lógicos de la paleta de Números" - -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "espacio horizontal" +"sincronizar\n" +"motores" + +#: taextras.py:397 +msgid "start motor" +msgstr "iniciar motor" + +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "Girar un motor por siempre." + +#: taextras.py:399 +msgid "brake motor" +msgstr "frenar motor" + +#: taextras.py:400 +msgid "Stop a specified motor." +msgstr "Frena un motor específico." + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "reiniciar motor" + +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "Reinicia el contador del motor." + +#: taextras.py:404 +msgid "motor position" +msgstr "posición del motor" + +#: taextras.py:405 +msgid "Get the motor position." +msgstr "Obtiene la posición del motor." + +#: taextras.py:406 +msgid "PORT 1" +msgstr "PUERTO 1" + +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "PUERTO 1 del brick" + +#: taextras.py:408 +msgid "read" +msgstr "leer" + +#: taextras.py:409 +msgid "sensor" +msgstr "sensor" + +#: taextras.py:410 +msgid "Read sensor output." +msgstr "Lee la salida del sensor." + +#: taextras.py:411 +msgid "PORT 2" +msgstr "PUERTO 2" + +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "PUERTO 2 del brick" + +#: taextras.py:413 +msgid "light sensor" +msgstr "sensor de luz" + +#: taextras.py:414 +msgid "gray sensor" +msgstr "sensor de grises" + +#: taextras.py:415 +msgid "PORT 3" +msgstr "PUERTO 3" + +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "PUERTO 3 del brick" + +#: taextras.py:417 +msgid "touch sensor" +msgstr "sensor táctil" + +#: taextras.py:418 +msgid "distance sensor" +msgstr "sensor de distancia" + +#: taextras.py:419 +msgid "PORT 4" +msgstr "PUERTO 4" + +#: taextras.py:420 +msgid "PORT 4 of the brick" +msgstr "PUERTO 4 del brick" + +#: taextras.py:421 +msgid "sound sensor" +msgstr "sensor de sonido" + +#: taextras.py:422 +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) +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:425 +msgid "set light" +msgstr "prender luz" + +#: taextras.py:426 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "nivel de batería" + +#: taextras.py:429 +msgid "Get battery level of the brick" +msgstr "Obtiene el nivel de batería del brick" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:440 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ERROR: Chequee la Arduino y el número de puerto." + +#: taextras.py:442 +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:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ERROR: El valor debe ser ALTO o BAJO." + +#: taextras.py:444 +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:445 +msgid "refresh Arduino" +msgstr "refrescar Arduino" + +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "Busca por Arduinos conectadas." + +#: taextras.py:447 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "establece la placa Arduino actual" + +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "número de Arduinos" + +#: taextras.py:450 +msgid "number of Arduino boards" +msgstr "número de placas" + +#: taextras.py:451 +msgid "Arduino name" +msgstr "nombre de Arduino" + +#: taextras.py:452 +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. +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# 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:455 +msgid "pin mode" +msgstr "modo del pin" + +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Selecciona la función del pin (ENTRADA, SALIDA, PWM, SERVO)." + +#: taextras.py:459 +msgid "analog write" +msgstr "escribir analógico" + +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "Escribe un valor analógico en el puerto especificado." + +#: taextras.py:462 +msgid "analog read" +msgstr "leer analógico" + +#: taextras.py:463 +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." -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "desplaza la pila a la derecha" +#: taextras.py:465 +msgid "digital write" +msgstr "escribir digital" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "espacio vertical" +#: taextras.py:466 +msgid "Write digital value to specified port." +msgstr "Escribe un valor digital en un puerto específico." -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "desplazar la pila abajo" +#: taextras.py:467 +msgid "digital read" +msgstr "leer digital" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "parar acción" +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "Lee un valor desde un puerto digital." -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "detiene la acción actual" +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "Configura el puerto de la Arduino como entrada digital." -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Paleta de bloques de variables" +#: taextras.py:471 +msgid "Configure Arduino port to drive a servo." +msgstr "Configura el puerto de la Arduino para manejar un servo." -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "empezar" +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "Configura el puerto de la Arduino como salida digital." -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" +#: taextras.py:474 +msgid "Configure Arduino port for PWM (pulse-width modulation)." msgstr "" -"conecta la acción a los botones de ejecución de la barra de herramientas" +"Configura el puerto de la Arduino para PWM modulación por ancho de pulsos)." + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +msgid "Palette of Expeyes blocks" +msgstr "Paleta de bloques de Expeyes" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Programmable voltage output +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" +msgstr "establecer PVS" + +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "establece el voltaje de salida programable" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Square wave 1 voltage output +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "establecer voltaje SQR1" + +#: taextras.py:485 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Square wave 2 voltage output +#: taextras.py:487 +msgid "set SQR2 voltage" +msgstr "establecer voltaje SQR2" + +#: taextras.py:488 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "establecer OD1" + +#: taextras.py:491 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Input 1 voltage level +#: taextras.py:493 +msgid "IN1 level" +msgstr "nivel IN1" + +#: taextras.py:494 +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" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Input 2 voltage level +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "nivel IN2" + +#: taextras.py:498 +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" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Resistive sensor voltage level +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "nivel SEN" + +#: taextras.py:502 +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" + +#: taextras.py:504 +msgid "capture" +msgstr "capturar" + +#: taextras.py:505 +msgid "input" +msgstr "entrada" + +#: taextras.py:506 +msgid "samples" +msgstr "muestras" + +#: taextras.py:507 +msgid "interval" +msgstr "intervalo" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: MS is microseconds +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: MS is microseconds +#: taextras.py:509 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Analog input 1 voltage level +#: taextras.py:512 +msgid "A1" +msgstr "A1" + +#: taextras.py:513 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "A2" + +#: taextras.py:516 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "lee el voltaje de la entrada 1" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read input 2 voltage +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "lee el voltaje de la entrada 2" + +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read analog sensor input voltage +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:525 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:528 +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 +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Read square wave 2 input voltage +#: taextras.py:530 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "lee el voltaje de la onda cuadrada 2" + +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "leer voltaje programable" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "El dispositivo Expeyes no fue encontrado" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "texto" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "reanudar la reproducción de video o audio" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "valor de cadena" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Título" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "acción" +#: 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" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "cima de la pila de acción nombrable" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "amarillo" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "invocar la pila de acción nombrado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "muestra las coordenadas polares" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "guardar en caja 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "vacía la pila FILO (primera-en-entrar último-en-salir)" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "guarda valor numérico en la variable 1" +#: 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" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "guardar en caja 2" +#: 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" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "guarda valor numérico en la variable 2" +#: TurtleArt/tabasics.py:781 +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" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "caja 1" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "desplaza la pila a la derecha" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variable 1 (valor numérico)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "objeto de medios del Diario de Sugar" #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "caja 2" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variable 2 (valor numérico)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "guardar en" - -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "caja" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "valor" - -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "mi caja" - -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "guarda valor numérico en la variable nombrada" - -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "variable nombrado (valor numérico)" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "caja 1" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "acción 1" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Dar un paso" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "primero de la pila de Acción 1" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplica dos entradas numéricas" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "acción 2" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Mostar/ocultar bloques" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "primero de la pila de Acción 2" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Ocultar paleta" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "invocar la pila de acción 1" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Amigos" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "invocar la pila de acción 2" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Mi sesión de TortugArte" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "basura" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "objeto de video del Diario de Sugar" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "vaciar papelera" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cian" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "borra permanentemente elementos de la papelera" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +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" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "restaurar todo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor del lado derecho de la pantalla" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "restaura todos los bloques de la papelera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Paleta de opciones adicionales" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "borrar todos" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Cargar ejemplos" #: TurtleArt/tabasics.py:1010 msgid "move all blocks to trash" msgstr "mueve todos los bloques a la basura" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Compartir bloques seleccionados" - -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Título" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "lista" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Parar tortuga" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Directorio de configuración no modificable: %s" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Mostrar bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "continuar medios" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Ocultar bloques" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "rumbo" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "no pudo escribir en" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Compartir bloques deshabilitado" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "No sé como hacerlo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +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/talogo.py:624 -msgid "doesn't like" -msgstr "no le gusta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "dibujar texto o mostrar medios desde el Diario" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "como entrada" +# 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" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "muestra la siguiente paleta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "video" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "cambia la orientación de la paleta de bloques" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "azul" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Cargar..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "muestra coordenadas cartesianas" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Guardar..." +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Sin acción alternativa:" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "clic para abrir" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "desplazar la pila abajo" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientación" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "operador módular (resto)" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "siguiente" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "debajo y" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "desplazar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "guardar SVG" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "" -"Por favor, pulsa el Botón Detener antes de hacer cambios a tu programa " -"TortuBlocks" +"ejecuta el código del módulo tamyblock.py que se encuentra en el Diario" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Selecciona bloques para compartir" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "bajar pluma" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "TortugArte" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "esperar" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "imagen" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "caja" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Guardar como Logo" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "¡Error al descargar!" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Guardar como imagen" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "desplazar" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "instantánea" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "invocar la pila de acción nombrado" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Guardar instantánea" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "acción" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Deshabilitar ayuda flotante" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +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" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Habilitar ayuda flotante" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "el uso es" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Mostrar paleta" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variable 2 (valor numérico)" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Ocultar paleta" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "dividir" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Escalar coordenadas hacia abajo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "nombre de la imagen" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Escalar coordenadas hacia arriba" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "mientras" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Editar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "el ancho del lienzo" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Ver" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "pila vacía?" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Proyecto" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "variable nombrado (valor numérico)" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Guardar/Cargar" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "siguiente" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copiar" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "si entonces" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Pegar" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "fijar tamaño" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Restaura los bloques de la papelera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "" +"plantilla de presentación: seleccionar objeto del Diario (sin descripción)" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Pantalla completa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "hasta" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Coordenadas cartesianas" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "parar medios" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Coordenadas polares" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Habilitar ayuda flotante" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Coordenadas centímetros" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "borra permanentemente elementos de la papelera" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Agrandar bloques" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "vuelta en U" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Empequeñecer bloques" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "primero de la pila de Acción 1" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Cargar ejemplos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +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)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Limpiar" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Paleta de operadores de flujo" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Ejecutar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "cima de una pila plegable" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Dar un paso" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"operador si-entonces-sino que usa operadores lógicos de la paleta de Números" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Ayuda" +# devuelve en lugar de retorna - mouse en lugar de ratón +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "retorna la coordenada y del cursor" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Parar" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "contiene la tonalidad actual de la pluma" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Cargar proyecto" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinusoide" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Cargar plugin" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Error de autentificación" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Cargar bloque Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "izquierda x" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "paleta" +# rumbo is the word traditionally used in LOGO; we should try to maintain consistency with the LOGO community +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "fijar rumbo" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Compartir bloques deshabilitado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "Se envia a la pila el color RGB bajo la tortuga" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "limpia el lienzo ocultando bloques" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "El plugin no puede ser instalado." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Reinicie TortugArte para poder usar el plugin." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "El plugin %s ya se encuentra instalado." - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "¿Desea reinstalar %s?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Mi sesión de TortugArte" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Permitir la colaboración" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Actividades" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Amigos" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Compartir" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Configuración" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Vecindario" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Apodo" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Cuenta" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Servidor" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Puerto" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Contraseña" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Operador chr de Python" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Registro" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "espacio horizontal" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Colores" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Coordenadas centímetros" -#: 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" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "valor de cadena" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Muro de Facebook" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "descripción" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Enviar a la Web" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "No sé como hacerlo" -#: 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." +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "fijar tamaño del texto" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "Usuario:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Contraseña:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Título:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Descripción:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Enviar a la Web" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Cancelar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "plantilla de presentación: seleccionar cuatro objetos del Diario" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Error de autentificación" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Ver" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "¡Error al descargar!" +#: TurtleArt/tabasics.py:340 +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/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:330 -msgid "Palette of sensor blocks" -msgstr "Paleta de bloques sensor" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Contraseña:" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "acelerómetro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "la tortuga ve" -#: 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" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "parar acción" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "sonido" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "verde" -#: 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" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "tono" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "volumen" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "rellena el fondo con (color, sombra)" -#: 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/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "guardar imagen" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1162,451 +2397,259 @@ msgstr "volumen de entrada de micrófono" msgid "pitch" msgstr "frecuencia" -#: 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" - -#: 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" +# devuelve en lugar de retorna - mouse en lugar de ratón +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "retorna 1 si el botón del ratón está presionado" -#: 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)" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Escalar coordenadas hacia arriba" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Paleta de bloques medios" +# verbo +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "subir pluma" -#: 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:444 +msgid "orange" +msgstr "naranja" -#: 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" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "detiene la ejecución del programa por número determinado de segundos" -#: 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/turtle_blocks_extras/turtle_blocks_extras.py:467 +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/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" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "borrar todos" -#: 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" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "entonces" -# 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" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Registro" -#: 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:705 +msgid "not" +msgstr "no" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "mientras" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "si entonces sino" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -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" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "detiene la acción actual" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "hasta" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "gira la tortuga en sentido horario (ángulo en grados)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" msgstr "" -"se ejecutan la serie de bloques siguientes hasta que se cumpla la condición" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "cima" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "cima de una pila plegable" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "diario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "objeto de medios del Diario de Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "objeto de audio del Diario de Sugar" +"contiene el nivel actual de gris (puede ser utilizado en vez de un bloque " +"numérico)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "coorx de la izquierda de la pantalla" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "objeto de video del Diario de Sugar" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Restaurar el tamaño del bloque" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "descripción" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "tortuga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "campo de descripción del Diario de Sugar" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "muestra la siguiente paleta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "mostrar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "ocultar los bloques" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "dibujar texto o mostrar medios desde el Diario" +#: 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:207 -msgid "show aligned" -msgstr "mostrar alineados" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Operador int de Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "fijar escala" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "operador lógico menor que" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "fijar la escala de medios" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "restaura todos los bloques de la papelera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "guardar imagen" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Guardar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "nombre de la imagen" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "guardar en caja 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "guarda una imagen en el Diario de Azúcar" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "guardar en caja 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "guardar SVG" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "oculta las barras de herramientas de Azúcar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"guarda los gráficos de la tortuga como un archivo SVG en el Diario de Azúcar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "escala" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "mantiene el valor actual de la escala" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "esperar medios" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -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:283 -msgid "media stop" -msgstr "parar medios" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "detiene el video o audio" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "pausar medios" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "pausa el video o audio" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "continuar medios" +"contiene la coordenada x actual de la tortuga (se puede usar en vez de un " +"bloque de número)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "reanudar la reproducción de video o audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "imprimir" -# decir -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "hablar" +# devuelve en lugar de retorna - mouse en lugar de ratón +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "devuelve la coordenada x del cursor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "hola" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "rojo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "dice texto" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Guardar como Logo" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinusoide" +#: TurtleArt/tabasics.py:317 +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:317 -msgid "amplitude" -msgstr "amplitud" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "fijar el color del texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "duración" +#: 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:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"reproduce una sinusoide desde frecuencia, amplitud y duración (en segundos)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Permitir la colaboración" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "botón presionado" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Paleta de bloques sensor" -# devuelve en lugar de retorna - mouse en lugar de ratón -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "retorna 1 si el botón del ratón está presionado" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Cargar plugin" # devuelve en lugar de retorna - mouse en lugar de ratón #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 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:358 -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:361 -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:368 -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:371 -msgid "returns mouse y coordinate" -msgstr "retorna la coordenada y del cursor" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "número" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "consulta de teclado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"consulta para la entrada de teclado (los resultados están almacenados en el " -"bloque del teclado)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "cima" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "teclado" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Enviar a la Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "contiene los resultados del bloque de consulta de teclado como ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Coordenadas cartesianas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "leer pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Apodo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -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:234 +msgid "set scale" +msgstr "fijar escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "la tortuga ve" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Compartir bloques seleccionados" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "muestra el color que \"ve\" la tortuga" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "blanco" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "tiempo" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "" +"conecta la acción a los botones de ejecución de la barra de herramientas" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "el tiempo transcurrido (en segundos) desde el inicio del programa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Paleta de opciones adicionales" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "empujar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -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:477 -msgid "show heap" -msgstr "mostrar pila" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -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:490 -msgid "empty heap" -msgstr "vaciar pila" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "vacía la pila FILO (primera-en-entrar último-en-salir)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "sacar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -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:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "pila vacía?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "devuelve Verdadero si la pila está vacía" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "comentar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "coloca un comentario en tu código" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "imprimir" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplitud" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -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" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Cancelar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Operador chr de Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "la altura del lienzo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Operador int de Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "presentación 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "menos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -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)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -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)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "cima de una pila plegable" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -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)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "como entrada" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1614,56 +2657,28 @@ msgstr "" msgid "Python block" msgstr "bloque Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -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:669 -msgid "Cartesian" -msgstr "Cartesiana" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "muestra coordenadas cartesianas" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "muestra las coordenadas polares" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "tortuga" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "elige la tortuga a ordenar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "esperar medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "caparazón de la tortuga" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "acelerómetro" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "vestir a la tortuga con un caparazón a medida" +#: TurtleArt/tabasics.py:427 +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)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "cima de una pila plegable" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "fijar color" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "cargar" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1671,72 +2686,71 @@ msgstr "cargar" msgid "loads a block" msgstr "cargar un bloque" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "fijar xy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Paleta de órdenes de la pluma" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "paleta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +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:757 -msgid "selects a palette" -msgstr "seleccionar paleta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +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" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Paleta de plantillas de presentaciones" +#: turtleblocks.py:363 +msgid "File" +msgstr "Archivo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "ocultar los bloques" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "operador NO lógico" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "limpia el lienzo ocultando bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "coory del limite inferior de la pantalla" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "mostrar bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "" +"plantilla de presentación: seleccionar objeto del Diario (con descripción)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "restaura bloques ocultos" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Paleta de operadores numéricos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "oculta las barras de herramientas de Azúcar" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "multiplicar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "lista" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "por siempre" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "presentación con lista de viñetas" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "El plugin %s ya se encuentra instalado." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "plantilla de presentación: lista de viñetas" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "fija la tonalidad de la linea que la tortuga dibuja" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -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:308 +msgid "speaks text" +msgstr "dice texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "" -"plantilla de presentación: seleccionar objeto del Diario (con descripción)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "instantánea" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "plantilla de presentación: seleccionar cuatro objetos del Diario" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "limpiar" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1745,1258 +2759,1103 @@ msgstr "plantilla de presentación: seleccionar cuatro objetos del Diario" msgid "presentation template: select two Journal objects" msgstr "plantilla de presentación: seleccionar dos objetos del Diario" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "coorx de la izquierda de la pantalla" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "debajo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "coory del limite inferior de la pantalla" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "anchura" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "el ancho del lienzo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor del lado derecho de la pantalla" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor del limite superior de la pantalla" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "altura" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "la altura del lienzo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "título x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "título y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "izquierda x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "arriba y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "derecha x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Agrandar bloques" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "debajo y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Pantalla completa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "presentación 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Fichero no encontrado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "presentación 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "mostrar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "presentación 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "presentación 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "aleatorio" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Por favor instala la Actividad Hablar e intenta de nuevo." +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "operador lógico mayor que" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Español" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "gira la tortuga en sentido anti-horario (ángulo en grados)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "Inglés" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "negro" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Lo siento, no puedo entender lo que estás preguntando." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "calcula la raíz cuadrada" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Lo siento, no hay memoria libre para cargar mi cerebro. Cierra otras " -"actividades e intenta una vez más." +"contiene la coordenada y actual de la tortuga (se puede usar en vez de un " +"bloque de número)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "empujar el valor rgb de destino a la pila" +# mouse x o cursor +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "cursor x" + +# mouse y - ratón y +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "cursor y" #: pysamples/grecord.py:215 msgid "stop" msgstr "parar" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "reproducir" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "guardar" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "otros" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "vuelta en U" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "hacer una vuelta en U" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "el uso es" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Sin acción alternativa:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Fichero no encontrado" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Directorio de configuración no modificable: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Nuevo" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Abrir" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Guardar" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Guardar como" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Salir" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Archivo" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Escalar coordenadas" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Restaurar el tamaño del bloque" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Mostar/ocultar bloques" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Herramientas" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Depurar" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Tortuga" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "mayor que" -#: turtleblocks.py:407 -msgid "About..." -msgstr "Acerca..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "coorx" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Ayuda" #: turtleblocks.py:448 msgid "Save project?" msgstr "¿Guardar el proyecto?" -#~ msgid "Turtle Art Mini" -#~ msgstr "TortugArte Mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "TortugArte Confusión" - -#~ msgid "Select a challenge" -#~ msgstr "Selecciona un desafío" - -#~ msgid "Amazonas Tortuga" -#~ msgstr "Tortuga Amazonas" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Paleta de Pesos Mexicanos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Paleta de Pesos Colombianos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Paleta de Francos de Ruanda" - -#~ msgid "Palette of US dollars" -#~ msgstr "Paleta de Dólares Americanos" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Paleta de Dólares Australianos" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Paleta de Guaraníes Paraguayos" - -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Paletea de Nuevos Soles Peruanos" - -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Paleta de Pesos Uruguayos" - -#~ msgid "TurtleBots" -#~ msgstr "TurtleBots" - -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "ajusta la intensidad del LED entre 0 y 255" - -#~ 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" - -#~ 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 "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" - -#~ 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 "" -#~ "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" - -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "devuelve 0 o 1 dependiendo de la inclinación del sensor" - -#~ 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 "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "oscila entre 0 y 1 dependiendo de la vibración" - -#~ msgid "returns the value of the resistance" -#~ msgstr "devuleve el valor de la resistencia" - -#~ msgid "LED" -#~ msgstr "LED" - -#~ msgid "button" -#~ msgstr "botón" - -#~ msgid "grayscale" -#~ msgstr "escala de gris" - -#~ msgid "ambient light" -#~ msgstr "luz ambiente" - -#~ msgid "temperature" -#~ msgstr "temperatura" - -#~ msgid "distance" -#~ msgstr "distancia" - -#~ msgid "tilt" -#~ msgstr "inclinación" - -#~ msgid "magnetic induction" -#~ msgstr "campo magnético" - -#~ msgid "vibration" -#~ msgstr "vibración" - -#~ msgid "Butia Robot" -#~ msgstr "Robot Butiá" - -#~ msgid "refresh Butia" -#~ msgstr "refrescar Butiá" - -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "actualiza el estado de la paleta y de los bloques Butiá" - -#~ msgid "battery charge Butia" -#~ msgstr "carga de batería Butiá" - -#~ 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" - -#~ msgid "speed Butia" -#~ msgstr "velocidad Butiá" - -#~ msgid "set the speed of the Butia motors" -#~ msgstr "establece la velocidad de los motores del Butiá" - -#~ msgid "the speed must be a value between 0 and 1023" -#~ msgstr "la velocidad debe ser un valor entre 0 y 1023" - -#~ msgid "forward Butia" -#~ msgstr "adelante Butiá" - -#~ msgid "move the Butia robot forward" -#~ msgstr "mueve el robot Butiá hacia adelante" - -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "mueve el robot Butiá hacia adelante una distancia predefinida" - -#~ msgid "left Butia" -#~ msgstr "izquierda Butiá" - -#~ msgid "turn the Butia robot at left" -#~ msgstr "gira el robot Butiá hacia la izquierda" - -#~ msgid "backward Butia" -#~ msgstr "atrás Butiá" - -#~ msgid "move the Butia robot backward" -#~ msgstr "mueve el robot Butiá hacia atrás" - -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "mueve el robot Butiá hacia atrás una distancia predefinida" - -#~ msgid "right Butia" -#~ msgstr "derecha Butiá" - -#~ msgid "turn the Butia robot at right" -#~ msgstr "gira el robot Butiá hacia la derecha" - -#~ msgid "turn Butia" -#~ msgstr "girar Butiá" - -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "gira el robot Butiá x grados" - -#~ msgid "stop Butia" -#~ msgstr "detener Butiá" - -#~ msgid "stop the Butia robot" -#~ msgstr "detiene al robot Butiá" - -#~ msgid "Butia" -#~ msgstr "Butiá" - -#~ msgid "Error importing Pygame. This plugin require Pygame 1.9" -#~ msgstr "Error importando Pygame. Este plugin requiere Pygame 1.9" - -#~ msgid "Error on initialization of the camera" -#~ msgstr "Error en la inicialización de la cámara" - -#~ msgid "No camera was found" -#~ msgstr "No se encontraró cámara" - -#~ msgid "Error stopping camera" -#~ msgstr "Error deteniendo cámara" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "elige la tortuga a ordenar" -#~ msgid "Error starting camera" -#~ msgstr "Error iniciando cámara" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "derecha x" -#~ msgid "Error in get mask" -#~ msgstr "Error en obtener máscara" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "fija el color del texto dibujado por la tortuga" -#~ msgid "FollowMe" -#~ msgstr "FollowMe" +#: 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 "refresh FollowMe" -#~ msgstr "refrescar FollowMe" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "El plugin no puede ser instalado." -#~ msgid "Search for a connected camera." -#~ msgstr "Busca una cámara conectada." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "teclado" -#~ msgid "calibration" -#~ msgstr "calibración" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arco" -#~ msgid "store a personalized calibration" -#~ msgstr "almacena una calibración personalizada" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radio" -#~ msgid "return a personalized calibration" -#~ msgstr "devuelve una calibración personalizada" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Coordenadas polares" -#~ msgid "follow" -#~ msgstr "seguir" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "fijar tono" -#~ msgid "follow a color or calibration" -#~ msgstr "seguir un color o calibración" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "operador Y lógico" -#~ 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." +#: 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 "minimum pixels" -#~ msgstr "mínimo de pixeles" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "paleta" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "define el mínimo número de píxeles a seguir" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Ejecutar" -#~ msgid "threshold" -#~ msgstr "umbral" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "mostrar pila" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "define el umbral para un color RGB" +#: TurtleArt/tabasics.py:217 +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 "camera mode" -#~ msgstr "modo de cámara" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "seleccionar paleta" -#~ 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" +#: 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 "get brightness" -#~ msgstr "obtener brillo" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Título:" -#~ msgid "get the brightness of the ambient light" -#~ msgstr "obtiene el brillo de la luz ambiente" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Paleta de bloques medios" -#~ msgid "average color" -#~ msgstr "color promedio" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Restaura los bloques de la papelera" -#~ 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" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Paleta de bloques de variables" -#~ msgid "x position" -#~ msgstr "posición x" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "utilizado como entrada numérica en los operadores matemáticos" -#~ msgid "return x position" -#~ msgstr "retorna la posición x" +#: 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 "y position" -#~ msgstr "posición y" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Servidor" -#~ msgid "return y position" -#~ msgstr "retorna la posición y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "presentación 2x2" -#~ msgid "pixels" -#~ msgstr "píxeles" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variable 1 (valor numérico)" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "devuelve el número de píxeles de la mancha mas grande" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Vecindario" -#~ 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:567 +msgid "adds two alphanumeric inputs" +msgstr "suma dos entradas alfanuméricas" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "establece el modo de color de la cámara a YUV" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "igual" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "establece el modo de color de la cámara a HSV" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "sino" -#~ msgid "empty calibration" -#~ msgstr "calibración vacía" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "no le gusta" -#~ msgid "error in string conversion" -#~ msgstr "error en la conversión de la cadena de texto" +#: turtleblocks.py:447 +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 "SumBot" -#~ msgstr "SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "restaura bloques ocultos" -#~ msgid "speed SumBot" -#~ msgstr "velocidad SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "cargar" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "setea la velocidad del SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "detiene el video o audio" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "setea la velocidad por defecto para los comandos de movimiento" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "La tortuga no dibujará cuando se mueva." -#~ msgid "forward SumBot" -#~ msgstr "adelante SumBot" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "sacar" -#~ msgid "move SumBot forward" -#~ msgstr "mueve el SumBot hacia adelante" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "tamaño" -#~ msgid "backward SumBot" -#~ msgstr "atrás SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "caparazón de la tortuga" -#~ msgid "move SumBot backward" -#~ msgstr "mueve el SumBot hacia atrás" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"reproduce una sinusoide desde frecuencia, amplitud y duración (en segundos)" -#~ msgid "stop SumBot" -#~ msgstr "detener SumBot" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "stop the SumBot" -#~ msgstr "detiene el SumBot" +# decir +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "hablar" -#~ msgid "left SumBot" -#~ msgstr "izquierda SumBot" +#: 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 left the SumBot" -#~ msgstr "gira el SumBot hacia la izquierda" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "mueve la tortuga a lo largo de un arco" -#~ msgid "right SumBot" -#~ msgstr "derecha SumBot" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "hacer una vuelta en U" -#~ msgid "turn right the SumBot" -#~ msgstr "gira el SumBot hacia la derecha" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "operador lógico de igualdad" -#~ msgid "angle to center" -#~ msgstr "ángulo al centro" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Paleta de colores de la pluma" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "obtiene el ángulo al centro del dohyo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "pausa el video o audio" -#~ msgid "angle to Enemy" -#~ msgstr "ángulo al Enemigo" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "guarda valor numérico en la variable 1" -#~ msgid "get the angle to the Enemy" -#~ msgstr "obtiene el ángulo al Enemigo" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "guarda valor numérico en la variable 2" -#~ msgid "x coor. SumBot" -#~ msgstr "coor. x SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "vestir a la tortuga con un caparazón a medida" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "obtiene la coordenada x del Sumbot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "botón presionado" -#~ msgid "y coor. SumBot" -#~ msgstr "coor. y SumBot" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "mueve la tortuga hacia atrás" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "obtiene la coordenada y del Sumbot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor del limite superior de la pantalla" -#~ msgid "x coor. Enemy" -#~ msgstr "coor. x Enemigo" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Mostrar bloques" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "obtiene la coordenada x del Enemigo" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "reproducir" -#~ msgid "y coor. Enemy" -#~ msgstr "coor. y Enemigo" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "guardar" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "obtiene la coordenada y del Enemigo" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Colores" -#~ msgid "rotation SumBot" -#~ msgstr "rotación SumBot" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "fija el ancho de la línea que la tortuga dibuja" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "obtiene la rotación del SumBot" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Abrir" -#~ msgid "rotation Enemy" -#~ msgstr "rotación Enemigo" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientación" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "obtiene la rotación del Enemigo" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "coory" -#~ msgid "distance to center" -#~ msgstr "distancia al centro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +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 "get the distance to the center of the dohyo" -#~ msgstr "obtiene la distancia al centro del dohyo" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "si" -#~ msgid "distance to Enemy" -#~ msgstr "distancia al Enemigo" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +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 "get the distance to the Enemy" -#~ msgstr "obtiene la distancia al Enemigo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "update information" -#~ msgstr "actualizar información" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Parar" -#~ msgid "update information from the server" -#~ msgstr "actualiza la información desde el servidor" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "acción 2" -#~ msgid "Palette of physics blocks" -#~ msgstr "Paleta de bloques de física" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "acción 1" -#~ msgid "start polygon" -#~ msgstr "comenzar polígono" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "finalizar relleno" -#~ 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." +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copiar" -#~ msgid "add point" -#~ msgstr "agregar punto" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Pegar" -#~ 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/talogo.py:511 +msgid "did not output to" +msgstr "no pudo escribir en" -# finalizar polígono -#~ msgid "end polygon" -#~ msgstr "terminar polígono" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Actividades" -#~ msgid "Define a new polygon." -#~ msgstr "Define un nuevo polígono." +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Enviar a la Web" -#~ msgid "end filled polygon" -#~ msgstr "termina polígono relleno" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "vaciar pila" -#~ msgid "Not a simple polygon" -#~ msgstr "No es un polígono simple" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +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 "Define a new filled polygon." -#~ msgstr "Define un nuevo polígono relleno." +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Limpiar" -#~ msgid "triangle" -#~ msgstr "triángulo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Paleta de plantillas de presentaciones" -#~ msgid "base" -#~ msgstr "base" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "ángulo" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Agrega un objeto triángulo al proyecto." +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identidad" -#~ msgid "circle" -#~ msgstr "círculo" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Guardar/Cargar" -#~ msgid "Add a circle object to the project." -#~ msgstr "Agrega un objeto círculo al proyecto." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "arriba y" -#~ msgid "rectangle" -#~ msgstr "rectángulo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Agrega un objeto rectángulo al proyecto." +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Herramientas" -#~ msgid "reset" -#~ msgstr "resetear" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Puerto" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Resetea el proyecto; limpia la lista de objetos." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "comentar" -#~ msgid "motor" -#~ msgstr "motor" +#: TurtleArt/tabasics.py:578 +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 "torque" -#~ msgstr "torque" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "pausar medios" -#~ msgid "speed" -#~ msgstr "velocidad" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "empujar el valor rgb de destino a la pila" -#~ 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:381 +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)" -# puede ser: alfiler, perno, clavija, clavo - En Physics es: Tachuela (asi que por coherencia, usé Tachuela) -#~ msgid "pin" -#~ msgstr "tachuela" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesiana" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Sujeta un objeto para que no se caiga." +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "limpia la pantalla y restaura la tortuga" -# enPhysics es unión... podría ser articulación -#~ msgid "joint" -#~ msgstr "unión" +#: 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 "" -#~ "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)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "muestra el color que \"ve\" la tortuga" -#~ msgid "save as Physics activity" -#~ msgstr "guardar como Actividad Física" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "invocar la pila de acción 1" -#~ 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:123 +msgid "Palette of turtle commands" +msgstr "Paleta de comandos de la tortuga" -#~ msgid "gear" -#~ msgstr "círculo" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "repetir para siempre" -#~ msgid "Add a gear object to the project." -#~ msgstr "Agrega un objeto engranaje al proyecto." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "mostrar alineados" -#~ msgid "density" -#~ msgstr "densidad" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "¿Desea reinstalar %s?" -#~ 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)." +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Cargar proyecto" -#~ msgid "friction" -#~ msgstr "fricción" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Proyecto" -#~ 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)." +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Depurar" -# podría ser elasticidad? -#~ msgid "bounciness" -#~ msgstr "restitución" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Deshabilitar ayuda flotante" -# 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:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "dynamic" -#~ msgstr "dinámico" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Contraseña" -#~ 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:819 +msgid "vertical space" +msgstr "espacio vertical" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Paleta de bloques WeDo" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Reinicie TortugArte para poder usar el plugin." -#~ msgid "WeDo" -#~ msgstr "WeDo" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"completa el polígono relleno (utilizado con comenzar relleno del bloque)" -#~ msgid "set current WeDo device" -#~ msgstr "setea el dispositivo WeDo actual" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Compartir" -#~ msgid "number of WeDo devices" -#~ msgstr "número de dispositivos WeDo" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "menor que" -#~ 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:636 +msgid "square root" +msgstr "raiz cuadrada" -#~ msgid "distance sensor output" -#~ msgstr "salida del sensor distancia" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Escalar coordenadas" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "mostrar bloques" -#~ msgid "returns the current value of Motor A" -#~ msgstr "devuelve el valor actual del Motor A" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Salir" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "campo de descripción del Diario de Sugar" -#~ msgid "returns the current value of Motor B" -#~ msgstr "devuelve el valor actual del Motor B" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "establecer gris" -#~ msgid "set the value for Motor A" -#~ msgstr "setea el valor del Motor A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "presentación con lista de viñetas" -#~ msgid "set the value for Motor B" -#~ msgstr "setea el valor del Motor B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "duración" -#~ msgid "WeDo is unavailable" -#~ msgstr "WeDo no está disponible" +#: turtleblocks.py:354 +msgid "New" +msgstr "Nuevo" -#, python-format -#~ msgid "WeDo %d is unavailable; defaulting to 1" -#~ msgstr "Wedo %d no está disponible; usando por defecto el 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "coloca un comentario en tu código" -#, python-format -#~ msgid "%(device)s is unavailable on WeDo %(wedo_number)d" -#~ msgstr "%(device)s no está disponible en el WeDo %(wedo_number)d" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "leer pixel" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Paleta de bloques LEGO NXT de motores" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "escala" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Paleta de bloques LEGO NXT de sensores" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "debajo" -#~ msgid "touch" -#~ msgstr "botón" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "morado" -#~ msgid "ultrasonic" -#~ msgstr "distancia" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Escalar coordenadas hacia abajo" -#~ msgid "light" -#~ msgstr "luz" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "clic para abrir" -#~ msgid "grey" -#~ msgstr "gris" +#: 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 "Please check the connection with the brick" -#~ msgstr "Por favor chequee la conexión con el brick" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Configuración" -#, 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" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Descripción:" -#, 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/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "diario" -#~ 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:999 +msgid "empty trash" +msgstr "vaciar papelera" -#, 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:388 +msgid "Turtle will draw when moved." +msgstr "La tortuga dibujará cuando se mueva." -#~ 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/tautils.py:196 +msgid "Load..." +msgstr "Cargar..." -#, python-format -#~ msgid "NXT found %s bricks" -#~ msgstr "NXT encontró %s bricks" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "objeto de audio del Diario de Sugar" -#~ msgid "NXT not found" -#~ msgstr "NXT no encontrado" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Parar tortuga" -#, python-format -#, python-format, -#~ msgid "Brick number %s was not found" -#~ msgstr "El brick número %s no fue encontrado" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Tortuga" -#~ msgid "refresh NXT" -#~ msgstr "refrescar NXT" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "cambia la orientación de la paleta de bloques" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Busca por un brick NXT conectado." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "guardar en" -#~ msgid "NXT" -#~ msgstr "NXT" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Ocultar bloques" -#~ msgid "set current NXT device" -#~ msgstr "establece el dispositivo NXT actual" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Cargar bloque Python" -#~ msgid "number of NXT devices" -#~ msgstr "número de dispositivos NXT" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "sumar" -#~ msgid "brick name" -#~ msgstr "nombre del brick" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "o" -#~ msgid "Get the name of a brick." -#~ msgstr "Obtiene el nombre del brick." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "plantilla de presentación: lista de viñetas" -#~ msgid "play tone" -#~ msgstr "reproducir tono" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "operador de identidad usado para extender bloques" -#~ msgid "frequency" -#~ msgstr "frecuencia" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Empequeñecer bloques" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Reproduce un tono a cierta frecuencia por un determinado tiempo." +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "fija el tamaño del texto dibujado por la tortuga" -#~ msgid "" -#~ "turn motor\n" -#~ "\n" -#~ msgstr "" -#~ "girar motor\n" -#~ "\n" +#: TurtleArt/tabasics.py:248 +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 "port" -#~ msgstr "puerto" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "imagen" -#~ msgid "power" -#~ msgstr "potencia" +#: TurtleArt/tabasics.py:650 +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 "rotations" -#~ msgstr "rotaciones" +#: TurtleArt/tabasics.py:349 +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 "turn a motor" -#~ msgstr "gira un motor" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Mostrar paleta" -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "" -#~ "sincronizar\n" -#~ "\n" -#~ "motores" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "guarda una imagen en el Diario de Azúcar" -#~ msgid "steering" -#~ msgstr "dirección" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Guardar instantánea" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "sincroniza dos motores conectados en el PUERTO B y PUERTO C" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "empezar" -#~ msgid "PORT A" -#~ msgstr "PUERTO A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "devuelve Verdadero si la pila está vacía" -#~ msgid "PORT A of the brick" -#~ msgstr "PUERTO A del brick" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "mueve la tortuga hacia adelante" -#~ msgid "PORT B" -#~ msgstr "PUERTO B" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "adelante" -#~ msgid "PORT B of the brick" -#~ msgstr "PUERTO B del brick" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "mi caja" -#~ msgid "PORT C" -#~ msgstr "PUERTO C" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Cuenta" -#~ msgid "PORT C of the brick" -#~ msgstr "PUERTO C del brick" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Selecciona bloques para compartir" -#~ msgid "start motor" -#~ msgstr "iniciar motor" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "atrás" -#~ msgid "Run a motor forever." -#~ msgstr "Girar un motor por siempre." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "fijar la escala de medios" -#~ msgid "brake motor" -#~ msgstr "frenar motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "mantiene el valor actual de la escala" -#~ msgid "Stop a specified motor." -#~ msgstr "Frena un motor específico." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "presentación 1x1" -#~ msgid "reset motor" -#~ msgstr "reiniciar motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "presentación 1x2" -#~ msgid "Reset the motor counter." -#~ msgstr "Reinicia el contador del motor." +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "cima de la pila de acción nombrable" -#~ msgid "motor position" -#~ msgstr "posición del motor" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "guarda valor numérico en la variable nombrada" -#~ msgid "Get the motor position." -#~ msgstr "Obtiene la posición del motor." +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "operador O lógico" -#~ msgid "PORT 1" -#~ msgstr "PUERTO 1" +#: 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 "PORT 1 of the brick" -#~ msgstr "PUERTO 1 del brick" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "repite el número especificado de veces" -#~ msgid "read" -#~ msgstr "leer" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Guardar..." -#~ msgid "sensor" -#~ msgstr "sensor" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "invocar la pila de acción 2" -#~ msgid "Read sensor output." -#~ msgstr "Lee la salida del sensor." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "fijar xy" -#~ msgid "PORT 2" -#~ msgstr "PUERTO 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "título y" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PUERTO 2 del brick" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "título x" -#~ msgid "light sensor" -#~ msgstr "sensor de luz" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "rellenar pantalla" -#~ msgid "grey sensor" -#~ msgstr "sensor de grises" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "otros" -#~ msgid "PORT 3" -#~ msgstr "PUERTO 3" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Guardar como" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PUERTO 3 del brick" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "fijar xy" -#~ msgid "touch sensor" -#~ msgstr "sensor táctil" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "basura" -#~ msgid "distance sensor" -#~ msgstr "sensor de distancia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polar" -#~ msgid "PORT 4" -#~ msgstr "PUERTO 4" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repetir" -#~ msgid "PORT 4 of the brick" -#~ msgstr "PUERTO 4 del brick" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "esperar hasta completar el audio o vídeo" -#~ msgid "sound sensor" -#~ msgstr "sensor de sonido" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Guardar como imagen" -#~ msgid "color sensor" -#~ msgstr "sensor de color" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Editar" -#~ msgid "set light" -#~ msgstr "prender luz" +#: 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 "Set color sensor light." -#~ msgstr "Prende la luz del sensor de color." +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "primero de la pila de Acción 2" -#~ msgid "battery level" -#~ msgstr "nivel de batería" +#: TurtleArt/tabasics.py:604 +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 "Get battery level of the brick" -#~ msgstr "Obtiene el nivel de batería del brick" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "HIGH" -#~ msgstr "ALTO" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +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 "LOW" -#~ msgstr "BAJO" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "comenzar a rellenar" -#~ msgid "INPUT" -#~ msgstr "ENTRADA" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "contiene los resultados del bloque de consulta de teclado como ASCII" -#~ msgid "OUTPUT" -#~ msgstr "SALIDA" +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# es.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "empujar" -#~ msgid "PWM" -#~ msgstr "PWM" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +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 "SERVO" -#~ msgstr "SERVO" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "restaurar todo" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ERROR: Chequee la Arduino y el número de puerto." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "hola" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ERROR: El valor debe ser un número entre 0 y 255." +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "TortuBlocks" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERROR: El valor debe ser ALTO o BAJO." +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" +"Por favor, pulsa el Botón Detener antes de hacer cambios a tu programa " +"TortuBlocks" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ERROR: El modo debe ser ENTRADA, SALIDA, PWM o SERVO." +#: TurtleArtActivity.py:766 +#, fuzzy +msgid "Palettes" +msgstr "paleta" -#~ msgid "refresh Arduino" -#~ msgstr "refrescar Arduino" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Muro de Facebook" -#~ msgid "Search for connected Arduinos." -#~ msgstr "Busca por Arduinos conectadas." +#: 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 "Arduino" -#~ msgstr "Arduino" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Español" -#~ msgid "set current Arduino board" -#~ msgstr "establece la placa Arduino actual" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "Inglés" -#~ msgid "number of Arduinos" -#~ msgstr "número de Arduinos" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Lo siento, no puedo entender lo que estás preguntando." -#~ msgid "number of Arduino boards" -#~ msgstr "número de placas" +#: pysamples/brain.py:100 +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 "Arduino name" -#~ msgstr "nombre de Arduino" +#: turtleblocks.py:407 +msgid "About..." +msgstr "Acerca..." -#~ msgid "Get the name of an Arduino." -#~ msgstr "Obtiene el nombre de la Arduino." +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "ajusta la intensidad del LED entre 0 y 255" -#~ msgid "pin mode" -#~ msgstr "modo del pin" +#~ msgid "returns the ambient light level" +#~ msgstr "devuelve el nivel de luz en el ambiente" -#~ msgid "mode" -#~ msgstr "modo" +#~ msgid "returns the ambient temperature" +#~ msgstr "devuelve la temperatura ambiente" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Selecciona la función del pin (ENTRADA, SALIDA, PWM, SERVO)." +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "devuelve 0 o 1 dependiendo de la inclinación del sensor" -#~ msgid "analog write" -#~ msgstr "escribir analógico" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "oscila entre 0 y 1 dependiendo de la vibración" -#~ msgid "Write analog value in specified port." -#~ msgstr "Escribe un valor analógico en el puerto especificado." +#~ msgid "grayscale" +#~ msgstr "escala de gris" -#~ msgid "analog read" -#~ msgstr "leer analógico" +#~ msgid "ambient light" +#~ msgstr "luz ambiente" #~ 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." +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" #~ 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." - -#~ msgid "digital write" -#~ msgstr "escribir digital" - -#~ msgid "Write digital value to specified port." -#~ msgstr "Escribe un valor digital en un puerto específico." - -#~ msgid "digital read" -#~ msgstr "leer digital" - -#~ msgid "Read value from digital port." -#~ msgstr "Lee un valor desde un puerto digital." - -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Setea el valor ALTO en el puerto digital." - -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Configura el puerto de la Arduino como entrada digital." - -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Configura el puerto de la Arduino para manejar un servo." - -#~ msgid "Set LOW value for digital port." -#~ msgstr "Setea el valor BAJO en el puerto digital." - -#~ 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 "" -#~ "Configura el puerto de la Arduino para PWM modulación por ancho de pulsos)." - -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Paleta de bloques de Expeyes" - -#~ msgid "set PVS" -#~ msgstr "establecer PVS" - -#~ msgid "set programmable voltage output" -#~ msgstr "establece el voltaje de salida programable" +#~ "TortuBlocks con varios plugin de robótica: Butiá, Lego NxT, WeDo, FollowMe" -#~ msgid "set SQR1 voltage" -#~ msgstr "establecer voltaje SQR1" - -#~ msgid "set square wave 1 voltage output" -#~ msgstr "establece una onda cuadrada en el voltaje de salida" - -#~ msgid "set SQR2 voltage" -#~ msgstr "establecer voltaje SQR2" +#~ msgid "magnetic induction" +#~ msgstr "campo magnético" -#~ msgid "set square wave 2 voltage output" -#~ msgstr "establece una onda cuadrada en el voltaje de salida" +#~ msgid "vibration" +#~ msgstr "vibración" -#~ msgid "set OD1" -#~ msgstr "establecer OD1" +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "mueve el robot Butiá hacia adelante una distancia predefinida" -#~ 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 "move the Butia robot backward a predefined distance" +#~ msgstr "mueve el robot Butiá hacia atrás una distancia predefinida" -#~ msgid "IN1 level" -#~ msgstr "nivel IN1" +#~ msgid "turn Butia" +#~ msgstr "girar Butiá" -#~ 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" +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "gira el robot Butiá x grados" -#~ msgid "IN2 level" -#~ msgstr "nivel IN2" +#~ msgid "moves the Butia at specify speed motors" +#~ msgstr "mueve los motores del Butiá a la velocidad especificada" -#~ 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" +#~ msgid "grey" +#~ msgstr "gris" -#~ msgid "SEN level" -#~ msgstr "nivel SEN" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "devuelve el nivel de luz de un objeto como un número entre 0 y 1023" -#~ msgid "" -#~ "returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " -#~ "voltage level <= 2.5 volts" +#~ msgid "returns the ambient light level as a number between 0 and 1023" #~ msgstr "" -#~ "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" +#~ "devuelve el nivel de luz en el ambiente como un número entre 0 y 1023" -#~ msgid "samples" -#~ msgstr "muestras" - -#~ msgid "interval" -#~ msgstr "intervalo" +#~ 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 "" -#~ "capture multiple samples from input at interval (MS); results pushed to FIFO" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgstr "" -#~ "captura múltiples muestras de la entrada en intervalos (MS); los resultados " -#~ "son puestos en FIFO" - -#~ msgid "A1" -#~ msgstr "A1" - -#~ msgid "read analog input 1 voltage" -#~ msgstr "lee el voltaje de la entrada analógica 1" - -#~ msgid "A2" -#~ msgstr "A2" - -#~ msgid "read analog input 2 voltage" -#~ msgstr "lee el voltaje de la entrada analógica 2" - -#~ msgid "IN1" -#~ msgstr "IN1" - -#~ msgid "read input 1 voltage" -#~ msgstr "lee el voltaje de la entrada 1" - -#~ msgid "IN2" -#~ msgstr "IN2" - -#~ msgid "read input 2 voltage" -#~ msgstr "lee el voltaje de la entrada 2" - -#~ msgid "SEN" -#~ msgstr "SEN" - -#~ msgid "read analog sensor input voltage" -#~ msgstr "lee el voltaje de entrada del sensor analógico" - -#~ msgid "SQR1" -#~ msgstr "SQR1" - -#~ msgid "read square wave 1 voltage" -#~ msgstr "lee el voltaje de la onda cuadrada 1" - -#~ msgid "SQR2" -#~ msgstr "SQR2" +#~ "devuelve la distancia del objeto en frente al sensor como un número entre " +#~ "0 y 255" #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" #~ "setea la velocidad de los motores del Butiá como un valor entre 0 y 1023 " #~ "pasado por argumento" +#~ msgid "the speed must be a value between 0 and 1023" +#~ msgstr "la velocidad debe ser un valor entre 0 y 1023" + +#~ msgid "grey sensor" +#~ msgstr "sensor de grises" + #~ msgid "Error in stop camera" #~ msgstr "Error deteniendo la cámara" @@ -3196,7 +4055,8 @@ msgstr "¿Guardar el proyecto?" #~ 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" @@ -3305,7 +4165,8 @@ msgstr "¿Guardar el proyecto?" #~ 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)" @@ -3384,15 +4245,15 @@ msgstr "¿Guardar el proyecto?" #~ 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)" diff --git a/po/fa.po b/po/fa.po index 0bd0096..80f4876 100644 --- a/po/fa.po +++ b/po/fa.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# fa.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fa.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fa.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -158,12 +1630,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -623,10 +2089,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1103,11 +2565,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,13 +2591,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1167,15 +2617,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1441,10 +2882,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1693,10 +3130,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1709,10 +3142,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/fa_AF.po b/po/fa_AF.po index 6cc0346..8e165d8 100644 --- a/po/fa_AF.po +++ b/po/fa_AF.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fa_AF.po (Fructose) #-#-#-#-#\n" "Project-Id-Version: Fructose\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1484 @@ msgstr "" "X-Generator: Pootle 1.2.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: 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 "مقاومت" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "بلندی" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "عرض" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x را تغییر بده" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "رنگ" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (Fructose) #-#-#-#-#\n" +"راست" + +#: plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "صوت" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +#, fuzzy +msgid "sensor" +msgstr "" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (Fructose) #-#-#-#-#\n" +"گیرنده ها" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (Fructose) #-#-#-#-#\n" +"به پیمانه" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fa_AF.po (Fructose) #-#-#-#-#\n" +"نمونه ها" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1599,6 @@ msgstr "" msgid "set xy" msgstr "xy را تعیین کن" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x را تغییر بده" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1654,6 @@ msgstr "" msgid "fill screen" msgstr "صفحه را پر کن" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "رنگ" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -626,10 +2115,6 @@ msgstr "" msgid "box" msgstr "جعبه" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1122,11 +2607,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "صوت" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1153,13 +2633,6 @@ msgstr "زیروبمی صدا" msgid "microphone input pitch" msgstr "" -#: 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 "مقاومت" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1186,15 +2659,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1463,10 +2927,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1720,10 +3180,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "عرض" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1736,10 +3192,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "بلندی" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1916,22 +3368,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "راست" - -#, fuzzy -#~ msgid "sensor" -#~ msgstr "گیرنده ها" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "به پیمانه" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "نمونه ها" - -#, fuzzy #~ msgid "Save as HTML" #~ msgstr "بحیث HTML ذخیره کن" diff --git a/po/ff.po b/po/ff.po index b58c57e..71732fc 100644 --- a/po/ff.po +++ b/po/ff.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ff.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ff.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ff.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ff.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/fi.po b/po/fi.po index fa010f9..1518e06 100644 --- a/po/fi.po +++ b/po/fi.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1695 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "väri" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "oikea" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "mod" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Esimerkit" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "laatikko 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "laatikko 1" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "otsikko" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "kynä alas" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "odota" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "laatikko" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "aseta kynän koko" + +# +#: TurtleArt/tabasics.py:213 +#, fuzzy +msgid "set heading" +msgstr "seth" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "aseta kynän koko" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "sävy" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "kynä ylös" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "sitten" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ei" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "Kilpikonna" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "säilytä laatikossa 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "Säilytä laatikossa 2" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +#, fuzzy +msgid "Save as Logo" +msgstr "tallenna logo" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "numero" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "aseta sävy" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "ja" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "aseta väri" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "ikuisesti" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "puhdas" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +#, fuzzy +msgid "Fullscreen" +msgstr "täytä näyttö" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "sattumanvarainen" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "takaisin" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x koord" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "näppäimistö" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "kaari" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "säde" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "aseta sävy" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "muuten" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "kynän koko" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "väri" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y koord" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "jos" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Puhdas" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "kulma" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "vasen" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Kilpikonnataide" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Kilpikonna" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "tai" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "käynnistä" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "eteenpäin" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "takaisin" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "aseta xy" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "täytä näyttö" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "aseta xy" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "toista" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -32,37 +1746,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "eteenpäin" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "takaisin" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "puhdas" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "vasen" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -76,76 +1771,31 @@ msgstr "oikea" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "kaari" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "kulma" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "säde" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "aseta xy" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -#, fuzzy -msgid "set heading" -msgstr "seth" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x koord" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y koord" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "otsikko" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -156,23 +1806,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "täytä näyttö" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "väri" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "sävy" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -183,18 +1816,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "aseta väri" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "aseta sävy" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -219,26 +1844,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "kynä ylös" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "kynä alas" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "aseta kynän koko" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -259,10 +1872,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "kynän koko" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -303,11 +1912,6 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "takaisin" - #: TurtleArt/tabasics.py:460 msgid "set text color" msgstr "" @@ -316,11 +1920,6 @@ msgstr "" msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "aseta kynän koko" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -390,26 +1989,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "sattumanvarainen" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "numero" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -438,26 +2021,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ei" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "ja" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "tai" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -467,38 +2038,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "odota" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "ikuisesti" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "toista" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "jos" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "sitten" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -507,10 +2058,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "muuten" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -547,10 +2094,6 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "käynnistä" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" @@ -587,34 +2130,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "säilytä laatikossa 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "Säilytä laatikossa 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "laatikko 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "laatikko 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -623,14 +2150,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "laatikko" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -789,20 +2308,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Kilpikonnataide" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -#, fuzzy -msgid "Save as Logo" -msgstr "tallenna logo" - #: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 #: TurtleArtActivity.py:850 turtleblocks.py:358 msgid "Save as image" @@ -873,12 +2382,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -#, fuzzy -msgid "Fullscreen" -msgstr "täytä näyttö" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -904,10 +2407,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Puhdas" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" @@ -1035,11 +2534,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "väri" - #: 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 @@ -1110,11 +2604,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1141,13 +2630,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1174,15 +2656,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1289,11 +2762,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "aseta sävy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1425,10 +2893,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "näppäimistö" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1449,10 +2913,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1582,12 +3042,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "Kilpikonna" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1618,11 +3072,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "aseta xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1703,10 +3152,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1719,10 +3164,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1880,10 +3321,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Kilpikonna" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1896,18 +3333,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "oikea" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Esimerkit" - #~ msgid "Save as HTML" #~ msgstr "tallenna HTML-muodossa" diff --git a/po/fil.po b/po/fil.po index c8f58bd..88f68b3 100644 --- a/po/fil.po +++ b/po/fil.po @@ -1,13 +1,50 @@ +# #-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# fil.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,6 +59,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -100,14 +1592,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -162,12 +1646,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -627,10 +2105,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1107,11 +2581,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1138,13 +2607,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1171,15 +2633,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1445,10 +2898,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1697,10 +3146,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1713,10 +3158,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/fr.po b/po/fr.po index 30dbb3a..41ffb23 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,8 +2,37 @@ # 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 "" +"#-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 07:34+0200\n" +"Last-Translator: samy boutayeb \n" +"Language-Team: LANGUAGE \n" +"Language: fr\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" +"#-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-03 07:34+0200\n" +"Last-Translator: samy boutayeb \n" +"Language-Team: LANGUAGE \n" +"Language: fr\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" +"#-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,511 +47,1809 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "BlocsTortue" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "" -"Une tortue inspirée par le langage Logo, qui dessine des dessins colorés à " -"l'aide de blocs de programmation visuelle emboîtables." +msgid "turtleart-extras (master)" +msgstr "turtleart-extras (master)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palette de commandes Tortue" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "BlocsTortue" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "avance" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "ArtTortue" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "avancer la tortue" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "ArtTortue Mini" + +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "Confusion tortue" + +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Sélectionner un défi" + +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Tortues amazoniennes" + +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Palette de pesos mexicains" + +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Palette de pesos colombiens" + +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Palette de francs rwandais" + +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "Palette de dollars américains" + +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Palette de dollars australiens" + +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Palette de guaranis du Paraguay" + +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Palette de nouveaux sols péruviens" + +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Palette de pesos uruguayens" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "TurtleBots" + +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "BlocsTortue avec les modules Butia, Lego NxT, WeDo, Arduino, FollowMe" + +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "ERREUR : la vitesse doit être une valeur entre 0 et 1023" + +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "ERREUR : La broche doit être réglée entre 1 et 8" + +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "ERREUR : La valeur doit être 0 ou 1. BAS ou HAUT" + +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "ERREUR : Le mode doit être ENTRÉE ou SORTIE." + +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "Allume et éteint le voyant : 0 pour allumé ; 1 pour éteint" + +#: taextras.py:79 +msgid "returns the gray level" +msgstr "renvoie le niveau de gris" + +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "renvoie 1 lorsque le bouton est actionné et 0 dans le cas contraire" + +#: taextras.py:81 +msgid "returns the light level" +msgstr "renvoie le niveau de luminosité" + +#: taextras.py:82 +msgid "returns the temperature" +msgstr "renvoie la température" + +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "renvoie la distance depuis l'objet en face du capteur" + +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"retourne 1 lorsque les capteurs détectent un champ magnétique, 0 dans le cas " +"contraire" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "recule" +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "renvoie la valeur de la résistance" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "reculer la tortue" +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "renvoie la valeur de la tension" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "efface" +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "effacer l'écran et réinitialiser la tortue" +#: taextras.py:88 +msgid "LED" +msgstr "DEL" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "gauche" +#: taextras.py:89 +msgid "button" +msgstr "bouton" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "pivoter la tortue dans le sens anti-horaire (angle en degrés)" +#: taextras.py:90 taextras.py:358 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "gris" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "droite" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "lumière" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "pivoter la tortue dans le sens horaire (angle en degrés)" +#: taextras.py:92 +msgid "temperature" +msgstr "température" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "distance" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "angle" +#: taextras.py:94 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 "résistance" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "rayon" +#: taextras.py:95 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 "tension" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "déplacer la tortue le long d'un arc" +#: taextras.py:96 +msgid "Butia Robot" +msgstr "Robot Butia" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "fixe xy" +#: taextras.py:97 +msgid "refresh Butia" +msgstr "rafraîchir Butia" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "réinitialiser la palette et les blocs Butia" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "charge de la batterie Butia" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:101 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"returns the battery charge in volts. If no motors present, it returns 255" msgstr "" -"déplace la tortue sur la position xcor, ycor; (0, 0) correspond au centre de " -"l'écran." - -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" - -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "fixe le cap de la tortue (0 est orienté sur le haut de l'écran)" - -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "coord x" +"retourne la charge de la batterie en volts. S'il n'y a pas de moteur, " +"retourne 255" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "vitesse Butia" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "définit la vitesse des moteurs de Butia" + +#: taextras.py:105 +msgid "move Butia" +msgstr "déplace Butia" + +#: taextras.py:106 TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "gauche" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"maintient la valeur de la coordonnée x courante de la tortue (utilisable à " -"la place d'un bloc numérique)" +#: taextras.py:107 TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "droite" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "coord y" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "déplace les moteurs de Butia à la vitesse spécifiée" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "arrête Butia" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "arrêter le robot Butia" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "faire avancer Butia" + +#: taextras.py:113 +msgid "move the Butia robot forward" +msgstr "fait avancer le robot Butia" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "tourne Butia vers la gauche" + +#: taextras.py:116 +msgid "turn the Butia robot at left" +msgstr "tourner le robot Butia vers la droite" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "tourne Butia vers la droite" + +#: taextras.py:119 +msgid "turn the Butia robot at right" +msgstr "tourner le robot Butia vers la droite" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "faire reculer Butia" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "fait reculer le robot Butia" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "Blocs supplémentaires robot Butia" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "mode broche hack" + +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "broche" + +#: taextras.py:126 taextras.py:457 +msgid "mode" +msgstr "mode" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Choisir la fonction de la broche (ENTRÉE, SORTIE)." + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "écrire broche hack Butia" + +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "valeur" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"maintient la valeur de la coordonnée y courante de la tortue (utilisable à " -"la place d'un bloc numérique)" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "fixe une broche hack à 0 ou 1" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "cap" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "lire broche hack Butia" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "" -"maintient la valeur du cap courant de la tortue (utilisable à la place d'un " -"bloc numérique)" +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "lire la valeur d'une broche hack" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palette de commandes stylet" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "HAUT" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "peint le fond" +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "Définir HAUT comme valeur du port digital." -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "couleur" +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "ENTRÉE" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "teinte" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "Configurer le port hack pour une entrée numérique." -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "remplit l'arrière plan (couleur, teinte)" +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "BAS" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "gris" +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "Définir BAS comme la valeur du port digital." -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "fixe la couleur" +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "SORTIE" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "définit la couleur de la ligne dessinée par la tortue" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "Configurer le port hack pour la sortie numérique." -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "fixe la teinte" +#: taextras.py:141 +msgid "Butia" +msgstr "Butia" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "définit la teinte de la ligne dessinée par la tortue" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "ERREUR : La broche %s doit être en mode SORTIE." -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "fixe gris" +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "ERREUR : La broche %s doit être en mode ENTRÉE." -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "définit le niveau de gris de la ligne dessinée par la tortue" +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" +"Erreur lors de l'importation de Pygame. Cette extension nécessite Pygame 1.9" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "Erreur lors de l'initialisation de la caméra" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "Aucune caméra n'a été trouvée" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Erreur lors de l'arrêt de la caméra" + +#: taextras.py:151 +msgid "Error starting camera" +msgstr "Erreur lors du démarrage de la caméra" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "Erreur du masque" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "SuisMoi" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "rafraîchir SuisMoi" + +#: taextras.py:156 +msgid "Search for a connected camera." +msgstr "Recherche d'une caméra connectée." + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "calibration" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "enregistrer une calibration personnalisée" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "retourner une calibration personnalisée" + +#: taextras.py:161 +msgid "follow" +msgstr "suivre" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "suivre une couleur ou une calibration" + +#: taextras.py:163 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 "luminosité" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:164 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "définit la luminosité de la caméra à une valeur entre 0 et 255." + +#: taextras.py:165 +msgid "minimum pixels" +msgstr "nombre minimal de pixels" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "définir le nombre minimal de pixels à suivre" + +#: taextras.py:167 +msgid "threshold" +msgstr "limite" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "définir une limite pour une couleur RVB" + +#: taextras.py:170 +msgid "camera mode" +msgstr "mode caméra" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "définit le mode couleur de la caméra: RGB, YUV ou HSV" + +#: taextras.py:173 +msgid "get brightness" +msgstr "obtenir la luminosité" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "obtenir la luminosité de la lumière ambiante" + +#: taextras.py:175 +msgid "average color" +msgstr "balance des couleurs" + +#: taextras.py:176 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"maintient la couleur courante du trait (utilisable à la place d'un bloc " -"numérique)" +"lorsque c'est 0, la balance des couleurs est désactivée pendant\n" +"la calibration; pour les autres valeurs elle est activée" + +#: taextras.py:178 +msgid "x position" +msgstr "position en x" + +#: taextras.py:179 +msgid "return x position" +msgstr "retourne la position en x" + +#: taextras.py:180 +msgid "y position" +msgstr "position en y" + +#: taextras.py:181 +msgid "return y position" +msgstr "retourne la position en y" + +#: taextras.py:182 +msgid "pixels" +msgstr "pixels" + +#: taextras.py:183 +msgid "return the number of pixels of the biggest blob" +msgstr "retourner le nombre de pixels du plus gros bout" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +msgid "set the color mode of the camera to RGB" +msgstr "définit le mode couleur RGB pour la caméra" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +msgid "set the color mode of the camera to YUV" +msgstr "définit le mode couleur YUV pour la caméra" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "définit le mode couleur HSV pour la caméra" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "calibration vide" + +#: taextras.py:191 +msgid "error in string conversion" +msgstr "erreur dans la conversion d'une chaîne de caractères" + +#. TRANS: Pattern detection is a plugin that allow detect signals +#. with the camera +#: taextras.py:197 +msgid "Pattern detection" +msgstr "Détection de contour" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "Visualisation du signal" + +#: taextras.py:199 +msgid "Returns True if the signal is in front of the camera" +msgstr "Retourne Vrai si le signal est en face de la caméra" + +#: taextras.py:200 +msgid "Distance to signal" +msgstr "Distance au signal" + +#: taextras.py:201 +msgid "Returns the distance of the signal to the camera in millimeters" +msgstr "Retourne la distance du signal à la caméra en millimètres" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "vitesse SumBot" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "envoyer la vitesse au SumBot" + +#: taextras.py:209 +msgid "set the default speed for the movement commands" +msgstr "fixe la vitesse par défaut pour les commandes de déplacement" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "avancer SumBot" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "faire avancer le SumBot" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "reculer SumBot" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "faire reculer le SumBot" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "arrêter le SumBot" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "faire arrêter le SumBot" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "SumBot à gauche" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "faire tourner le SumBot à gauche" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "SumBot à droite" + +#: taextras.py:223 +msgid "turn right the SumBot" +msgstr "faire tourner le SumBot à droite" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.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:226 +msgid "angle to center" +msgstr "angle avec le centre" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +msgid "get the angle to the center of the dohyo" +msgstr "obtenir l'angle avec le centre du dojo" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "angle pour faire face à l'adversaire" + +#: taextras.py:232 +msgid "get the angle to the Enemy" +msgstr "obtenir l'angle par rapport à l'adversaire" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "x coor. SumBot" + +#: taextras.py:235 +msgid "get the x coordinate of the SumBot" +msgstr "obtenir la coordonnée x du Sumbot" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "y coor. SumBot" + +#: taextras.py:238 +msgid "get the y coordinate of the SumBot" +msgstr "obtenir la coordonnée y du Sumbot" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "x coor. adversaire" + +#: taextras.py:241 +msgid "get the x coordinate of the Enemy" +msgstr "obtenir la coordonnée x de l'adversaire" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "y coor. SumBot" + +#: taextras.py:244 +msgid "get the y coordinate of the Enemy" +msgstr "obtenir la coordonnée y de l'adversaire" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "rotation SumBot" + +#: taextras.py:247 +msgid "get the rotation of the Sumbot" +msgstr "obtenir la rotation de l'adversaire" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "rotation adversaire" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "obtenir la rotation de l'adversaire" + +#: taextras.py:251 +msgid "distance to center" +msgstr "distance par rapport au centre" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "obtient la distance par rapport au centre du dojo" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "distance à l'adversaire" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "obtient la distance par rapport à l'adversaire" + +#: taextras.py:256 +msgid "update information" +msgstr "actualise l'information" + +#: taextras.py:257 +msgid "update information from the server" +msgstr "actualise l'information depuis le serveur" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Palette de blocs physique" + +#: taextras.py:263 +msgid "start polygon" +msgstr "commence le polygone" + +#: taextras.py:264 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" +"Commence à définir un nouveau polygone basé sur la position xy courante de " +"la Tortue." -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "conserver l'ombre courante du stylo" +#: taextras.py:266 +msgid "add point" +msgstr "ajoute un point" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:267 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." msgstr "" -"maintient le niveau de gris courant (utilisable à la place d'un bloc " -"numérique)" +"Ajoute un nouveau point au polygone courant sur la base de la position xy " +"courante de la Tortue." + +#: taextras.py:269 +msgid "end polygon" +msgstr "fin du polygone" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Définit un nouveau polygone." + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "fin du polygone plein" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "Pas un polygone simple" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Définit un nouveau polygone plein." + +#: taextras.py:274 +msgid "triangle" +msgstr "triangle" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "base" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "hauteur" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "crayon levé" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Ajoute un objet triangle au projet." -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "La tortue ne dessinera pas lorsqu'elle sera déplacée." +#: taextras.py:279 +msgid "circle" +msgstr "cercle" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "crayon abaissé" +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Ajoute un objet cercle au projet." -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "La tortue dessinera quand elle sera déplacée." +#: taextras.py:281 +msgid "rectangle" +msgstr "rectangle" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "fixe l'épaisseur du trait" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "largeur" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "définit l'épaisseur de la ligne dessinée par la tortue" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Ajoute un objet rectangle au projet." -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "commence le remplissage" +#: taextras.py:285 +msgid "reset" +msgstr "réinitialise" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "" -"commence le polygone rempli (utilisé avec arrête le remplissage du bloc)" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Réinitialise le projet ; efface la liste des objets." -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "arrête le remplissage" +#: taextras.py:287 +msgid "motor" +msgstr "moteur" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "" -"complète le polygone rempli (utilisé avec commence le remplissage du bloc)" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "couple" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "épaisseur du trait" +#: taextras.py:290 +msgid "speed" +msgstr "vitesse" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:291 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." msgstr "" -"maintient la taille courante du trait (utilisable à la place d'un bloc " -"numérique)" - -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palette de couleur du stylo" - -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "rouge" +"Couple moteur et plage de vitesse de 0 (arrêt) à des valeurs positives ; le " +"moteur est placé sur l'objet créé en dernier." -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "orange" - -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "jaune" - -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "vert" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Épingle un objet pour l'empêcher de tomber." -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyan" +#: taextras.py:295 +msgid "joint" +msgstr "relie" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "bleu" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "pourpre" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "blanc" +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Relie deux objets ensemble (l'objet créé en dernier et l'objet au point x, " +"y)." + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "enregistrer comme une activité Physics" + +#: taextras.py:301 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Enregistre le projet dans le journal comme activité Physique." + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "engrenage" + +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Ajoute un objet engrenage au projet." + +#: taextras.py:305 +msgid "density" +msgstr "densité" + +#: taextras.py:306 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" +"Définit la propriété densité pour les objets (la densité peut être un nombre " +"positif quelconque)." -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "noir" +#: taextras.py:308 +msgid "friction" +msgstr "friction" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "définir la couleur du texte" +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Définit la propriété friction pour les objets (valeur de 0 à 1, où 0 " +"désactive la friction et 1 est une friction forte)." + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "ressort" + +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Définit la propriété ressort pour les objets (valeur de 0 à 1, où 0 est " +"l'absence de ressort et 1 correspond à un ressort élevé)." + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "dynamique" + +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Si dynamique = 1, l'objet peut se déplacer ; si dynamique = 0, il est fixé " +"en position." + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "Palette de blocs WeDo" + +#: taextras.py:324 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "définit l'instrument WeDo actuel" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "nombre d'instruments WeDo" + +#: taextras.py:327 +msgid "tilt" +msgstr "inclinaison" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "sortie du capteur de distance" + +#: taextras.py:333 +msgid "Motor A" +msgstr "Moteur A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "retourner la valeur actuelle du moteur A" + +#: taextras.py:335 +msgid "Motor B" +msgstr "Moteur B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "retourner la valeur actuelle du moteur B" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "définir la valeur du moteur A" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "définir la valeur du moteur B" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "WeDo n'est pas disponible" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "WeDo %d n'est pas disponible; choix du 1 par défaut" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "définit la couleur du texte dessiné par la tortue" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "%(device)s n'est pas disponible sur WeDo %(wedo_number)d\"" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palette de blocs LEGO NXT pour les moteurs" + +#: taextras.py:350 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Palette de blocs LEGO NXT pour les capteurs" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "toucher" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "ultrason" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "couleur" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "fixe la taille du texte" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "son" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "définit la taille du texte dessiné par la tortue" +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "Merci de vérifier la connexion avec la brique" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palette d'opérateurs numériques" +#: taextras.py:361 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "Port '%s' invalide. Le port doit être: PORT A, B ou C" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: taextras.py:362 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "Port '%s' invalide. Le port doit être: PORT 1, 2, 3 ou 4\"" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "ajoute deux valeurs alphanumériques" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "La valeur pour l'énergie doit être comprise entre -127 et 127" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "moins" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "Le paramètre doit être un entier, pas '%s'" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" +#: taextras.py:365 +msgid "An error has occurred: check all connections and try to reconnect" msgstr "" -"soustrait la valeur numérique inférieure de la valeur numérique supérieure" +"Une erreur est survenue : vérifiez toutes les connexion et essayez de vous " +"reconnecter" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "multiplier" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT a trouvé %s briques" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplie deux valeurs numériques" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT non trouvé" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "diviser" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "La brique numéro %s n'a pas pu être trouvée" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "" -"divise la valeur numérique supérieure (numérateur) par la valeur numérique " -"inférieure (dénominateur)" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "rafraîchir NXT" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identité" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Recherche d'une brique NXT connectée." -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "opérateur d'identité utilisé pour les blocs d'extension" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "définit l'instrument NXT courant" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "opérateur modulaire (reste)" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "nombre d'instrument NXT" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:374 +msgid "brick name" +msgstr "nom de la brique" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "racine carré" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "Obtenir le nom de la brique" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "calcule la racine carrée" +#: taextras.py:376 +msgid "play tone" +msgstr "jouer une note" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "aléatoire" +#: taextras.py:377 +msgid "frequency" +msgstr "fréquence" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "temps" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Jouer une note à cette fréquence pour une durée." -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#. TRANS: turn is the action +#: taextras.py:381 +msgid "" +"turn motor\n" +"\n" msgstr "" -"retourne le nombre aléatoire compris entre les valeurs minimum (en haut) et " -"maximum (en bas)" +"tourner le moteur\n" +"\n" + +#: taextras.py:382 +msgid "port" +msgstr "port" + +#: taextras.py:383 +msgid "power" +msgstr "puissance" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "rotations" + +#: taextras.py:386 +msgid "turn a motor" +msgstr "tourner un moteur" + +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"synchroniser\n" +"\n" +"moteurs" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "nombre" +#: taextras.py:388 +msgid "steering" +msgstr "conduite" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "utilisé comme valeur numérique des opérateurs mathématiques" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "synchroniser deux moteurs connectés aux ports B et C" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "plus grand que" +#: taextras.py:390 +msgid "PORT A" +msgstr "PORT A" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "opérateur logique plus grand que" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "PORT A de la brique" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "plus petit que" +#: taextras.py:392 +msgid "PORT B" +msgstr "PORT B" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "opérateur logique plus petit que" +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "PORT B de la brique" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "égal" +#: taextras.py:394 +msgid "PORT C" +msgstr "PORT C" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "opérateur logique égale" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "PORT C de la brique" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "non" +#: taextras.py:396 +msgid "" +"synchronize\n" +"motors" +msgstr "" +"synchroniser\n" +"moteurs" + +#: taextras.py:397 +msgid "start motor" +msgstr "Démarrer le moteur" + +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "Lancer un moteur pour toujours." + +#: taextras.py:399 +msgid "brake motor" +msgstr "frein moteur" + +#: taextras.py:400 +msgid "Stop a specified motor." +msgstr "Arrêter un moteur spécifique." + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "réinitialiser le moteur" + +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "Réinitialiser le compteur du moteur." + +#: taextras.py:404 +msgid "motor position" +msgstr "position du moteur" + +#: taextras.py:405 +msgid "Get the motor position." +msgstr "Récupérer la position du moteur." + +#: taextras.py:406 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "PORT 1 de la brique" + +#: taextras.py:408 +msgid "read" +msgstr "lire" + +#: taextras.py:409 +msgid "sensor" +msgstr "capteur" + +#: taextras.py:410 +msgid "Read sensor output." +msgstr "Lire la sortie du capteur." + +#: taextras.py:411 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "PORT 2 de la brique" + +#: taextras.py:413 +msgid "light sensor" +msgstr "capteur de lumière" + +#: taextras.py:414 +msgid "gray sensor" +msgstr "capteur gris" + +#: taextras.py:415 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "PORT 3 de la brique" + +#: taextras.py:417 +msgid "touch sensor" +msgstr "capteur tactile" + +#: taextras.py:418 +msgid "distance sensor" +msgstr "capteur de distance" + +#: taextras.py:419 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:420 +msgid "PORT 4 of the brick" +msgstr "PORT 4 de la brique" + +#: taextras.py:421 +msgid "sound sensor" +msgstr "capteur auditif" + +#: taextras.py:422 +msgid "color sensor" +msgstr "capteur de couleur" + +#. #-#-#-#-# fr.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) +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.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:425 +msgid "set light" +msgstr "définir la lumière" + +#: taextras.py:426 +msgid "Set color sensor light." +msgstr "Définir la luminosité du capteur de couleur." + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "niveau de batterie" + +#: taextras.py:429 +msgid "Get the battery level of the brick in millivolts" +msgstr "Obtenir le niveau de la batterie de la brique en millivolts" + +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "MDL" + +#: taextras.py:440 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ERREUR: Vérifiez l'Arduino et le numéro de port." + +#: taextras.py:442 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "ERREUR: La valeur doit être comprise entre 0 et 255." + +#: taextras.py:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ERREUR: La valeur doit être soit HAUT soit BAS." + +#: taextras.py:444 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "ERREUR: Le mode doit être soit INPUT, OUTPUT, MDL ou SERVO." + +#: taextras.py:445 +msgid "refresh Arduino" +msgstr "rafraîchir Arduino" + +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "Recherche d'Arduinos connectés" + +#: taextras.py:447 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "définit la carte Arduino courante" + +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "nombre d'Arduinos" + +#: taextras.py:450 +msgid "number of Arduino boards" +msgstr "nombre de cartes Arduino" + +#: taextras.py:451 +msgid "Arduino name" +msgstr "nom de l'Arduino" + +#: taextras.py:452 +msgid "Get the name of an Arduino." +msgstr "Obtenir le nom d'un Arduino." + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:455 +msgid "pin mode" +msgstr "mode broche" + +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Choisir la fonction de la broche (ENTRÉE, SORTIE, MLI, SERVO)." + +#: taextras.py:459 +msgid "analog write" +msgstr "écriture analogique" + +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "Écrire la valeur analogique dans le port spécifié." + +#: taextras.py:462 +msgid "analog read" +msgstr "Lecture analogique" + +#: taextras.py:463 +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 "" +"Lire la valeur d'un port analogique. La valeur peut être entre 0 et 1023. " +"Utilisez Vref pour déterminer la tension. Pour l'USB, volt=((read)*5)/1024) " +"approximativement." + +#: taextras.py:465 +msgid "digital write" +msgstr "écriture digitale" + +#: taextras.py:466 +msgid "Write digital value to specified port." +msgstr "Écrire la valeur digitale sur le port spécifié." + +#: taextras.py:467 +msgid "digital read" +msgstr "lecture digitale" + +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "Lire la valeur d'un port digital." + +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "Configurer le port Arduino pour une entrée digitale." + +#: taextras.py:471 +msgid "Configure Arduino port to drive a servo." +msgstr "Configurer le port Arduino pour conduire un SERVO." + +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "Configurer le port Arduino pour la sortie digitale." + +#: taextras.py:474 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Configurer le port Arduino pour MDL (modulation de largeur)." + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +msgid "Palette of Expeyes blocks" +msgstr "Palette de blocs Expeyes" + +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" +msgstr "définit PVS" + +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "définit une sortie de tension programmable" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "définit la tension SQR1" + +#: taextras.py:485 +msgid "set square wave 1 voltage output" +msgstr "définit la sortie de tension de l'onde carrée 1" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:487 +msgid "set SQR2 voltage" +msgstr "définit la tension SQR2" + +#: taextras.py:488 +msgid "set square wave 2 voltage output" +msgstr "définit la sortie de tension de l'onde carrée 2" + +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "définit OD1" + +#: taextras.py:491 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "définit le niveau de sortie digitale (OD1) bas (0) ou haut (1)" + +#. TRANS: Input 1 voltage level +#: taextras.py:493 +msgid "IN1 level" +msgstr "niveau IN1" + +#: taextras.py:494 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" +"renvoie 1 si le niveau de tension IN1 >2.5 volts, 0 si le niveau de tension " +"IN1 <= 2.5 volts" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "opérateur logique NON" +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "niveau IN2" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "et" +#: taextras.py:498 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" +"renvoie 1 si le niveau de tension IN2 >2.5 volts, 0 si le niveau de tension " +"IN2 <= 2.5 volts" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "opérateur logique ET" +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "niveau SEN" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "ou" +#: taextras.py:502 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" +"renvoie 1 si la tension du capteur résistif (SEN) > 2.5, 0 si le niveau de " +"tension SEN <= 2.5 volts" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "opérateur logique OU" +#: taextras.py:504 +msgid "capture" +msgstr "capture" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palette d'opérateurs de flux" +#: taextras.py:505 +msgid "input" +msgstr "entrée" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "attend" +#: taextras.py:506 +msgid "samples" +msgstr "exemples" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" +#: taextras.py:507 +msgid "interval" +msgstr "intervalle" + +#. TRANS: MS is microseconds +#: taextras.py:509 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" -"met en pause l'exécution du programme pendant un nombre spécifié de secondes" +"capturer plusieurs exemples depuis l'entrée à l'intervale (MS); les " +"résultats sont envoyés à FIFO" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:512 +msgid "A1" +msgstr "A1" + +#: taextras.py:513 +msgid "read analog input 1 voltage" +msgstr "lire la tension d'entrée analogique 1" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "A2" + +#: taextras.py:516 +msgid "read analog input 2 voltage" +msgstr "lire la tension d'entrée analogique 2" + +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "lire la tension de l'entrée 1" + +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "lire la tension de l'entrée 2" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:525 +msgid "read analog sensor input voltage" +msgstr "lire la tension d'entrée du capteur analogique" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:528 +msgid "read square wave 1 voltage" +msgstr "lit la sortie de tension de l'onde carrée 1" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:530 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "lit la sortie de tension de l'onde carrée 2" + +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "lire la tension programmable" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "Instrument Expeyes non trouvé" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "toujours" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "reprendre la lecture vidéo ou audio" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "boucle infinie" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Titre" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "répète" +#: 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 "La couleur RVB moyenne de la caméra est poussée sur la pile" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "boucle un certain nombre de fois" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "jaune" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "si" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "afficher les coordonnées polaires" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "alors" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "vider FILO (Premier Entrée Dernier Sortie)" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "si alors" +#: 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 "sortie de la caméra" + +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "pousse l'accélération sur x, y, z sur le tas" #: TurtleArt/tabasics.py:781 msgid "if-then operator that uses boolean operators from Numbers palette" @@ -530,629 +1857,416 @@ msgstr "" "opérateur si-alors utilisant des opérateurs booléens de la palette des " "nombres" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "sinon" - -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "si alors sinon" - -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "" -"opérateur si-alors-sinon utilisant des opérateurs booléens de la palette des " -"nombres" - -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "espacement horizontal" - #: TurtleArt/tabasics.py:812 msgid "jogs stack right" msgstr "pousse la pile à droite" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "espacement vertical" - -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "pousse l'action en bas" - -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "arrête l'action" - -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "arrêter l'action courante" - -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palette de blocs variables" - -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "commencer" - -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "connecte l'action aux boutons exécuter de la barre d'outils" - -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "texte" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "valeur chaîne" - -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "action" - -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "haut de l'action nommable" - -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "invoque la pile d'actions nommée" - -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "range dans la boîte 1" - -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "stocke une valeur numérique dans la Variable 1" - -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "range dans la boîte 2" - -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "stocke une valeur numérique dans la Variable 2" - -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "boîte 1" - -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variable 1 (valeur numérique)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Objet média du Journal Sugar" #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "boîte 2" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variable 2 (valeur numérique)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "enregistre" - -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "boîte" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "valeur" - -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "ma boite" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "boîte 1" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "stocke une valeur numérique dans la variable nommée" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Pas à pas" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "variable nommée (valeur numérique)" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplie deux valeurs numériques" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "action 1" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Montrer/Cacher les blocs" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "haut de la pile Action 1" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Masquer la palette" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "action 2" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Amis" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "haut de la pile Action 2" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Ma session ArtTortue" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "invoque la pile d'actions 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Objet vidéo du Journal Sugar" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "invoque la pile d'actions 2" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyan" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "corbeille" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "coord. x de la droite de l'écran" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "vider la corbeille" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Palette d'options supplémentaires" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "effacer de manière définitive les objets dans la corbeille" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "déplacer tous les blocs vers la corbeille" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "restaurer tout" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "liste" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "restaurer tous les blocs de la poubelle" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Répertoire de configuration non inscriptible : %s" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "effacer tout" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "reprendre le média" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "déplacer tous les blocs vers la corbeille" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "cap" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Partager les blocs sélectionnés" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Partage de blocs désactivé" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Titre" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "" +"enregistre les dessins de la tortue en tant que fichier SVG dans le Journal " +"de Sugar" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Arrêter la tortue" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "dessine un texte ou montre un média du Journal" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Afficher les blocs" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Masquer les blocs" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "vidéo" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "n'a pas pu ouvrir" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "bleu" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Je ne sais pas comment faire pour" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Aucune action d'option :" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "n'aime pas" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "pousse l'action en bas" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "comme entrée" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "opérateur modulaire (reste)" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "affiche la palette suivante" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "bas x" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "change l'orientation de la palette des blocs" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "enregistrer SVG" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Charger..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "exécute le code trouvé dans le module tamyblock.py module du Journal" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Enregistrer..." +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "crayon abaissé" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "cliquer pour ouvrir" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "attend" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientation" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "boîte" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "suivant" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Echec du transfert !" #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" msgstr "tourner" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "Actionne le bouton Arrêter avant de modifier ton programme BlocsTortue" - -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Sélectionner les blocs à partager" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "ArtTortue" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "image" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Enregistrer en Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Enregistrer dans une image" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "instantanée" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "invoque la pile d'actions nommée" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Enregistrer l'instantané" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "action" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Désactiver les info-bulles" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"opérateur faire-tantQue-Vrai utilisant des opérateurs booléens de la palette " +"des nombres" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Activer les info-bulles" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "l'usage est" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Afficher la palette" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variable 2 (valeur numérique)" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Masquer la palette" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "diviser" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Diminuer l'échelle des coordonnées" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "nom image" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Augmenter l'échelle des coordonnées" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "tant que" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Édition" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "largeur du canevas" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Vue" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "tas vide ?" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projet" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "variable nommée (valeur numérique)" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Enregistrer/Charger" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "suivant" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copier" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "si alors" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Coller" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "fixe l'épaisseur du trait" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Restaurer tous les blocs de la poubelle" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "" +"modèle de présentation : sélectionner un objet du Journal (sans description)" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Plein écran" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "jusqu'à" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Coordonnées cartésiennes" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "arrêt média" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Coordonnées polaires" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Activer les info-bulles" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Coordonnées métriques" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "effacer de manière définitive les objets dans la corbeille" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Augmenter les blocs" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "Demi-tour" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Diminuer les blocs" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "haut de la pile Action 1" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Charger un exemple" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"un bloc programmable: utilisé pour ajouter des équations mathématiques " +"avancées à une seule variable, ex: sin(x)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Effacer" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palette d'opérateurs de flux" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Exécuter" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "haut d'une pile agrégée" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Pas à pas" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"opérateur si-alors-sinon utilisant des opérateurs booléens de la palette des " +"nombres" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Aide" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "retourne la coordonnée y de la souris" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Arrêter" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "conserver l'ombre courante du stylo" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Charger un projet" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "onde sinusoïdale" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Charger un module" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Echec de la connexion" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Charger un bloc Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "gauche x" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "Palettes" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Partage de blocs désactivé" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "La couleur RVB sous la tortue est poussée vers la pile" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "désencombre le canevas en masquant les blocs" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Le module n'a pas pu être installé." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Merci de redémarrer ArtTortue pour utiliser le module." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Le module %s est déjà installé." - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Voulez-vous réinstaller %s ?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Ma session ArtTortue" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Activer la collaboration" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Activités" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Amis" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Partager" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Configuration" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Voisinage" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Pseudo" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "ID de compte" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Serveur" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Mot de passe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "opérateur Python chr" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "S'enregistrer" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "espacement horizontal" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Couleurs" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Coordonnées métriques" -#: 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 "Transférer" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "valeur chaîne" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Publication sur le mur Facebook" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "description" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Transférer vers le Web" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Je ne sais pas comment faire pour" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"Vous devez avoir un compte sur http://turtleartsite.sugarlabs.org pour " -"transférer votre projet." +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "fixe la taille du texte" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "Identifiant :" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Mot de passe :" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Titre :" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Description :" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Publier sur le Web" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"commence le polygone rempli (utilisé avec arrête le remplissage du bloc)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Annuler" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "modèle de présentation : sélectionner quatre objets du Journal" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Echec de la connexion" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Vue" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Echec du transfert !" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "définit le niveau de gris de la ligne dessinée par la tortue" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palette de blocs de capteurs" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Mot de passe :" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "accélération" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "tortue voit" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "pousse l'accélération sur x, y, z sur le tas" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "arrête l'action" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "son" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "vert" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "signal d'entrée micro brut" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "teinte" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "volume" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "remplit l'arrière plan (couleur, teinte)" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "volume d'entrée du micro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "enregistrer image" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1160,437 +2274,243 @@ msgstr "volume d'entrée du micro" msgid "pitch" msgstr "hauteur" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "pitch d'entrée du micro" - -#: 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 "résistance" - -#: 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 "résistance d'entrée du micro" - -#: 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 "tension" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "retourne 1 si le bouton de la souris est actionné" -#: 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 "tension d'entrée du micro" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Augmenter l'échelle des coordonnées" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palette d'objets multimédia" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "crayon levé" -#: 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 "luminosité" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "orange" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "niveau de luminosité détecté par la caméra" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "" +"met en pause l'exécution du programme pendant un nombre spécifié de secondes" -#: 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 "La couleur RVB moyenne de la caméra est poussée sur la pile" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "pousse la valeur dans le tas FILO (premier entré dernier sorti)" -#: 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 "sortie de la caméra" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "effacer tout" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "niveau de luminosité détecté par le capteur de luminosité" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "alors" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "S'enregistrer" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "lire la valeur de l'équipement RFID" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "non" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "tant que" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "si alors sinon" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"opérateur faire-tantQue-Vrai utilisant des opérateurs booléens de la palette " -"des nombres" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "arrêter l'action courante" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "jusqu'à" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "pivoter la tortue dans le sens horaire (angle en degrés)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" msgstr "" -"opérateur faire-tantQue-Vrai utilisant des opérateurs booléens de la palette " -"des nombres" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "haut" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "haut d'une pile à agréger" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Objet média du Journal Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Objet audio du Journal Sugar" +"maintient le niveau de gris courant (utilisable à la place d'un bloc " +"numérique)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "vidéo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "coord. x de la gauche de l'écran" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Objet vidéo du Journal Sugar" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Réinitialiser taille blocs" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "description" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "tortue" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Champ description du Journal Sugar" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "affiche la palette suivante" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "montre" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "masquer les blocs" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "dessine un texte ou montre un média du Journal" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "niveau de luminosité détecté par la caméra" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "montrer alignement" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "opérateurs Python int" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "définit l'échelle" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "opérateur logique plus petit que" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "fixe l'échelle du média" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "restaurer tous les blocs de la poubelle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "enregistrer image" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Enregistrer" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "nom image" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "range dans la boîte 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "enregistre l'image dans le Journal de Sugar" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "range dans la boîte 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "enregistrer SVG" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "cacher la barre d'outils Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"enregistre les dessins de la tortue en tant que fichier SVG dans le Journal " -"de Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "échelle" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "conserver la valeur actuelle de l'échelle" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "attente du média" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "attendre la fin de la vidéo ou de l'audio en cours" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "arrêt média" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "arrêter la vidéo ou l'audio" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "pause média" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "mettre la vidéo ou l'audio en pause" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "reprendre le média" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "reprendre la lecture vidéo ou audio" +"maintient la valeur de la coordonnée x courante de la tortue (utilisable à " +"la place d'un bloc numérique)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "parler" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "montre" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "salut" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "retourne la coordonnée x de la souris" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "dit le texte" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "rouge" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "onde sinusoïdale" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Enregistrer en Logo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "amplitude" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "définit la couleur de la ligne dessinée par la tortue" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "durée" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "définir la couleur du texte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"joue une onde sinusoïdale à une fréquence, une amplitude et une durée (en " -"secondes)" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "volume" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "bouton enfoncé" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Activer la collaboration" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "retourne 1 si le bouton de la souris est actionné" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palette de blocs de capteurs" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "retourne Vrai si le bouton de la souris est actionné" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "souris x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "retourne la coordonnée x de la souris" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "souris y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "retourne la coordonnée y de la souris" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "nombre" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "interroger clavier" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"interroge la valeur entrée au clavier (résultat stocké dans le bloc clavier)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "clavier" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "haut" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "conserve le résultat dans le bloc clavier d'interrogation" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Publier sur le Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "lire le pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Pseudo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "La couleur RVB sous la tortue est poussée vers la pile" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "définit l'échelle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "tortue voit" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Partager les blocs sélectionnés" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "retourne la couleur \"vue\" par la tortue" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "blanc" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "temps" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "connecte l'action aux boutons exécuter de la barre d'outils" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "temps écoulé (en secondes) depuis le démarrage du programme" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Palette d'options supplémentaires" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "pousse" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "pousse la valeur dans le tas FILO (premier entré dernier sorti)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "affiche le tas" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "affiche les valeurs dans le tas FILO (premier entré dernier sorti)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "vide le tas" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "vider FILO (Premier Entrée Dernier Sortie)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "dépile" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "sort la valeur du tas FILO (premier entré dernier sorti)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "tas vide ?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "renvoie Vrai si le tas est vide" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "commenter" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "placer un commentaire dans votre code" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "montre" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "affiche la valeur dans le bloc d'état en bas de l'écran" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Annuler" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "opérateur Python chr" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "hauteur du canevas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "opérateurs Python int" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "présentation 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "moins" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"un bloc programmable: utilisé pour ajouter des équations mathématiques " -"avancées à une seule variable, ex: sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "et" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"un bloc programmable: utilisé pour ajouter des équations mathématiques " -"avancées à plusieurs variables, ex: sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "haut d'une pile à agréger" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"un bloc programmable: utilisé pour ajouter des équations mathématiques " -"avancées à plusieurs variables, ex: sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "comme entrée" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1598,56 +2518,28 @@ msgstr "" msgid "Python block" msgstr "Bloc Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "exécute le code trouvé dans le module tamyblock.py module du Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartésienne" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "afficher coordonnées cartésiennes" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polaire" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "afficher les coordonnées polaires" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "tortue" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "choisir la tortue à commander" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "attente du média" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "carapace de la tortue" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "accélération" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "place une 'carapace' personnalisée sur la tortue" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"maintient la taille courante du trait (utilisable à la place d'un bloc " +"numérique)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "haut d'une pile agrégée" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "fixe la couleur" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "charger" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1655,61 +2547,31 @@ msgstr "charger" msgid "loads a block" msgstr "charge un bloc" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "fixe xy" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "sélectionne a palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palette de modèles de présentation" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "masquer les blocs" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "désencombre le canevas en masquant les blocs" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "montrer blocs" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "restaurer les blocs cachés" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palette de commandes stylet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "cacher la barre d'outils Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "affiche les valeurs dans le tas FILO (premier entré dernier sorti)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "liste" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"opérateur faire-tantQue-Vrai utilisant des opérateurs booléens de la palette " +"des nombres" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "présentation liste à puce" +#: turtleblocks.py:363 +msgid "File" +msgstr "Fichier" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "modèle de présentation : liste de puces" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "opérateur logique NON" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "" -"modèle de présentation : sélectionner un objet du Journal (sans description)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "coord. y du bas de l'écran" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 @@ -1718,999 +2580,1145 @@ msgstr "" "modèle de présentation : sélectionner un objet du Journal (avec sa " "description)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "modèle de présentation : sélectionner quatre objets du Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "modèle de présentation : sélectionner deux objets du Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "coord. x de la gauche de l'écran" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "bas" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "coord. y du bas de l'écran" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "largeur" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "largeur du canevas" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palette d'opérateurs numériques" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "coord. x de la droite de l'écran" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "multiplier" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "coord. y du haut de l'écran" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "toujours" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "hauteur" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Le module %s est déjà installé." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "hauteur du canevas" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "définit la teinte de la ligne dessinée par la tortue" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "titre x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "dit le texte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "titre y" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "instantanée" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "gauche x" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "efface" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "haut x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "modèle de présentation : sélectionner deux objets du Journal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "droite x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Augmenter les blocs" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "bas x" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Plein écran" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "présentation 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Fichier introuvable" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "présentation 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "montre" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "présentation 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "texte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "présentation 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "aléatoire" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Installe l'activité Parler et essaie à nouveau" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "opérateur logique plus grand que" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Espagnol" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "pivoter la tortue dans le sens anti-horaire (angle en degrés)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "Anglais" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "noir" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Pardon, je ne comprends pas ce que tu demandes." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "calcule la racine carrée" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Pardon, il n'y a pas de mémoire libre pour charger mon cerveau. Ferme les " -"autres activités et essaie à nouveau." +"maintient la valeur de la coordonnée y courante de la tortue (utilisable à " +"la place d'un bloc numérique)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "pousse la valeur rvb cible sur la pile" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "souris x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "souris y" #: pysamples/grecord.py:215 msgid "stop" msgstr "arrête" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "jouer" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "enregistrer" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "autre" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "Demi-tour" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "Faire demi-tour" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "l'usage est" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Aucune action d'option :" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Fichier introuvable" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Répertoire de configuration non inscriptible : %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Nouveau" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Ouvrir" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Enregistrer" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Enregistrer sous" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Quitter" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Fichier" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Modifier l'échelle" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Réinitialiser taille blocs" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Montrer/Cacher les blocs" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Outils" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Débogage" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Tortue" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "plus grand que" -#: turtleblocks.py:407 -msgid "About..." -msgstr "À propos de..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "coord x" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "" -"Vous n'avez pas sauvegardé votre travail. Voulez-vous le sauvegarder avant " -"de quitter ?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Aide" #: turtleblocks.py:448 msgid "Save project?" msgstr "Sauvegarder le projet ?" -#~ msgid "Turtle Art Mini" -#~ msgstr "ArtTortue Mini" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "choisir la tortue à commander" -#~ msgid "Turtle Confusion" -#~ msgstr "Confusion tortue" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "droite x" -#~ msgid "Select a challenge" -#~ msgstr "Sélectionner un défi" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "définit la couleur du texte dessiné par la tortue" -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palette de pesos mexicains" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "niveau de luminosité détecté par le capteur de luminosité" -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palette de pesos colombiens" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "clavier" -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palette de francs rwandais" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" -#~ msgid "Palette of US dollars" -#~ msgstr "Palette de dollars américains" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "rayon" -#~ msgid "Palette of Australian dollars" -#~ msgstr "Palette de dollars australiens" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "fixe la teinte" -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Palette de guaranis du Paraguay" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "opérateur logique ET" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Palette de Nuevo Sol péruviens" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Vous devez avoir un compte sur http://turtleartsite.sugarlabs.org pour " +"transférer votre projet." -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Palette de pesos uruguayennes" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Exécuter" -#~ msgid "TurtleBots" -#~ msgstr "TurtleBots" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "affiche le tas" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "régler l'intensité de la DEL entre 0 et 255" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "fixe le cap de la tortue (0 est orienté sur le haut de l'écran)" -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "" -#~ "retourne le niveau de gris de l'objet sous forme de nombre compris entre 0 " -#~ "et 1023" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "volume d'entrée du micro" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "retourne 1 lorsque le bouton est actionné et 0 dans le cas contraire" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Titre :" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "" -#~ "retourne le niveau d'éclairage ambiant sous forme de nombre compris entre 0 " -#~ "et 1023" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palette d'objets multimédia" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "" -#~ "retourne la température ambiante sous forme de nombre compris entre 0 et 255" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Restaurer tous les blocs de la poubelle" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "retourne la distance de l'objet en face du capteur sous forme de nombre " -#~ "compris entre 0 et 255" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palette de blocs variables" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "retourne 0 ou 1 en fonction de l'inclinaison du capteur" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "utilisé comme valeur numérique des opérateurs mathématiques" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "retourne 1 lorsque les capteurs détectent un champ magnétique, 0 dans le cas " -#~ "contraire" +#: 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 "Transférer" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "bascule entre 0 et 1, la fréquence dépend des vibrations" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Serveur" -#~ msgid "LED" -#~ msgstr "DEL" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "présentation 2x2" -#~ msgid "button" -#~ msgstr "bouton" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variable 1 (valeur numérique)" -#~ msgid "grayscale" -#~ msgstr "niveau de gris" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Voisinage" -#~ msgid "ambient light" -#~ msgstr "lumière ambiante" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "ajoute deux valeurs alphanumériques" -#~ msgid "temperature" -#~ msgstr "température" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "égal" -#~ msgid "distance" -#~ msgstr "distance" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "sinon" -#~ msgid "tilt" -#~ msgstr "inclinaison" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "n'aime pas" -#~ msgid "magnetic induction" -#~ msgstr "induction magnétique" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "" +"Vous n'avez pas sauvegardé votre travail. Voulez-vous le sauvegarder avant " +"de quitter ?" -#~ msgid "vibration" -#~ msgstr "vibration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "restaurer les blocs cachés" -#~ msgid "Butia Robot" -#~ msgstr "Robot Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "arrêter la vidéo ou l'audio" -#~ msgid "refresh Butia" -#~ msgstr "rafraîchir Butia" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "La tortue ne dessinera pas lorsqu'elle sera déplacée." -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "réinitialiser la palette et les blocs Butia" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "dépile" -#~ msgid "battery charge Butia" -#~ msgstr "charge de la batterie Butia" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "épaisseur du trait" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "retourne le niveau de la batterie entre 0 et 255" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "carapace de la tortue" -#~ msgid "speed Butia" -#~ msgstr "vitesse Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"joue une onde sinusoïdale à une fréquence, une amplitude et une durée (en " +"secondes)" -#~ msgid "forward Butia" -#~ msgstr "faire avancer Butia" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "move the Butia robot forward" -#~ msgstr "fait avancer le robot Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "parler" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "fait avancer le robot Butia sur une distance prédéfinie." +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "lire la valeur de l'équipement RFID" -#~ msgid "left Butia" -#~ msgstr "tourne Butia vers la gauche" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "déplacer la tortue le long d'un arc" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "tourner le robot Butia vers la droite" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "Faire demi-tour" -#~ msgid "backward Butia" -#~ msgstr "faire reculer Butia" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "opérateur logique égale" -#~ msgid "move the Butia robot backward" -#~ msgstr "fait reculer le robot Butia" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palette de couleur du stylo" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "fait reculer le robot Butia sur une distance prédéfinie" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "mettre la vidéo ou l'audio en pause" -#~ msgid "right Butia" -#~ msgstr "tourne Butia vers la droite" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "stocke une valeur numérique dans la Variable 1" -#~ msgid "turn the Butia robot at right" -#~ msgstr "tourner le robot Butia vers la droite" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "stocke une valeur numérique dans la Variable 2" -#~ msgid "turn Butia" -#~ msgstr "tourner Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "place une 'carapace' personnalisée sur la tortue" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "tourne le robot de x degrés" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "bouton enfoncé" -#~ msgid "stop Butia" -#~ msgstr "arrête Butia" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "reculer la tortue" -#~ msgid "stop the Butia robot" -#~ msgstr "arrêter le robot Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "coord. y du haut de l'écran" -#~ msgid "Butia" -#~ msgstr "Butia" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Afficher les blocs" -#, fuzzy -#~ msgid "Error on initialization of the camera" -#~ msgstr "Erreur lors de l'initialisation de la caméra." +#: pysamples/grecord.py:217 +msgid "play" +msgstr "jouer" -#~ msgid "FollowMe" -#~ msgstr "SuisMoi" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "enregistrer" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Recherche d'une brique NXT connectée." +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Couleurs" -#~ msgid "calibration" -#~ msgstr "calibration" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "définit l'épaisseur de la ligne dessinée par la tortue" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "sauver une calibration personnalisée" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Ouvrir" -#~ msgid "return a personalized calibration" -#~ msgstr "retourner une calibration personnalisée" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientation" -#~ msgid "follow" -#~ msgstr "suivre" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "coord y" -#~ msgid "follow a color or calibration" -#~ msgstr "suivre une couleur ou une calibration" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"un bloc programmable: utilisé pour ajouter des équations mathématiques " +"avancées à plusieurs variables, ex: sqrt(x*x+y*y)" -#~ msgid "minimum pixels" -#~ msgstr "nombre minimal de pixels" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "si" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "définir le nombre minimal de pixels à suivre" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"déplace la tortue sur la position xcor, ycor; (0, 0) correspond au centre de " +"l'écran." -#~ msgid "threshold" -#~ msgstr "limite" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "définir une limite pour une couleur RVB" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Arrêter" -#~ msgid "x position" -#~ msgstr "position en x" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "action 2" -#~ msgid "return x position" -#~ msgstr "retourne la position en x" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "action 1" -#~ msgid "y position" -#~ msgstr "position en y" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "arrête le remplissage" -#~ msgid "return y position" -#~ msgstr "retourne la position en y" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copier" -#~ msgid "pixels" -#~ msgstr "pixels" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Coller" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "retourner le nombre de pixels du plus gros bout" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "n'a pas pu ouvrir" -#~ msgid "empty calibration" -#~ msgstr "calibration vide" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Activités" -#~ msgid "error in string conversion" -#~ msgstr "erreur dans la conversion d'une chaîne de caractères" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Transférer vers le Web" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "vide le tas" -#~ msgid "speed SumBot" -#~ msgstr "vitesse SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "sort la valeur du tas FILO (premier entré dernier sorti)" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "envoyer la vitesse au SumBot" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Effacer" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "fixe la vitesse par défaut pour les commandes de déplacement" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palette de modèles de présentation" -#~ msgid "forward SumBot" -#~ msgstr "avancer SumBot" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "angle" -#~ msgid "move SumBot forward" -#~ msgstr "faire avancer le SumBot" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identité" -#~ msgid "backward SumBot" -#~ msgstr "reculer SumBot" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Enregistrer/Charger" -#~ msgid "move SumBot backward" -#~ msgstr "faire reculer le SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "haut x" -#~ msgid "stop SumBot" -#~ msgstr "arrêter le SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" -#~ msgid "stop the SumBot" -#~ msgstr "faire arrêter le SumBot" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Outils" -#~ msgid "left SumBot" -#~ msgstr "SumBot à gauche" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "turn left the SumBot" -#~ msgstr "faire tourner le SumBot à gauche" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "commenter" -#~ msgid "right SumBot" -#~ msgstr "SumBot à droite" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "" +"soustrait la valeur numérique inférieure de la valeur numérique supérieure" -#~ msgid "turn right the SumBot" -#~ msgstr "faire tourner le SumBot à droite" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "pause média" -#~ msgid "angle to center" -#~ msgstr "angle avec le centre" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"interroge la valeur entrée au clavier (résultat stocké dans le bloc clavier)" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "obtenir l'angle avec le centre du dojo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartésienne" -#~ msgid "angle to Enemy" -#~ msgstr "angle pour faire face à l'adversaire" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "effacer l'écran et réinitialiser la tortue" -#~ msgid "get the angle to the Enemy" -#~ msgstr "obtenir l'angle par rapport à l'adversaire" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "signal d'entrée micro brut" -#~ msgid "x coor. SumBot" -#~ msgstr "x coor. SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "retourne la couleur \"vue\" par la tortue" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "obtenir la coordonnée x du Sumbot" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "invoque la pile d'actions 1" -#~ msgid "y coor. SumBot" -#~ msgstr "y coor. SumBot" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palette de commandes Tortue" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "obtenir la coordonnée y du Sumbot" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "boucle infinie" -#~ msgid "x coor. Enemy" -#~ msgstr "x coor. adversaire" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "montrer alignement" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "obtenir la coordonnée x de l'adversaire" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Voulez-vous réinstaller %s ?" -#~ msgid "y coor. Enemy" -#~ msgstr "y coor. SumBot" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projet" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "obtenir la coordonnée y de l'adversaire" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Débogage" -#~ msgid "rotation SumBot" -#~ msgstr "rotation SumBot" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Désactiver les info-bulles" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "obtenir la rotation de l'adversaire" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "rotation Enemy" -#~ msgstr "rotation adversaire" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Mot de passe" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "obtenir la rotation de l'adversaire" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "espacement vertical" -#~ msgid "distance to center" -#~ msgstr "distance par rapport au centre" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"complète le polygone rempli (utilisé avec commence le remplissage du bloc)" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "obtient la distance par rapport au centre du dojo" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Partager" -#~ msgid "distance to Enemy" -#~ msgstr "distance à l'adversaire" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "plus petit que" -#~ msgid "get the distance to the Enemy" -#~ msgstr "obtient la distance par rapport à l'adversaire" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "racine carré" -#~ msgid "update information" -#~ msgstr "actualise l'information" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Modifier l'échelle" -#~ msgid "update information from the server" -#~ msgstr "actualise l'information depuis le serveur" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "montrer blocs" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palette de blocs physique" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Quitter" -#~ msgid "start polygon" -#~ msgstr "commence le polygone" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Champ description du Journal Sugar" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Commence à définir un nouveau polygone basé sur la position xy courante de " -#~ "la Tortue" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "fixe gris" -#~ msgid "add point" -#~ msgstr "ajoute un point" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "présentation liste à puce" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Ajoute un nouveau point au polygone courant sur la base de la position xy " -#~ "courante de la Tortue" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "durée" -#~ msgid "end polygon" -#~ msgstr "fin du polygone" +#: turtleblocks.py:354 +msgid "New" +msgstr "Nouveau" -#~ msgid "Define a new polygon." -#~ msgstr "Définit un nouveau polygone" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "placer un commentaire dans votre code" -#~ msgid "end filled polygon" -#~ msgstr "fin du polygone plein" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "lire le pixel" -#~ msgid "Not a simple polygon" -#~ msgstr "Pas un polygone simple" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "échelle" -#~ msgid "Define a new filled polygon." -#~ msgstr "Définit un nouveau polygone plein" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "bas" -#~ msgid "triangle" -#~ msgstr "triangle" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "pourpre" -#~ msgid "base" -#~ msgstr "base" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Diminuer l'échelle des coordonnées" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Ajoute un objet triangle au projet." +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "cliquer pour ouvrir" -#~ msgid "circle" -#~ msgstr "cercle" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "pitch d'entrée du micro" -#~ msgid "Add a circle object to the project." -#~ msgstr "Ajoute un objet cercle au projet" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Configuration" -#~ msgid "rectangle" -#~ msgstr "rectangle" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Description :" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Ajoute un objet rectangle au projet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "journal" -#~ msgid "reset" -#~ msgstr "réinitialise" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "vider la corbeille" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Réinitialise le projet ; efface la liste des objets." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "La tortue dessinera quand elle sera déplacée." -#~ msgid "motor" -#~ msgstr "moteur" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Charger..." -#~ msgid "torque" -#~ msgstr "couple" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Objet audio du Journal Sugar" -#~ msgid "speed" -#~ msgstr "vitesse" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Arrêter la tortue" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Couple moteur et plage de vitesse de 0 (arrêt) à des valeurs positives ; le " -#~ "moteur est placé sur l'objet créé en dernier." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Tortue" -#~ msgid "pin" -#~ msgstr "épingle" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "change l'orientation de la palette des blocs" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Épingle un objet pour l'empêcher de tomber." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "enregistre" -#~ msgid "joint" -#~ msgstr "relie" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Masquer les blocs" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Relie deux objets ensemble (l'objet créé en dernier et l'objet au point x, " -#~ "y)." +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" -#~ msgid "save as Physics activity" -#~ msgstr "enregistrer comme une activité Physics" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "ou" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Enregistre le projet dans le journal comme activité Physique" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "modèle de présentation : liste de puces" -#~ msgid "gear" -#~ msgstr "engrenage" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "opérateur d'identité utilisé pour les blocs d'extension" -#~ msgid "Add a gear object to the project." -#~ msgstr "Ajoute un objet engrenage au projet." +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Diminuer les blocs" -#~ msgid "density" -#~ msgstr "densité" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "définit la taille du texte dessiné par la tortue" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "Définit la propriété densité pour les objets (la densité peut être un nombre " -#~ "positif quelconque)." +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"maintient la valeur du cap courant de la tortue (utilisable à la place d'un " +"bloc numérique)" -#~ msgid "friction" -#~ msgstr "friction" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "image" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Définit la propriété friction pour les objets (valeur de 0 à 1, où 0 " -#~ "désactive la friction et 1 est une friction forte)." +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"retourne le nombre aléatoire compris entre les valeurs minimum (en haut) et " +"maximum (en bas)" -#~ msgid "bounciness" -#~ msgstr "ressort" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"maintient la couleur courante du trait (utilisable à la place d'un bloc " +"numérique)" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Définit la propriété ressort pour les objets (valeur de 0 à 1, où 0 est " -#~ "l'absence de ressort et 1 correspond à un ressort élevé)." +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Afficher la palette" -#~ msgid "dynamic" -#~ msgstr "dynamique" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "enregistre l'image dans le Journal de Sugar" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Si dynamique = 1, l'objet peut se déplacer ; si dynamique = 0, il est fixé " -#~ "en position." +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Enregistrer l'instantané" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palette de blocs WeDo" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "commencer" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == \n" -#~ "tilt left, 2 == tilt right)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "renvoie Vrai si le tas est vide" -#~ msgid "distance sensor output" -#~ msgstr "sortie du capteur de distance" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "avancer la tortue" -#~ msgid "Motor A" -#~ msgstr "Moteur A" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "avance" -#~ msgid "returns the current value of Motor A" -#~ msgstr "retourner la valeur actuelle du moteur A" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "ma boite" -#~ msgid "Motor B" -#~ msgstr "Moteur B" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "ID de compte" -#~ msgid "returns the current value of Motor B" -#~ msgstr "retourner la valeur actuelle du moteur B" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Sélectionner les blocs à partager" -#~ msgid "set the value for Motor A" -#~ msgstr "définir la valeur du moteur A" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "recule" -#~ msgid "set the value for Motor B" -#~ msgstr "définir la valeur du moteur B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "fixe l'échelle du média" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palette de blocs LEGO NXT pour les moteurs" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "conserver la valeur actuelle de l'échelle" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palette de blocs LEGO NXT pour les capteurs" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "présentation 1x1" -#~ msgid "touch" -#~ msgstr "toucher" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "présentation 1x2" -#~ msgid "ultrasonic" -#~ msgstr "ultrason" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "haut de l'action nommable" -#~ msgid "light" -#~ msgstr "lumière" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "stocke une valeur numérique dans la variable nommée" -#, fuzzy -#~ msgid "grey" -#~ msgstr "gris" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "opérateur logique OU" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Veuillez vérifier la connexion avec la brique." +#: 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 "tension d'entrée du micro" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "La valeur de la puissance doit être entre -127 et 127." +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "boucle un certain nombre de fois" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "" -#~ "Une erreur est survenue : vérifiez toutes les connexions et essayez de vous " -#~ "reconnecter." +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Enregistrer..." -#~ msgid "NXT not found" -#~ msgstr "NXT non trouvé" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "invoque la pile d'actions 2" -#~ msgid "refresh NXT" -#~ msgstr "rafraîchir NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "fixe xy" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Recherche d'une brique NXT connectée." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "titre y" -#~ msgid "play tone" -#~ msgstr "jouer une note" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "titre x" -#~ msgid "frequency" -#~ msgstr "fréquence" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "peint le fond" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Jouer une note à cette fréquence pour une durée." +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Enregistrer sous" -#~ msgid "port" -#~ msgstr "port" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "fixe xy" -#~ msgid "power" -#~ msgstr "puissance" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "corbeille" -#~ msgid "rotations" -#~ msgstr "rotations" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polaire" -#~ msgid "turn a motor" -#~ msgstr "tourner un moteur" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "répète" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "synchroniser deux moteurs connectés aux ports B et C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "attendre la fin de la vidéo ou de l'audio en cours" -#~ msgid "PORT A" -#~ msgstr "PORT A" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Enregistrer dans une image" -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A de la brique" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Édition" -#~ msgid "PORT B" -#~ msgstr "PORT B" +#: 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 "résistance d'entrée du micro" -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B de la brique" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "haut de la pile Action 2" -#~ msgid "PORT C" -#~ msgstr "PORT C" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"divise la valeur numérique supérieure (numérateur) par la valeur numérique " +"inférieure (dénominateur)" -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C de la brique" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "start motor" -#~ msgstr "Démarrer le moteur" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "affiche la valeur dans le bloc d'état en bas de l'écran" -#~ msgid "Run a motor forever." -#~ msgstr "Lancer un moteur pour toujours." +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "commence le remplissage" -#~ msgid "brake motor" -#~ msgstr "frein moteur" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "conserve le résultat dans le bloc clavier d'interrogation" -#~ msgid "Stop a specified motor." -#~ msgstr "Arrêter un moteur spécifique" +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# fr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "pousse" -#~ msgid "reset motor" -#~ msgstr "réinitialiser le moteur" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"un bloc programmable: utilisé pour ajouter des équations mathématiques " +"avancées à plusieurs variables, ex: sin(x+y+z)" -#~ msgid "Reset the motor counter." -#~ msgstr "Réinitialiser le compteur du moteur" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "restaurer tout" -#~ msgid "motor position" -#~ msgstr "position du moteur" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "salut" -#~ msgid "Get the motor position." -#~ msgstr "Récupérer la position du moteur" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "BlocsTortue" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"Une tortue inspirée par le langage Logo, qui dessine des dessins colorés à " +"l'aide de blocs de programmation visuelle emboîtables." -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 de la brique" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "Actionne le bouton Arrêter avant de modifier ton programme BlocsTortue" -#~ msgid "read" -#~ msgstr "lire" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "Palettes" -#~ msgid "sensor" -#~ msgstr "capteur" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Publication sur le mur Facebook" -#~ msgid "Read sensor output." -#~ msgstr "Lire la sortie du capteur" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplitude" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "charger" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 de la brique" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "palette" -#~ msgid "light sensor" -#~ msgstr "capteur de lumière" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "sélectionne a palette" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Installe l'activité Parler et essaie à nouveau" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 de la brique" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Espagnol" -#~ msgid "touch sensor" -#~ msgstr "capteur tactile" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "Anglais" -#~ msgid "distance sensor" -#~ msgstr "capteur de distance" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Pardon, je ne comprends pas ce que tu demandes." -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" +"Pardon, il n'y a pas de mémoire libre pour charger mon cerveau. Ferme les " +"autres activités et essaie à nouveau." -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 de la brique" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "pousse la valeur rvb cible sur la pile" -#~ msgid "sound sensor" -#~ msgstr "capteur auditif" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "autre" -#~ msgid "color sensor" -#~ msgstr "capteur de couleur" +#: turtleblocks.py:407 +msgid "About..." +msgstr "À propos de..." -#~ msgid "set light" -#~ msgstr "définir la lumière" +#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgstr "retourne le niveau de la batterie entre 0 et 255" -#~ msgid "Set color sensor light." -#~ msgstr "Définir la luminosité du capteur de couleur." +#~ msgid "Get battery level of the brick" +#~ msgstr "Obtenir le niveau de batterie de la brique" -#~ msgid "HIGH" -#~ msgstr "HAUT" +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "régler l'intensité de la DEL entre 0 et 255" -#~ msgid "LOW" -#~ msgstr "BAS" +#~ msgid "returns the ambient light level" +#~ msgstr "renvoie le niveau d'ambiance lumineuse" -#~ msgid "INPUT" -#~ msgstr "ENTRÉE" +#~ msgid "returns the ambient temperature" +#~ msgstr "renvoie la température ambiante" -#~ msgid "OUTPUT" -#~ msgstr "SORTIE" +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "retourne 0 ou 1 en fonction de l'inclinaison du capteur" -#~ msgid "PWM" -#~ msgstr "MDL" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "bascule entre 0 et 1, la fréquence dépend des vibrations" -#~ msgid "SERVO" -#~ msgstr "SERVO" +#~ msgid "grayscale" +#~ msgstr "niveau de gris" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ERREUR: Vérifiez l'Arduino et le numéro de port." +#~ msgid "ambient light" +#~ msgstr "lumière ambiante" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ERREUR: La valeur doit être comprise entre 0 et 255." +#~ msgid "magnetic induction" +#~ msgstr "induction magnétique" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERREUR: La valeur doit être soit HAUT soit BAS." +#~ msgid "vibration" +#~ msgstr "vibration" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ERREUR: Le mode doit être soit INPUT, OUTPUT, MDL ou SERVO." +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "fait avancer le robot Butia sur une distance prédéfinie." -#~ msgid "pin mode" -#~ msgstr "mode \"pin\"" +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "fait reculer le robot Butia sur une distance prédéfinie" -#~ msgid "mode" -#~ msgstr "mode" +#~ msgid "turn Butia" +#~ msgstr "tourner Butia" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Choisir la function \"pin\" (ENTRÉE, SORTIE, MDL, SERVO)." +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "tourne le robot de x degrés" -#~ msgid "analog write" -#~ msgstr "écriture analogique" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "" +#~ "retourne le niveau de gris de l'objet sous forme de nombre compris entre " +#~ "0 et 1023" -#~ msgid "Write analog value in specified port." -#~ msgstr "Écrire la valeur analogique dans le port spécifié." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "" +#~ "retourne le niveau d'éclairage ambiant sous forme de nombre compris entre " +#~ "0 et 1023" -#~ msgid "analog read" -#~ msgstr "Lecture analogique" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "" +#~ "retourne la température ambiante sous forme de nombre compris entre 0 et " +#~ "255" #~ 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." +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgstr "" -#~ "Lire la valeur d'un port analogique. La valeur peut être entre 0 et 1023. " -#~ "Utilisez Vref pour \n" -#~ "déterminer le voltage. Pour l'USB, volt=((read)*5)/1024) approximativement." - -#~ msgid "digital write" -#~ msgstr "écriture digitale" +#~ "retourne la distance de l'objet en face du capteur sous forme de nombre " +#~ "compris entre 0 et 255" -#~ msgid "Write digital value to specified port." -#~ msgstr "Écrire la valeur digitale sur le port spécifié." +#~ msgid "Load example" +#~ msgstr "Charger l'exemple" -#~ msgid "digital read" -#~ msgstr "lecture digitale" +#~ msgid "displays Cartesian coordinates" +#~ msgstr "afficher coordonnées Cartesienne" -#~ msgid "Read value from digital port." -#~ msgstr "Lire la valeur d'un port digital." +#~ msgid "Load plugin" +#~ msgstr "Charger le module" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Définir HAUT comme valeur du port digital." +#~ msgid "Cartesian coordinates" +#~ msgstr "Coordonnées Cartésiennes" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Configurer le port Arduino pour une entrée digitale." +#~ msgid "Plugin could not be installed." +#~ msgstr "Le module n'a pas pu être installé" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Configurer le port Arduino pour conduire un SERVO." +#~ msgid "Polar coordinates" +#~ msgstr "Coordonnées Polaires" -#~ msgid "Set LOW value for digital port." -#~ msgstr "Définir BAS comme la valeur du port digital." +#~ msgid "Load project" +#~ msgstr "Charger le projet" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Configurer le port Arduino pour la sortie digitale." +#~ msgid "Please restart Turtle Art in order to use the plugin." +#~ msgstr "Merci de redémarrer ArtTurtle pour utiliser le module." -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Configurer le port Arduino pour MDL (modulation de largeur)." +#~ msgid "Load Python block" +#~ msgstr "Charger le bloc Python" #, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palette de blocs WeDo" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Échantillons" +#~ msgid "grey" +#~ msgstr "gris" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" #~ "définir la vitesse des moteurs de Butia avec une valeur entre 0 et 1023, " #~ "passée en argument" @@ -2726,7 +3734,8 @@ msgstr "Sauvegarder le projet ?" #~ msgstr "Bonjour, monde ! Butia" #~ msgid "print text in Butia robot 32-character ASCII display" -#~ msgstr "afficher du texte sur l'afficheur ASCII de 32 caractères du robot Butia" +#~ msgstr "" +#~ "afficher du texte sur l'afficheur ASCII de 32 caractères du robot Butia" #~ msgid "G" #~ msgstr "V" @@ -2861,7 +3870,8 @@ msgstr "Sauvegarder le projet ?" #~ msgstr "bouton poussoir" #~ 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 "" #~ "retourne le niveau de gris de l'objet rencontré sous forme de valeur " #~ "comprise entre 0 et 1023" @@ -2968,7 +3978,8 @@ msgstr "Sauvegarder le projet ?" #~ msgid "restore last" #~ msgstr "restaurer dernier" -#~ 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 bloc programmable: utilisé pour ajouter des équations mathématiques " #~ "avancées, ex: sin(x)" @@ -3073,9 +4084,11 @@ msgstr "Sauvegarder le projet ?" #~ "numérique)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" -#~ "un bloc programmable ajoute votre équation dans le bloc, par exemple sin(x)" +#~ "un bloc programmable ajoute votre équation dans le bloc, par exemple sin" +#~ "(x)" #~ msgid "pop value off FILO" #~ msgstr "sort la valeur de FILO" diff --git a/po/gu.po b/po/gu.po index 0108b28..4b4e5be 100644 --- a/po/gu.po +++ b/po/gu.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# gu.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# gu.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# gu.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# gu.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/ha.po b/po/ha.po index 7626b00..8e66c80 100644 --- a/po/ha.po +++ b/po/ha.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ha.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ha.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ha.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ha.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/he.po b/po/he.po index 860433d..6ac1300 100644 --- a/po/he.po +++ b/po/he.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,1183 +43,1608 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "בלוקי צב" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "לוח פקודות-צב" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "מיני ציור-צב" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "קדימה" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "בלבול צב" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "מזיז את הצב קדימה" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "בחר אתגר" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "אחורה" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "מזיז את הצב אחורה" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "נקה" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "מנקה את המסך ומחזיר את הצב למצב התחלתי" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "שמאלה" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "מסובב את הצב נגד כיוון השעון (זווית במעלות)" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "ימינה" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "מסובב את הצב עם כיוון השעון (זווית במעלות)" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "קשת" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "זווית" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "רדיוס" +#: taextras.py:66 +#, fuzzy +msgid "adjust LED intensity between 0 and 255" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"קבע את עוצמת נורית הLED בין 0 ל255." -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "מזיז את הצב לאורך קשת" +#: taextras.py:67 +#, fuzzy +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר את הערך הנוכחי של עוצמת אור הרקע כמספר בין 0 ל1023." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "קבע ערך XY" +#: taextras.py:68 +#, fuzzy +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר 1 כאשר הכפתור לחוץ, 0 אחרת." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:69 +#, fuzzy +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר את הערך הנוכחי של עוצמת אור הרקע כמספר בין 0 ל1023." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:70 +#, fuzzy +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר את הערך הנוכחי של טמפרטורת החדר כמספר בין 0 ל255." -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:71 +#, fuzzy msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "מזיז את הצב למיקום xcor,ycor;(0,0) הוא מיקום מרכז המסך." +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר את הערך הנוכחי של מדידת המרחק מהאובייקט שמול החיישן כמספר בין 0 ל 255." -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "קבע אזימוט (כיוון)" +#: taextras.py:73 +#, fuzzy +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר 0 או 1 ע\"פ הטיית החיישן." -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "קובע ערך לכיוון (אזימוט) של הצב (0 הוא הכיוון של חלקו העליון של המסך)." +#: taextras.py:74 +#, fuzzy +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר 1 כאשר החיישן מזהה שדה מגנטי, 0 אחרת." -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:75 +#, fuzzy +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מתחלף בין 0 ל-1 בתדירות שנקבעת ע\"פ הרעדה." + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "מכיל את קוארדינטת x הנוכחית של הצב (יכול לשמש במקום בלוק מסוג מספר)" +#: taextras.py:77 +msgid "LED" +msgstr "נורית LED" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "מכיל את קוארדינטת y הנוכחית של הצב (יכול לשמש במקום בלוק מסוג מספר)" +#: taextras.py:79 +msgid "grayscale" +msgstr "גווני אפור" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "כיוון (אזימוט)" +#: taextras.py:80 +msgid "ambient light" +msgstr "אור-רקע" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:81 +msgid "temperature" +msgstr "טמפרטורה" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "מרחק" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "הטייה" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "השראה מגנטית" + +#: taextras.py:85 +msgid "vibration" +msgstr "רעד" + +#: taextras.py:86 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 "התנגדות" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "רובוט Butia" + +#: taextras.py:88 +msgid "refresh Butia" msgstr "" -"מכיל את הערך הנוכחי של כיוון (אזימוט) הצב (יכול לשמש במקום בלוק מסוג מספר)" -#: TurtleArt/tabasics.py:282 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 #, fuzzy -msgid "Palette of pen commands" -msgstr "לוח צבעי עט" +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מחזיר את הערך הנוכחי של טמפרטורת החדר כמספר בין 0 ל255." + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "מלא מסך" +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "צבע" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "גוון צבע" +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "מלא את הרקע עם (צבע, גוון)" +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "gray" +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "קבע צבע" +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "קבע את צבע הקו שמצייר הצב" +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "קבע גוון" +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "קובע את הגוון לצבע הקו שמצייר הצב" +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "קבע אפור" +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "קובע את גוון האפור של הקו שמצייר הצב" +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "מכיל את הערך הנוכחי של צבע העט (יכול לשמש במקום בלוק מסוג מספר)" +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "מכיל את הערך הנוכחי של גוון הצבע של העט" +#: taextras.py:111 +msgid "turn Butia" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "מכיל את הערך הנוכחי של גוון האפור (יכול לשמש במקום בלוק מסוג מספר)" +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" +#: taextras.py:113 +msgid "stop Butia" msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "מסלול הצב כאשר הוא נע יהיה מוסתר." +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "הורד עט" +#: taextras.py:115 +msgid "Butia" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "מסלול הצב כאשר הוא נע ייראה על המסך." +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "קבע עובי עט" +#: taextras.py:120 +#, fuzzy +msgid "Error on initialization of the camera" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"שגיאה באתחול המצלמה." + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "קבע את עובי הקו שהצב יצייר" +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "התחל מילוי" +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "התחל מצולע עם מילוי-צבע (משמש יחד עם בלוק סיים מצולע עם מילוי-צבע)" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "סיים מילוי" +#: taextras.py:126 +msgid "FollowMe" +msgstr "עקוב-אחרי" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "משלים מצולע עם מילוי-צבע (משמש יחד עם בלוק התחל מצולע עם מילוי-צבע)" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "עובי עט" +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "מכיל את הערך הנוכחי של עובי העט (יכול לשמש במקום בלוק מסוג מספר)" +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "לוח צבעי עט" +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "אדום" +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "כתום" +#: taextras.py:133 +msgid "follow" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "צהוב" +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "ירוק" +#: taextras.py:135 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 "בהירות" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "ציאן" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "כחול" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "סגול" +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "לבן" +#: taextras.py:139 +msgid "threshold" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "שחור" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "קבע צבע טקסט (מלל)" +#: taextras.py:142 +msgid "camera mode" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "קבע את בצע הטקסט (מלל) שיצייר הצב" +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "קבע גודל טקסט (מלל)" +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "קובע את גודל הטקסט (מלל) שיצייר הצב" +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "לוח פעולות חשבון" +#: taextras.py:147 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "פלוס" +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "סכום שתי כניסות אלפא-נומריות" +#: taextras.py:149 +msgid "x position" +msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "מינוס" +#: taextras.py:150 +msgid "return x position" +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "מחסיר ערך מספרי של כניסה תחתונה מערך מספרי של כניסה עליונה" +#: taextras.py:151 +msgid "y position" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "כפל" +#: taextras.py:152 +msgid "return y position" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "מכפיל שתי כניסות מספריות" +#: taextras.py:153 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "חילוק" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" msgstr "" -"מחלק את הערך המספרי של הכניסה העליונה (מונה) בזו של הכניסה התחתונה (מכנה)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "זהות (יחידה)" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "אופרטור זהות (יחידה) משמש להרחבת פונקציונליות של בלוקים" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "מודולו" +#: taextras.py:161 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "אופרטור מודולו (שארית)" +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "שורש ריבועי" +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "חשב שורש ריבועי" +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "מספר אקראי" +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "מינימום" +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "מקסימום" +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" msgstr "" -"החזר מספר אקראי בין ערך מינימום (כניסה עליונה) לערך מקסימום (כניסה תחתונה)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "מספר" +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "משמש כערך מספרי בכניסה לפעולות חשבון" +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "גדול מ" +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "גדול מ (אופרטור לוגי)" +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "קטן מ" +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "קטן מ (אופרטור לוגי)" +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "שווה" +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "שווה (אופרטור לוגי)" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "not" +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "אופרטור לוגי NOT (~)" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "and" +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "אופרטור לוגי AND (&&)" +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "or" +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "אופרטור לוגי OR (||)" +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "לוח פעולות בקרת זרימה" +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "המתן" +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "משהה את ריצת התוכנית למספר השניות הנקוב" +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "בלי-סוף" +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "חוזר על פעולות הלולאה בלי-סוף" +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "חזור" +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "חוזר על ביצוע הלולאה מספר נקוב של פעמים" +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "אם" +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "אז" +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "אם-אז" +#: taextras.py:212 +msgid "distance to center" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "אופרטור אם\\אז שמשתמש בבלוקים של אופרטורים בוליאניים מלוח פעולות מספריות" +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" +#: taextras.py:215 +msgid "distance to Enemy" msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "אם-אז-אחרת" +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:217 +msgid "update information" +msgstr "עדכן מידע" + +#: taextras.py:218 +#, fuzzy +msgid "update information from the server" msgstr "" -"אופרטור אם-אז-אחרת שמשתמש בבלוקים של אופרטורים בוליאניים מלוח פעולות מספריות" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"מעדכן מידע מהשרת." + +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "לוח של בלוקי פיזיקה" + +#: taextras.py:224 +msgid "start polygon" +msgstr "התחל מצולע" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "התחל להגדיר מצולע בהתבסס על מיקומו הנוכחי של הצב." + +#: taextras.py:227 +msgid "add point" +msgstr "הוסף נקודה" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "הוסף נקודה חדשה למצולע הנוכחי בהתבסס על מיקומו הנוכחי של הצב." + +#: taextras.py:230 +msgid "end polygon" +msgstr "סיים מצולע" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "הגדר מצולע חדש." + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "סיים מצולע עם מילוי" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "זהו אינו מצולע פשוט" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "הגדר מצולע חדש עם מילוי." + +#: taextras.py:235 +msgid "triangle" +msgstr "משולש" + +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "בסיס" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "גובה" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "רווח אופקי" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "הוסף אובייקט משולש לפרוייקט." -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "מסיט את המחסנית ימינה" +#: taextras.py:240 +msgid "circle" +msgstr "עיגול" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "רווח אנכי" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "הוסף אובייקט עיגול לפרוייקט." -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "מסיט את המחסנית מטה" +#: taextras.py:242 +msgid "rectangle" +msgstr "מרובע" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "עצור פעולה" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "רוחב" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "עוצר את הפעולה הנוכחית" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "הוסף אובייקט מרובע לפרוייקט." -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "לוח של בלוקי משתנים" +#: taextras.py:246 +msgid "reset" +msgstr "אתחל" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "התחל" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "אתחל את הפרוייקט. נקה את רשימת האובייקטים." -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "מחבר את הפעולה לכפתורי ריצה בסרגל-כלים" +#: taextras.py:248 +msgid "motor" +msgstr "מנוע" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "טקסט (מלל)" +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "מומנט-סיבוב" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "ערך מחרוזת" +#: taextras.py:251 +msgid "speed" +msgstr "מהירות" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "פעולה" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "ראש מחסנית פעולות" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "קורא למחסנית פעולות עם שם" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "שמור בקופסה 1" +#: taextras.py:256 +msgid "joint" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "שומר את הערך המספרי במשתנה 1" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "שמור בקופסה 2" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "שומר את הערך המספרי במשתנה 2" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "צרף שני אובייקטים (האובייקט האחרון שנוצר והאובייקט בנקודה x,y)." -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "תיבה 1" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "משתנה 1 (ערך מספרי)" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "שמור את הפרוייקט ביומן כפעילות פיזיקה." -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "תיבה 2" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "משתנה 2 (ערך מספרי)" +#: taextras.py:265 +#, fuzzy +msgid "Add a gear object to the project." +msgstr "הוסף אובייקט עיגול לפרוייקט." -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "שמור ב" +#: taextras.py:266 +msgid "density" +msgstr "צפיפות" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "תיבה" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "קבע ערך לתכונת הצפיפות של אובייקטים (מספר חיובי)." -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "ערך" +#: taextras.py:269 +msgid "friction" +msgstr "חיכוך" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "התיבה שלי" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"קבע ערך לתכונת החיכוך של אובייקטים (ערכים בין 0 ל-1, 0 משמעו ללא חיכוך, 1 " +"משמעו חיכוך רב)." + +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "מקדם תקומה" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"קבע ערך למקדם התקומה של אובייקטים (ערכים בין 0 ל-1, 0 משמעו ללא קיפוץ, 1 " +"משמעו נטייה חזקה לקיפוץ)." + +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "דינאמי" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "אם דינאמי=1 , האובייקט מסוגל לזוז. אם דינאמי=0, האובייקט רתוק למקומו." + +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "לוח של בלוקי חיישנים" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "שומר את הערך המספרי במשתנה עם שם" +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "משתנה עם שם (ערך מספרי)" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "פעולה 1" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "ראש מחסנית פעולה 1" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "פעולה 2" +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "ראש מחסנית פעולה 2" +#: taextras.py:294 +msgid "Motor A" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "קורא למחסנית פעולות 1" +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "קורא למחסנית פעולות 2" +#: taextras.py:296 +msgid "Motor B" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "פח-אשפה" +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "רוקן פח-אשפה" +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "מחק סופית את כל הפריטים מפח האשפה" +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "שחזר הכל" +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "שחזר את כל הבלוקים מפח האשפה" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "נקה הכל" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "העבר את כל הבלוקים לפח האשפה" +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "כותרת" +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "עצור צב" +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "הראה בלוקים" +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "צבע" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "הסתר בלוקים" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "ימינה" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "נכשל נסיון שליחת הפלט ל" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "צליל" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "אני לא יודע איך לבצע" +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "gray" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "לא מחבב" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "כקלט (כניסה)" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "מציג את הלוח הבא" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "משנה את האוריינטציה של לוח הבלוקים" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "פתח..." +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "שמור..." +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "הקלק כדי לפתוח" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "אוריינטציה" +#: taextras.py:329 +msgid "NXT not found" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "הבא" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" +#: taextras.py:331 +msgid "refresh NXT" msgstr "" -#: TurtleArt/tawindow.py:1256 +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "זמן" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +"turn motor\n" +"\n" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "פורט" + +#: taextras.py:345 +msgid "power" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "ציורי צב" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "תמונה" +#: taextras.py:348 +msgid "turn a motor" +msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "שמור כ-LOGO" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "שמור כתמונה" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "לכידת-מסך" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "שמור לכידת-מסך" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" +#: taextras.py:353 +msgid "PORT A of the brick" msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" +#: taextras.py:354 +msgid "PORT B" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "הראה לוח" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "הסתר לוח" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "הקטן קנה-מידה של קוארדינטות" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "הגדל קנה-מידה של קוארדינטות" +#: taextras.py:358 +msgid "start motor" +msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "עריכה" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "תצוגה" +#: taextras.py:360 +msgid "brake motor" +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "פרוייקט" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "העתק" +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "הדבק" +#: taextras.py:365 +msgid "motor position" +msgstr "" -#: TurtleArtActivity.py:591 +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 #, fuzzy -msgid "Restore blocks from trash" -msgstr "שחזר את כל הבלוקים מפח האשפה" +msgid "read" +msgstr "אדום" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "מסך מלא" +#: taextras.py:370 +msgid "sensor" +msgstr "" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "קוארדינטות קרטזיות" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "קוארדינטות פולריות" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "קוארדינטות מטריות" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "הגדל בלוקים" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "הקטן בלוקים" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "פתח דוגמא" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "נקה" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "רוץ!" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "צעד" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "עזרה" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "עצור" +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" +#: taextras.py:382 +msgid "sound sensor" msgstr "" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" +#: taextras.py:383 +msgid "color sensor" msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "טען בלוק פייתון (Python)" +#. 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:386 +msgid "set light" +msgstr "" -#: TurtleArtActivity.py:766 -msgid "Palettes" +#: taextras.py:387 +msgid "Set color sensor light." msgstr "" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" +#: taextras.py:390 +msgid "Get battery level of the brick" msgstr "" -#: TurtleArtActivity.py:888 -msgid "e" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" +#: taextras.py:396 +msgid "LOW" msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" +#: taextras.py:397 +msgid "INPUT" msgstr "" -#: TurtleArtActivity.py:895 -msgid "s" +#: taextras.py:398 +msgid "OUTPUT" msgstr "" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" msgstr "" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:401 +msgid "SERVO" msgstr "" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "פעילות ציורי-צב שלי" +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "אפשר שיתוף-פעולה" +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "פעילויות" +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "חברים" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "שתף" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "קונפיגורציה" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "שכונה" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "כינוי" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "שם משתמש בחשבון" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "שרת" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "פורט" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "סיסמה" +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "מודולו" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "הירשם" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "צבעים" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: 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 "העלאה" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "ערך" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +#: taextras.py:422 +msgid "Write analog value in specified port." msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "העלה לאינטרנט" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: gnome_plugins/uploader_plugin.py:90 +#: taextras.py:424 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"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 "" -"את\\ה צריכ\\ה לפתוח חשבון באתר http://turtleartsite.sugarlabs.org לפני שתוכל\\י " -"להעלות את הפרוייקט לאתר." -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "שם משתמש:" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "סיסמה:" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "כותרת:" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "תיאור:" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "שלח לאינטרנט" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "ביטול" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "נסיון הכניסה למערכת נכשל" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "נסיון ההעלאה נכשל!" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "לוח של בלוקי חיישנים" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "תאוצה" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "שמור את התאוצה בx, y, z במחסנית LIFO" +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"לוח של בלוקי פיזיקה\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"לוח של בלוקי פיזיקה\n" +"#-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-#\n" +"לוח של בלוקי חיישנים" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "צליל" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "אות כניסה ישיר מהמיקרופון" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "עוצמת קול" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "עוצמת קול של כניסת מיקרופון" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "גובה צליל" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "גובה צליל מכניסת מיקרופון" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -#: 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 "התנגדות" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: 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 "התנגדות כניסה של המיקרופון" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: 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 "רמת מתח" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: 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 "רמת מתח של כניסת מיקרופון" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "לוח של בלוקי מדיה" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: 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 "בהירות" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "עוצמת אור שנמדדה ע\"י המצלמה" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "כותרת" #: 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 "צבע RGB ממוצע מהמצלמה יישמר למחסנית" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "צהוב" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "הצג קוארדינטות פולריות" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "מרוקן את מחסנית הFILO" + #: plugins/camera_sensor/camera_sensor.py:106 #: plugins/camera_sensor/camera_sensor.py:113 #: plugins/camera_sensor/camera_sensor.py:121 @@ -1203,83 +1653,98 @@ msgstr "צבע RGB ממוצע מהמצלמה יישמר למחסנית" msgid "camera output" msgstr "אות היציאה מהמצלמה" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "עוצמת אור שנמדדה ע\"י חיישן האור" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "תג-רדיו (RFID)" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "קרא ערך מהתקן RFID" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "שמור את התאוצה בx, y, z במחסנית LIFO" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "כל-עוד" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"אופרטור אם\\אז שמשתמש בבלוקים של אופרטורים בוליאניים מלוח פעולות מספריות" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "אופרטור כל-עוד-אמת שמשתמש באופרטורים בוליאניים מלוח פעולות חשבוניות" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "מסיט את המחסנית ימינה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "עד_ש" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "אובייקט מדיה של יומן Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "אופרטור עד-ש-אמת שמשתמש באופרטורים בוליאניים מלוח פעולות חשבוניות" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "תיבה 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "ראש" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "תיבה 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "ראש של מחסנית ניתנת לצמצום" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "צעד" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "יומן" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "מכפיל שתי כניסות מספריות" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "אובייקט מדיה של יומן Sugar" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "הצג\\הסתר בלוקים" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "צליל" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "הסתר לוח" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "אובייקט צליל של יומן Sugar" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "חברים" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "וידאו" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "פעילות ציורי-צב שלי" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "אובייקט וידאו של יומן Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "תיאור" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "ציאן" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "שדה תיאור של יומן Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "קוארדינטת X של צידו הימני של המסך" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "הצג" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "לוח של אפשרויות נוספות" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "פתח דוגמא" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "העבר את כל הבלוקים לפח האשפה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "רשימה" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "אין הרשאה לכתיבה בספריית קונפיגורציה: %s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "כיוון (אזימוט)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "שומר ציור-צב בפורמט SVG ביומן Sugar" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 @@ -1287,409 +1752,579 @@ msgstr "הצג" msgid "draws text or show media from the Journal" msgstr "מצייר טקסט (מלל) או מראה מדיה מהיומן" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "הצג עם יישור" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "תג-רדיו (RFID)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "קבע קנה מידה" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "וידאו" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "קובע את קנה המידה של המדיה" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "כחול" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "שמור תמונה" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "הצג קוארדינטות קרטזיאניות" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "שם התמונה" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "מסיט את המחסנית מטה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "שמור את התמונה ליומן Sugar" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "אופרטור מודולו (שארית)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "תחתית Y" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 msgid "save SVG" msgstr "שמור SVG" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "שומר ציור-צב בפורמט SVG ביומן Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "מריץ קוד שנמצא במודול tamyblock.py ביומן" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "קנה-מידה" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "הורד עט" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "מכיל את הערך הנוכחי של קנה המידה" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "המתן" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "מתן למדיה" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "תיבה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "ממתין עד סיום הוידאו או הצליל הנוכחי" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "נסיון ההעלאה נכשל!" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "קורא למחסנית פעולות עם שם" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "פעולה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "אופרטור עד-ש-אמת שמשתמש באופרטורים בוליאניים מלוח פעולות חשבוניות" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "משתנה 2 (ערך מספרי)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "חילוק" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "שם התמונה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "דבר" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "כל-עוד" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "שלום" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "רוחב היריעה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "אומר את הטקסט (מלל) הנתון" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "רוקן מחסנית FILO" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "גל סינוס" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "משתנה עם שם (ערך מספרי)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "הבא" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "משך זמן" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "אם-אז" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "משמיע צליל סינוס בתדירות, עוצמה ומשך זמן (בשניות) נתונים" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "קבע עובי עט" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "כפתור לחוץ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "דוגמת-בסיס למצגת - בחר אובייקט מהיומן (בלי תיאור)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "מחזיר 1 אם המשתמש לוחץ כעת על כפתור העכבר" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "עד_ש" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -#, fuzzy -msgid "returns True if mouse button is pressed" -msgstr "מחזיר 1 אם המשתמש לוחץ כעת על כפתור העכבר" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "מחק סופית את כל הפריטים מפח האשפה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "עכבר-x" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "פניית-פרסה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "מחזיר את הערך הנוכחי של קוארדינטת x של העכבר" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "ראש מחסנית פעולה 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "עכבר-y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במשתנה אחד, לדוגמה sin(x)" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "לוח פעולות בקרת זרימה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "ראש המחסנית המצומצמת" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"אופרטור אם-אז-אחרת שמשתמש בבלוקים של אופרטורים בוליאניים מלוח פעולות מספריות" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 msgid "returns mouse y coordinate" msgstr "מחזיר את הערך הנוכחי של קוארדינטת y של העכבר" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "קלט מקלדת" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "מכיל את הערך הנוכחי של גוון הצבע של העט" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "מבקש קלט מהמקלדת (התוצאה נשמרת בבלוק מקלדת)" +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "גל סינוס" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "מקלדת" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "נסיון הכניסה למערכת נכשל" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "מחזיק את תוצאת הבלוק קלט מקלדת" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "שמאל X" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "קרא פיקסל" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "קבע אזימוט (כיוון)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 msgid "RGB color under the turtle is pushed to the stack" msgstr "ערך RGB של הפיקסל שנמצא תחת הצב נשמר במחסנית" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "מסיר בלוקים מיותרים מהיריעה ע\"מ להקל על אי-סדר" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "רווח אופקי" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "קוארדינטות מטריות" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "ערך מחרוזת" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "תיאור" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "אני לא יודע איך לבצע" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "קבע גודל טקסט (מלל)" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "שם משתמש:" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "התחל מצולע עם מילוי-צבע (משמש יחד עם בלוק סיים מצולע עם מילוי-צבע)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "דוגמת-בסיס למצגת - בחר ארבעה אובייקטים מהיומן" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "תצוגה" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "קובע את גוון האפור של הקו שמצייר הצב" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "סיסמה:" + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 msgid "turtle sees" msgstr "צב רואה צבע" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "מחזיר את הצבע שהצב \"רואה\"" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "עצור פעולה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "זמן" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "ירוק" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "זמן שחלף (בשניות) מאז הפעלת התוכנה" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "גוון צבע" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "לוח של אפשרויות נוספות" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "מלא את הרקע עם (צבע, גוון)" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "דחוף\\שמור ערך" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "שמור תמונה" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "גובה צליל" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "מחזיר 1 אם המשתמש לוחץ כעת על כפתור העכבר" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "הגדל קנה-מידה של קוארדינטות" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "כתום" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "משהה את ריצת התוכנית למספר השניות הנקוב" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "שומר ערך במחסנית FILO (ראשון-בפנים אחרון-בחוץ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "הצג מחסנית FILO" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "נקה הכל" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "מציג את הערכים השמורים במחסנית FILO (ראשון-בפנים אחרון-בחוץ)" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "אז" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "רוקן מחסנית FILO" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "הירשם" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "מרוקן את מחסנית הFILO" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "not" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "שלוף\\טען ערך" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "אם-אז-אחרת" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "שולף ערך ממחסנית LIFO (ראשון-בפנים אחרון-בחוץ)" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "עוצר את הפעולה הנוכחית" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "רוקן מחסנית FILO" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "מסובב את הצב עם כיוון השעון (זווית במעלות)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "מכיל את הערך הנוכחי של גוון האפור (יכול לשמש במקום בלוק מסוג מספר)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "הערה" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "קוארדינטת X של צידו השמאלי של המסך" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "מציב הערה בקוד שלך" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "שנה גודל בלוקים לברירת מחדל" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "צב" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "מציג את הלוח הבא" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "הסתר בלוקים" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "עוצמת אור שנמדדה ע\"י המצלמה" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "קטן מ (אופרטור לוגי)" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "שחזר את כל הבלוקים מפח האשפה" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "שמור" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "שמור בקופסה 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "שמור בקופסה 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "הסתר סרגלי כלים של Sugar" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "מכיל את קוארדינטת x הנוכחית של הצב (יכול לשמש במקום בלוק מסוג מספר)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 msgid "print" msgstr "הודעה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "מציג ערך בבלוק סטטוס בתחתית המסך" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "מחזיר את הערך הנוכחי של קוארדינטת x של העכבר" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "שמור כ-LOGO" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "קבע את צבע הקו שמצייר הצב" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "פייתון (Python)" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "קבע צבע טקסט (מלל)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במשתנה אחד, לדוגמה sin(x)" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "עוצמת קול" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במספר משתנים, לדוגמה " -"sqrt(x*x+y*y)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "אפשר שיתוף-פעולה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במספר משתנים, לדוגמה " -"sin(x+y+z)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#, fuzzy +msgid "returns True if mouse button is pressed" +msgstr "מחזיר 1 אם המשתמש לוחץ כעת על כפתור העכבר" -#: 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:653 -msgid "Python block" -msgstr "בלוק פייתון (Python)" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "מספר" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "מריץ קוד שנמצא במודול tamyblock.py ביומן" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "קלט מקלדת" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "קרטזיאני" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "ראש" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "הצג קוארדינטות קרטזיאניות" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "שלח לאינטרנט" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "פולרי" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "קוארדינטות קרטזיות" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "הצג קוארדינטות פולריות" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "כינוי" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "צב" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "קבע קנה מידה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "בחר באיזה צב להשתמש" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "לבן" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "שריון צב" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "מחבר את הפעולה לכפתורי ריצה בסרגל-כלים" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "התאם אישית את השריון שעל הצב" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "זמן שחלף (בשניות) מאז הפעלת התוכנה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "ראש המחסנית המצומצמת" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "ביטול" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "גובה היריעה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -msgid "loads a block" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "מצגת 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "קבע ערך XY" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "מינוס" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "and" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "ראש של מחסנית ניתנת לצמצום" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "לוח של דוגמאות-בסיס למצגת" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "כקלט (כניסה)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "הסתר בלוקים" +#: 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:653 +msgid "Python block" +msgstr "בלוק פייתון (Python)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "מסיר בלוקים מיותרים מהיריעה ע\"מ להקל על אי-סדר" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "מתן למדיה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "הראה בלוקים" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "תאוצה" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "הצג בלוקים מוסתרים" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "מכיל את הערך הנוכחי של עובי העט (יכול לשמש במקום בלוק מסוג מספר)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "הסתר סרגלי כלים של Sugar" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "קבע צבע" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "רשימה" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "מינימום" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "רשימת פריטים עם סימון למצגת" +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "לוח צבעי עט" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "דוגמת-בסיס למצגת - רשימת פריטים עם סימן" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "מציג את הערכים השמורים במחסנית FILO (ראשון-בפנים אחרון-בחוץ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "דוגמת-בסיס למצגת - בחר אובייקט מהיומן (בלי תיאור)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "אופרטור כל-עוד-אמת שמשתמש באופרטורים בוליאניים מלוח פעולות חשבוניות" + +#: turtleblocks.py:363 +msgid "File" +msgstr "קובץ" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "אופרטור לוגי NOT (~)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "קוארדינטת Y של צידו התחתון של המסך" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 msgid "presentation template: select Journal object (with description)" msgstr "דוגמת-בסיס למצגת - בחר אובייקט מהיומן (עם תיאור)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "דוגמת-בסיס למצגת - בחר ארבעה אובייקטים מהיומן" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "לוח פעולות חשבון" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "כפל" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "בלי-סוף" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "קובע את הגוון לצבע הקו שמצייר הצב" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "אומר את הטקסט (מלל) הנתון" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "לכידת-מסך" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "נקה" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1698,113 +2333,302 @@ msgstr "דוגמת-בסיס למצגת - בחר ארבעה אובייקטים מ msgid "presentation template: select two Journal objects" msgstr "דוגמת-בסיס למצגת - בחר שני אובייקטים מהיומן" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "קוארדינטת X של צידו השמאלי של המסך" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "הגדל בלוקים" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "תחתית" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "מסך מלא" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "קוארדינטת Y של צידו התחתון של המסך" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "הקובץ לא נמצא" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "רוחב" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "הצג" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "רוחב היריעה" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "טקסט (מלל)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "קוארדינטת X של צידו הימני של המסך" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "מספר אקראי" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "קוארדינטת Y של צידו העליון של המסך" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "גדול מ (אופרטור לוגי)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "גובה" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "מסובב את הצב נגד כיוון השעון (זווית במעלות)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "גובה היריעה" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "שחור" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "כותרת X" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "חשב שורש ריבועי" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "כותרת Y" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "מכיל את קוארדינטת y הנוכחית של הצב (יכול לשמש במקום בלוק מסוג מספר)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "שמאל X" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "עכבר-x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "מעלה Y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "עכבר-y" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "הפסק" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "גדול מ" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "עזרה" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "לשמור פרוייקט?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "בחר באיזה צב להשתמש" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 msgid "right x" msgstr "ימין X" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "תחתית Y" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "קבע את בצע הטקסט (מלל) שיצייר הצב" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "מצגת 1x1" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "עוצמת אור שנמדדה ע\"י חיישן האור" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "מצגת 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "מקלדת" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "מצגת 1x2" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "קשת" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "רדיוס" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "קוארדינטות פולריות" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "קבע גוון" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "אופרטור לוגי AND (&&)" + +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"את\\ה צריכ\\ה לפתוח חשבון באתר http://turtleartsite.sugarlabs.org לפני שתוכל" +"\\י להעלות את הפרוייקט לאתר." + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "רוץ!" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "הצג מחסנית FILO" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "קובע ערך לכיוון (אזימוט) של הצב (0 הוא הכיוון של חלקו העליון של המסך)." + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "עוצמת קול של כניסת מיקרופון" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "כותרת:" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "לוח של בלוקי מדיה" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "שחזר את כל הבלוקים מפח האשפה" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "לוח של בלוקי משתנים" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "משמש כערך מספרי בכניסה לפעולות חשבון" + +#: 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 "העלאה" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "שרת" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 msgid "presentation 2x2" msgstr "מצגת 2x2" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "משתנה 1 (ערך מספרי)" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "שכונה" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "סכום שתי כניסות אלפא-נומריות" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "שווה" -#: pysamples/brain.py:100 -msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "לא מחבב" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "יש לך עבודה שטרם נשמרה. האם תרצה לשמור אותה לפני יציאה מהתוכנית?" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "הפסק" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "הצג בלוקים מוסתרים" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "מסלול הצב כאשר הוא נע יהיה מוסתר." + +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "שלוף\\טען ערך" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "עובי עט" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "שריון צב" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "משמיע צליל סינוס בתדירות, עוצמה ומשך זמן (בשניות) נתונים" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "דבר" + +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "קרא ערך מהתקן RFID" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "מזיז את הצב לאורך קשת" + +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "בצע פניית-פרסה" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "שווה (אופרטור לוגי)" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "לוח צבעי עט" + +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "שומר את הערך המספרי במשתנה 1" + +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "שומר את הערך המספרי במשתנה 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "התאם אישית את השריון שעל הצב" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "כפתור לחוץ" + +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "מזיז את הצב אחורה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "קוארדינטת Y של צידו העליון של המסך" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "הראה בלוקים" #: pysamples/grecord.py:217 msgid "play" @@ -1814,329 +2638,825 @@ msgstr "נגן" msgid "save" msgstr "שמור" -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "צבעים" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "פניית-פרסה" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "קבע את עובי הקו שהצב יצייר" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "בצע פניית-פרסה" +#: turtleblocks.py:355 +msgid "Open" +msgstr "פתח" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "אוריינטציה" -#: turtleblocks.py:240 -msgid "No option action:" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" msgstr "" +"בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במספר משתנים, לדוגמה sqrt(x*x" +"+y*y)" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "הקובץ לא נמצא" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "אם" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "אין הרשאה לכתיבה בספריית קונפיגורציה: %s" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "מזיז את הצב למיקום xcor,ycor;(0,0) הוא מיקום מרכז המסך." -#: turtleblocks.py:354 -msgid "New" -msgstr "חדש" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "פייתון (Python)" -#: turtleblocks.py:355 -msgid "Open" -msgstr "פתח" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "עצור" -#: turtleblocks.py:356 -msgid "Save" -msgstr "שמור" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "פעולה 2" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "שמור בשם" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "פעולה 1" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "יציאה" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "סיים מילוי" -#: turtleblocks.py:363 -msgid "File" -msgstr "קובץ" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "העתק" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "שנה קנה מידה של קוארדינטות" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "הדבק" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "שנה גודל בלוקים לברירת מחדל" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "נכשל נסיון שליחת הפלט ל" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "הצג\\הסתר בלוקים" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "פעילויות" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "העלה לאינטרנט" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "רוקן מחסנית FILO" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "שולף ערך ממחסנית LIFO (ראשון-בפנים אחרון-בחוץ)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "נקה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "לוח של דוגמאות-בסיס למצגת" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "זווית" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "זהות (יחידה)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "מעלה Y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "צליל" #: turtleblocks.py:396 msgid "Tools" msgstr "כלים" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "שמאלה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "הערה" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "מחסיר ערך מספרי של כניסה תחתונה מערך מספרי של כניסה עליונה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "מבקש קלט מהמקלדת (התוצאה נשמרת בבלוק מקלדת)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "קרטזיאני" + +#: 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 "רמת מתח" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "מנקה את המסך ומחזיר את הצב למצב התחלתי" + +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "אות כניסה ישיר מהמיקרופון" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "מחזיר את הצבע שהצב \"רואה\"" + +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "קורא למחסנית פעולות 1" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "לוח פקודות-צב" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "חוזר על פעולות הלולאה בלי-סוף" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "הצג עם יישור" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "ציורי צב" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "פרוייקט" + #: turtleblocks.py:402 msgid "Debug" msgstr "נפה שגיאות" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "סיסמה" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "רווח אנכי" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "משלים מצולע עם מילוי-צבע (משמש יחד עם בלוק התחל מצולע עם מילוי-צבע)" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "שתף" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "קטן מ" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "שורש ריבועי" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "שנה קנה מידה של קוארדינטות" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "הראה בלוקים" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "יציאה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "שדה תיאור של יומן Sugar" + +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "קבע אפור" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "רשימת פריטים עם סימון למצגת" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "משך זמן" + +#: turtleblocks.py:354 +msgid "New" +msgstr "חדש" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "מציב הערה בקוד שלך" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "קרא פיקסל" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "קנה-מידה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "תחתית" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "סגול" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "הקטן קנה-מידה של קוארדינטות" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "הקלק כדי לפתוח" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "גובה צליל מכניסת מיקרופון" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "קונפיגורציה" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "תיאור:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "יומן" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "רוקן פח-אשפה" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "מסלול הצב כאשר הוא נע ייראה על המסך." + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "פתח..." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "אובייקט צליל של יומן Sugar" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "עצור צב" + #: turtleblocks.py:404 msgid "Turtle" msgstr "צב" -#: turtleblocks.py:407 -msgid "About..." +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "משנה את האוריינטציה של לוח הבלוקים" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "שמור ב" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "הסתר בלוקים" + +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "טען בלוק פייתון (Python)" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "פלוס" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "or" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "דוגמת-בסיס למצגת - רשימת פריטים עם סימן" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "אופרטור זהות (יחידה) משמש להרחבת פונקציונליות של בלוקים" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "הקטן בלוקים" + +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "קובע את גודל הטקסט (מלל) שיצייר הצב" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" msgstr "" +"מכיל את הערך הנוכחי של כיוון (אזימוט) הצב (יכול לשמש במקום בלוק מסוג מספר)" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "יש לך עבודה שטרם נשמרה. האם תרצה לשמור אותה לפני יציאה מהתוכנית?" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "תמונה" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "לשמור פרוייקט?" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"החזר מספר אקראי בין ערך מינימום (כניסה עליונה) לערך מקסימום (כניסה תחתונה)" -#~ msgid "Turtle Art Mini" -#~ msgstr "מיני ציור-צב" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "מכיל את הערך הנוכחי של צבע העט (יכול לשמש במקום בלוק מסוג מספר)" -#~ msgid "Turtle Confusion" -#~ msgstr "בלבול צב" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "הראה לוח" -#~ msgid "Select a challenge" -#~ msgstr "בחר אתגר" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "שמור את התמונה ליומן Sugar" -#, fuzzy -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "קבע את עוצמת נורית הLED בין 0 ל255." +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "שמור לכידת-מסך" -#, fuzzy -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "מחזיר את הערך הנוכחי של עוצמת אור הרקע כמספר בין 0 ל1023." +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "התחל" -#, fuzzy -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "מחזיר 1 כאשר הכפתור לחוץ, 0 אחרת." +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "מזיז את הצב קדימה" -#, fuzzy -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "מחזיר את הערך הנוכחי של עוצמת אור הרקע כמספר בין 0 ל1023." +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "קדימה" -#, fuzzy -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "מחזיר את הערך הנוכחי של טמפרטורת החדר כמספר בין 0 ל255." +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "התיבה שלי" -#, fuzzy -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "מחזיר את הערך הנוכחי של מדידת המרחק מהאובייקט שמול החיישן כמספר בין 0 ל 255." +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "שם משתמש בחשבון" -#, fuzzy -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "מחזיר 0 או 1 ע\"פ הטיית החיישן." +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "אחורה" -#, fuzzy -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "מחזיר 1 כאשר החיישן מזהה שדה מגנטי, 0 אחרת." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "קובע את קנה המידה של המדיה" -#, fuzzy -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "מתחלף בין 0 ל-1 בתדירות שנקבעת ע\"פ הרעדה." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "מכיל את הערך הנוכחי של קנה המידה" -#~ msgid "LED" -#~ msgstr "נורית LED" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "מצגת 1x1" -#~ msgid "grayscale" -#~ msgstr "גווני אפור" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "מצגת 1x2" -#~ msgid "ambient light" -#~ msgstr "אור-רקע" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "ראש מחסנית פעולות" -#~ msgid "temperature" -#~ msgstr "טמפרטורה" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "שומר את הערך המספרי במשתנה עם שם" -#~ msgid "distance" -#~ msgstr "מרחק" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "אופרטור לוגי OR (||)" -#~ msgid "tilt" -#~ msgstr "הטייה" +#: 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 "רמת מתח של כניסת מיקרופון" -#~ msgid "magnetic induction" -#~ msgstr "השראה מגנטית" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "חוזר על ביצוע הלולאה מספר נקוב של פעמים" -#~ msgid "vibration" -#~ msgstr "רעד" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "שמור..." -#~ msgid "Butia Robot" -#~ msgstr "רובוט Butia" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "קורא למחסנית פעולות 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 #, fuzzy -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "מחזיר את הערך הנוכחי של טמפרטורת החדר כמספר בין 0 ל255." +msgid "setxy" +msgstr "קבע ערך XY" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "כותרת Y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "כותרת X" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "מלא מסך" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "שמור בשם" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "קבע ערך XY" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "פח-אשפה" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "פולרי" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "חזור" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "ממתין עד סיום הוידאו או הצליל הנוכחי" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "שמור כתמונה" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "עריכה" + +#: 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 "התנגדות כניסה של המיקרופון" + +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "ראש מחסנית פעולה 2" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"מחלק את הערך המספרי של הכניסה העליונה (מונה) בזו של הכניסה התחתונה (מכנה)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "מקסימום" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "מציג ערך בבלוק סטטוס בתחתית המסך" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "התחל מילוי" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 #, fuzzy -#~ msgid "Error on initialization of the camera" -#~ msgstr "שגיאה באתחול המצלמה." +msgid "holds results of query-keyboard block as ASCII" +msgstr "מחזיק את תוצאת הבלוק קלט מקלדת" -#~ msgid "FollowMe" -#~ msgstr "עקוב-אחרי" +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# he.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "דחוף\\שמור ערך" -#~ msgid "update information" -#~ msgstr "עדכן מידע" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במספר משתנים, לדוגמה sin(x+y+z)" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "שחזר הכל" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "שלום" + +#. TRANS: "name" option from activity.info file #, fuzzy -#~ msgid "update information from the server" -#~ msgstr "מעדכן מידע מהשרת." +msgid "TurtleBlocks" +msgstr "בלוקי צב" -#~ msgid "Palette of physics blocks" -#~ msgstr "לוח של בלוקי פיזיקה" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#~ msgid "start polygon" -#~ msgstr "התחל מצולע" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "ימינה" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "התחל להגדיר מצולע בהתבסס על מיקומו הנוכחי של הצב." +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "gray" -#~ msgid "add point" -#~ msgstr "הוסף נקודה" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "הוסף נקודה חדשה למצולע הנוכחי בהתבסס על מיקומו הנוכחי של הצב." +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "אדום" -#~ msgid "end polygon" -#~ msgstr "סיים מצולע" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "מודולו" -#~ msgid "Define a new polygon." -#~ msgstr "הגדר מצולע חדש." +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "" -#~ msgid "end filled polygon" -#~ msgstr "סיים מצולע עם מילוי" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" -#~ msgid "Not a simple polygon" -#~ msgstr "זהו אינו מצולע פשוט" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "" -#~ msgid "Define a new filled polygon." -#~ msgstr "הגדר מצולע חדש עם מילוי." +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#~ msgid "triangle" -#~ msgstr "משולש" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "" -#~ msgid "base" -#~ msgstr "בסיס" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "" -#~ msgid "Add a triangle object to the project." -#~ msgstr "הוסף אובייקט משולש לפרוייקט." +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "" -#~ msgid "circle" -#~ msgstr "עיגול" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "" -#~ msgid "Add a circle object to the project." -#~ msgstr "הוסף אובייקט עיגול לפרוייקט." +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "" -#~ msgid "rectangle" -#~ msgstr "מרובע" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "הוסף אובייקט מרובע לפרוייקט." +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" -#~ msgid "reset" -#~ msgstr "אתחל" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "אתחל את הפרוייקט. נקה את רשימת האובייקטים." +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "" -#~ msgid "motor" -#~ msgstr "מנוע" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "" -#~ msgid "torque" -#~ msgstr "מומנט-סיבוב" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "" -#~ msgid "speed" -#~ msgstr "מהירות" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "צרף שני אובייקטים (האובייקט האחרון שנוצר והאובייקט בנקודה x,y)." +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "שמור את הפרוייקט ביומן כפעילות פיזיקה." +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "" -#, fuzzy -#~ msgid "Add a gear object to the project." -#~ msgstr "הוסף אובייקט עיגול לפרוייקט." +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" -#~ msgid "density" -#~ msgstr "צפיפות" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "קבע ערך לתכונת הצפיפות של אובייקטים (מספר חיובי)." +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "" -#~ msgid "friction" -#~ msgstr "חיכוך" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "פורט" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "קבע ערך לתכונת החיכוך של אובייקטים (ערכים בין 0 ל-1, 0 משמעו ללא חיכוך, 1 " -#~ "משמעו חיכוך רב)." +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "bounciness" -#~ msgstr "מקדם תקומה" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "לוח של בלוקי חיישנים" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "קבע ערך למקדם התקומה של אובייקטים (ערכים בין 0 ל-1, 0 משמעו ללא קיפוץ, 1 " -#~ "משמעו נטייה חזקה לקיפוץ)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "" -#~ msgid "dynamic" -#~ msgstr "דינאמי" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "אם דינאמי=1 , האובייקט מסוגל לזוז. אם דינאמי=0, האובייקט רתוק למקומו." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "" -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "לוח של בלוקי חיישנים" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "ימינה" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "" -#, fuzzy -#~ msgid "grey" -#~ msgstr "gray" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "" -#, fuzzy -#~ msgid "port" -#~ msgstr "פורט" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#, fuzzy -#~ msgid "read" -#~ msgstr "אדום" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "" -#, fuzzy -#~ msgid "mode" -#~ msgstr "מודולו" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "לוח של בלוקי חיישנים" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +msgid "loads a block" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "" + +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" + +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" + +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" + +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" + +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" + +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" + +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" + +#: turtleblocks.py:86 +msgid "usage is" +msgstr "" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "" + +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "display Butia" @@ -2197,7 +3517,8 @@ msgstr "לשמור פרוייקט?" #, fuzzy #~ 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 "" #~ "מחזיר את הערך הנוכחי של גוון האפור של האובייקט שזיהה החיישן כמספר בין 0 ל " #~ "1024." diff --git a/po/hi.po b/po/hi.po index 0bb8973..98f01c8 100644 --- a/po/hi.po +++ b/po/hi.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,1191 +43,1592 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "कछुआ ब्लॉक" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "टर्टल कमांडों के पैलेट" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "कछुए कला मिनी" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "आगे" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "कछुए भ्रम" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "टर्टल को आगे खिसकाता है" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "एक चुनौती का चयन करें" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "पीछे" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "टर्टल को पीछे खिसकाता है" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "मेक्सिकन पेसोस का पैलेट" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "साफ" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "कोलम्बियाई पेसो का पैलेट" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "स्क्रीन को साफ करता है व टर्टल को रीसेट करता है" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Rwandan फ़्रैंक का पैलेट" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "बायाँ" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "टर्टल घड़ी के विपरीत दिशा में घुमाता है (कोण डिग्री में)" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "दायाँ" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "टर्टल को घड़ी की दिशा में घुमाता है (कोण डिग्री में)" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "चाप" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "कोण" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "त्रिज्या" +#: taextras.py:66 +#, fuzzy +msgid "adjust LED intensity between 0 and 255" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 और 255 के बीच एलईडी तीव्रता को समायोजित करें." -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "चाप के साथ-साथ टर्टल को खिसकाता है" +#: taextras.py:67 +#, fuzzy +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 और 1023 के बीच एक संख्या के रूप में परिवेश प्रकाश स्तर देता है." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy सेट करें" +#: taextras.py:68 +#, fuzzy +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"1 देता है, जब बटन प्रेस और अन्यथा 0 है." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "एक्स" +#: taextras.py:69 +#, fuzzy +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 और 1023 के बीच एक संख्या के रूप में परिवेश प्रकाश स्तर देता है." -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "वाई" +#: taextras.py:70 +#, fuzzy +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 और 255 के बीच एक संख्या के रूप में परिवेश के तापमान देता है." -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:71 +#, fuzzy msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -"टर्टल को एक्स निर्देशांक, वाय निर्देशांक; (0, 0) पर खिसकाता है जो कि स्क्रीन " -"के केंद्र में है." +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 और 255 के बीच एक संख्या के रूप में वस्तु से सेंसर के सामने दूरी देता है." -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "शीर्षक सेट करें" +#: taextras.py:73 +#, fuzzy +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 या 1 रिटर्न संवेदक झुकाव पर निर्भर करता है." -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "टर्टल का शीर्षक सेट करता है (0 स्क्रीन के शीर्ष की तरफ है.)" +#: taextras.py:74 +#, fuzzy +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"1 देता है जब सेंसर एक चुंबकीय क्षेत्र, अन्यथा 0 का पता लगाता है." + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "एक्स निर्देशांक" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:77 +msgid "LED" msgstr "" -"टर्टल का एक्स-निर्देशांक रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता " -"है)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "वाय निर्देशांक" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:79 +msgid "grayscale" msgstr "" -"टर्टल का एक्स-निर्देशांक रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता " -"है)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "शीर्षक" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:81 +#, fuzzy +msgid "temperature" msgstr "" -"टर्टल का वर्तमान शीर्ष मान रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा " -"सकता है)" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"तापक्रम" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "पेन कमांडों के पैलेट" +#: taextras.py:82 taextras.py:291 +#, fuzzy +msgid "distance" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"दूरी" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "स्क्रीन भरें" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "रंग" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "छाया" +#: taextras.py:86 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 "प्रतिरोधक" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "पृष्ठभूमि को (रंग, छाया) से भरता है" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "भूरा" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "रंग सेट करें" +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "टर्टल द्वारा बनाए जाने वाले लाइन का रंग सेट करता है" +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "छाया सेट करें" +#: taextras.py:92 +#, fuzzy +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 और 255 के बीच एक संख्या के रूप में परिवेश के तापमान देता है." + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "टर्टल द्वारा बनाए जाने वाले लाइन की छाया सेट करता है" +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "सेट ग्रे" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "टर्टल द्वारा बनाए जाने वाले लाइन की छाया सेट करता है" +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "वर्तमान पेन रंग रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "वर्तमान पेन छाया रखता है" +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" msgstr "" -"वर्तमान पेन आकार रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "पेन ऊपर" +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "जब टर्टल को खिसकाया जाएगा तो ड्राइंग नहीं बनाएगा." +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "पेन नीचे" +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "जब टर्टल को खिसकाया जाएगा तो ड्राइंग बनाएगा." +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "पेन आकार सेट करें" +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "टर्टल द्वारा बनाए जाने वाले लाइन का आकार सेट करता है" +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "प्रारंभ भरें" +#: taextras.py:111 +msgid "turn Butia" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "भरा बहुभुज (अंत भरण ब्लॉक के साथ इस्तेमाल किया) से शुरू होता है" +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "अंत भरें" +#: taextras.py:113 +msgid "stop Butia" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "भरा बहुभुज (शुरू ब्लॉक भरने के साथ प्रयोग किया जाता) पूर्ण" +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "पेन आकार" +#: taextras.py:115 +msgid "Butia" +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "" -"वर्तमान पेन आकार रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "पेन रंगों के पैलेट" +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "लाल" +#: taextras.py:121 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "नारंगी" +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "पीला" +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "हरा" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "क्यान" +#: taextras.py:126 +msgid "FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "नीला" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "बैंगनी" +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "लिखें" +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "पीछे" +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "पाठ रंग सेट करें" +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "टर्टल द्वारा लिखे जाने वाले पाठ का रंग सेट करता है" +#: taextras.py:133 +msgid "follow" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "पाठ आकार सेट करें" +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "टर्टल द्वारा लिखे जाने वाले पाठ का आकार सेट करता है" +#: taextras.py:135 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 "चमक" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "अंकीय ऑपरेटर्स के पैलेट" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "योग" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "दो अल्फ़ान्यूमेरिक इनपुट को जोड़ता है" +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "ऋण" +#: taextras.py:139 +msgid "threshold" +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "निम्न अंकीय इनपुट को शीर्ष अंकीय इनपुट से घटाता है" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "गुणा" +#: taextras.py:142 +msgid "camera mode" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "दो अंकीय इनपुट का गुणन करता है" +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "भाग दें" +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "शीर्ष अंकीय इनपुट (अंश) को तल अंकीय इनपुट (हर) से विभाजित करता है" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "पहचान" +#: taextras.py:149 +msgid "x position" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" +#: taextras.py:150 +msgid "return x position" msgstr "" -"वर्तमान खण्डों के विस्तार के लिए प्रयोग में लाए जाने वाले आइडेंटिटी ऑपरेटर" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "मॉड" +#: taextras.py:151 +msgid "y position" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "मॉड्यूलर (बाकी) आपरेटर" +#: taextras.py:152 +msgid "return y position" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:153 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "वर्ग मूल" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "वर्ग मूल की गणना करता है" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "बेतरतीब" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "न्यून." +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "अधि." +#: taextras.py:161 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:162 +msgid "error in string conversion" msgstr "" -"न्यूनतम (शीर्ष) तथा अधिकतम (तल) मूल्यों के बीच रेंडम (बेतरतीब) संख्या लौटाता " -"है" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "संख्या" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "गणितीय ऑपरेटरों में अंकीय इनपुट के रूप में प्रयोग में आता है" +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "से बड़ा" +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "लॉजिकल ग्रेटर-दैन ऑपरेटर" +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "से कम" +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "लॉजिकल लेस-दैन ऑपरेटर" +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "के बराबर" +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "लॉजिकल इक्वल-टू ऑपरेटर" +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "नहीं" +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "लॉजिकल नॉट ऑपरेटर" +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "और" +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "लॉजिकल एंड ऑपरेटर" +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "या" +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "लॉजिकल ऑर ऑपरेटर" +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "फ्लो ऑपरेटर्स के पैलेट" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "इंतजार करें" +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "प्रोग्राम को चलाना निर्धारित सेकण्डों तक ठहराए रखता है" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "हमेशा के लिए" +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "दोहराएँ हमेशा के लिए" +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "दोहराएँ" +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "निर्दिष्ट संख्या तक लूप करता है" +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "यदि" +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "तब" +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "यदि तब" +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "यदि-तब ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "यदि तब अन्यथा" +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "यदि-तब-अन्यथा ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "आड़ी जगह" +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "ढेर को दाएँ जाग करता है" +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "खड़ी जगह" +#: taextras.py:212 +msgid "distance to center" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "ढेर नीचे जॉग करता है" +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "कार्य रोकें" +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "वर्तमान क्रिया रोकता है" +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "चर पिण्डों के पैलेट" +#: taextras.py:217 +msgid "update information" +msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "प्रारंभ" +#: taextras.py:218 +msgid "update information from the server" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "कार्य को औजारपट्टी बटनों से कनेक्ट करता है" +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "सेंसर ब्लॉकों के पैलेट" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "पाठ" +#: taextras.py:224 +msgid "start polygon" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "स्ट्रिंग मान" +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "क्रिया" +#: taextras.py:227 +msgid "add point" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "नामित योग्य कार्य स्टैक का शीर्ष" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "नामित कार्य स्टैक को बुलाता है" +#: taextras.py:230 +msgid "end polygon" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "बक्सा 1 में भंडारित करें" +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "अंकीय मान को चर 1 में भंडारित करता है" +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "बक्सा 2 में भंडारित करें" +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "अंकीय मान को चर 2 में भंडारित करता है" +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "बक्सा 1" +#: taextras.py:235 +msgid "triangle" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "चर 1 (अंकीय मान)" +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "बक्सा 2" +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "ऊँचाई" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "चर 2 (अंकीय मान)" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "में भंडारित करें" +#: taextras.py:240 +msgid "circle" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "बक्सा" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "मान" +#: taextras.py:242 +msgid "rectangle" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "मेरा बक्सा" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "चौड़ाई" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "अंकीय मान को नामित चर में भंडारित करता है" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "नामित चर (अंकीय मान)" +#: taextras.py:246 +msgid "reset" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "क्रिया 1" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "कार्य स्टैक 1 का शीर्ष" +#: taextras.py:248 +msgid "motor" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "क्रिया 2" +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "कार्य स्टैक 2 का शीर्ष" +#: taextras.py:251 +msgid "speed" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "कार्य 1 स्टैक को बुलाता है" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "कार्य 2 स्टैक को बुलाता है" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "कचरा" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "रद्दी खाली करें" +#: taextras.py:256 +msgid "joint" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "रद्दी की वस्तुओं को हमेशा के लिए मिटा दें" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "एक्स" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "सभी बहाल करें" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "वाई" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "रद्दी की टोकरी से सभी पिण्डों को बहाल करें" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "सब स्पष्ट" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "सभी ब्लॉकों के लिए कचरा चाल" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "शीर्षक" +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "टर्टल बन्द करें" +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "पहचान" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "खण्ड दिखाएँ" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "खण्ड छुपाएँ" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "यहाँ आउटपुट नहीं दें" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "मुझे पता नहीं कि कैसे" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "जैसा नहीं" +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "इनपुट के रूप में" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "अगला पैलेट दिखाता है" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "पिण्डों के पैलेट की दिशा बदलता है" +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "सेंसर ब्लॉकों के पैलेट" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "लोड..." +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "सहेजें..." +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "खोलने के लिए क्लिक करें" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "दिशा" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "अगला" +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" +#: taextras.py:294 +msgid "Motor A" msgstr "" -#: TurtleArt/tawindow.py:1256 +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "रंग" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "दायाँ" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "ध्वनि" + +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "भूरा" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "समय" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +"turn motor\n" +"\n" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "Port" + +#: taextras.py:345 +msgid "power" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "टर्टल आर्ट" +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +#, fuzzy +msgid "rotations" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"परिक्रमण" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "फोटो" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "लोगो के रूप में सहेजें" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "फ़ोटो के रूप में सहेजें" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "स्नेपशॉट" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "स्नेपशॉट सहेजें" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" +#: taextras.py:354 +msgid "PORT B" msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" +#: taextras.py:355 +msgid "PORT B of the brick" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "रंगपट्टिका दिखाएँ" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "रंगपट्टिका छुपाएँ" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "निर्देशांकों को नीचे रीस्केल करें" +#: taextras.py:358 +msgid "start motor" +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "निर्देशांकों को ऊपर रीस्केल करें" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "संपादन" +#: taextras.py:360 +msgid "brake motor" +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "दृश्य" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "परियोजना" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" +#: taextras.py:364 +msgid "Reset the motor counter." msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "नक़ल" +#: taextras.py:365 +msgid "motor position" +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "चिपकाएँ" +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" -#: TurtleArtActivity.py:591 +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 #, fuzzy -msgid "Restore blocks from trash" -msgstr "रद्दी की टोकरी से सभी पिण्डों को बहाल करें" +msgid "read" +msgstr "लाल" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "पूर्ण स्क्रीन" +#: taextras.py:370 +msgid "sensor" +msgstr "" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "कार्टेसियन निर्देशांक" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "घ्रुवीय निर्देशांक" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "मेट्रिक निर्देशांक" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "पिण्ड बड़ा करें" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "पिण्ड छोटा करें" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "लोड उदाहरण" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "साफ" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "चलाएँ" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "चरण" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "मदद" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "रूकें" +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" +#: taextras.py:382 +msgid "sound sensor" msgstr "" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" +#: taextras.py:383 +msgid "color sensor" msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "लोड Python ब्लॉक" +#. 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:386 +msgid "set light" +msgstr "" -#: TurtleArtActivity.py:766 -msgid "Palettes" +#: taextras.py:387 +msgid "Set color sensor light." msgstr "" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: taextras.py:396 +msgid "LOW" +msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: taextras.py:397 +msgid "INPUT" +msgstr "" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" msgstr "" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:401 +msgid "SERVO" msgstr "" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "मेरा Turtle कला सत्र" +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "सहयोग सक्षम" +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "क्रियाएँ" +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "दोस्त" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "साझा करें" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "विन्यास" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "आसपडोस" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "उपनाम" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "खाता आईडी" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "सर्वर" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "कूटशब्द" +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "मॉड" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "पंजीकृत करे" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "रंग" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: 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 "अपलोड" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "मान" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +#: taextras.py:422 +msgid "Write analog value in specified port." msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "वेब पर अपलोड करें" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: gnome_plugins/uploader_plugin.py:90 +#: taextras.py:424 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"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 "" -"आप अपनी परियोजना अपलोड करने http://turtleartsite.sugarlabs.org पर एक खाता " -"होना चाहिए." -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "उपयोक्ता नाम:" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "कूटशब्द:" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "शीर्षक:" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "विवरण:" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "वेब को भेजें" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "रद्द करें" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "लॉगइन असफल" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "अपलोड करने में विफल!" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: 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:330 -msgid "Palette of sensor blocks" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" msgstr "सेंसर ब्लॉकों के पैलेट" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "त्वरण" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "x, y, Z में त्वरण ढेर करने के लिए धक्का" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "ध्वनि" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "कच्चे माइक्रोफोन इनपुट संकेत" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "आवाज़ की उंचाई" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "माइक्रोफ़ोन इनपुट आवाज़ निर्धारक" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "पिच" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "माइक्रोफ़ोन इनपुट पिच" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: 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 "प्रतिरोधक" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: 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 "माइक्रोफोन इनपुट प्रतिरोध" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: 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 "वोल्टेज" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: 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 "माइक्रोफ़ोन इनपुट आवाज़ निर्धारक" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "मीडिया वस्तुओं की पैलेट" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: 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 "चमक" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "प्रकाश कैमरे द्वारा पता लगाया स्तर" +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-#\n" +"नमूने" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "शीर्षक" #: 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 "औसत RGB रंग कैमरे से ढेर करने के लिए धक्का दिया है" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "पीला" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "ध्रुवीय निर्देशांक प्रदर्शित करता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) को खाली करता है" + #: plugins/camera_sensor/camera_sensor.py:106 #: plugins/camera_sensor/camera_sensor.py:113 #: plugins/camera_sensor/camera_sensor.py:121 @@ -1211,816 +1637,1808 @@ msgstr "औसत RGB रंग कैमरे से ढेर करने msgid "camera output" msgstr "कैमरा उत्पादन" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "प्रकाश प्रकाश संवेदक द्वारा पता लगाया स्तर" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "x, y, Z में त्वरण ढेर करने के लिए धक्का" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "यदि-तब ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" + +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "ढेर को दाएँ जाग करता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "सुगर दैनिकी मीडिया वस्तु" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "बक्सा 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "बक्सा 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "चरण" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "दो अंकीय इनपुट का गुणन करता है" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "पिण्ड दिखाएँ/छुपाएँ" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "रंगपट्टिका छुपाएँ" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "दोस्त" + +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "मेरा Turtle कला सत्र" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "सुगर दैनिकी ऑडियो वस्तु" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "क्यान" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "स्क्रीन के दाएँ का एक्स निर्देशांक" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "अतिरिक्त विकल्प के पैलेट" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "लोड उदाहरण" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "सभी ब्लॉकों के लिए कचरा चाल" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "सूची" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "विन्यास निर्देशिका लिखने योग्य नहीं: %s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "शीर्षक" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "टर्टल ग्राफ़िक्स को सुगर दैनिकी में SVG फ़ाइल के रूप में सहेजता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "दैनिकी से पाठ ड्रा करता है या मीडिया दिखाता है" #: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 msgid "RFID" msgstr "आरएफआईडी" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "आरएफआईडी डिवाइस से मूल्य पढ़ें" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "वीडियो" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "नीला" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "कार्टेसियन निर्देशांक प्रदर्शित करता है" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "कोई विकल्प कार्रवाई:" + +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "ढेर नीचे जॉग करता है" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "मॉड्यूलर (बाकी) आपरेटर" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "तल y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "SVG सहेजें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "जर्नल में tamyblock.py मॉड्यूल में निहित कोड को चलाता है" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "पेन नीचे" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "इंतजार करें" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "बक्सा" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "अपलोड करने में विफल!" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "नामित कार्य स्टैक को बुलाता है" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "क्रिया" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "करें-तबतक-सही ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" + +#: turtleblocks.py:86 +msgid "usage is" +msgstr "उपयोग हैं" + +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "चर 2 (अंकीय मान)" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "भाग दें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "चित्र नाम" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 msgid "while" msgstr "जबकि" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "करें-जब-सही ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "केनवस की चौड़ाई" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "रिक्त ढेर" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "नामित चर (अंकीय मान)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "अगला" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "यदि तब" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "पेन आकार सेट करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "प्रेजेंटेशन टैम्प्लेट: दैनिकी वस्तु चुनें (वर्णन रहित)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 msgid "until" msgstr "तब तक" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "करें-तबतक-सही ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "रद्दी की वस्तुओं को हमेशा के लिए मिटा दें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "शीर्ष" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "uturn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "कार्य स्टैक 1 का शीर्ष" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत एकल-चर गणित समीकरण जोड़ने में प्रयोग में " +"लिया जाता है, उदा. sin(x)" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "फ्लो ऑपरेटर्स के पैलेट" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" msgstr "समेटे जा सकने वाले ढेर का शीर्ष" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "दैनिकी" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "यदि-तब-अन्यथा ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "सुगर दैनिकी मीडिया वस्तु" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "रिटर्न माउस y समन्वय" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ऑडियो" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "वर्तमान पेन छाया रखता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "सुगर दैनिकी ऑडियो वस्तु" +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinewave" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "वीडियो" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "लॉगइन असफल" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "सुगर दैनिकी ऑडियो वस्तु" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "बाएँ x" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "शीर्षक सेट करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "कछुआ तहत RGB रंग ढेर करने के लिए धक्का दिया है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "पिण्डों को छुपाकर कैनवास को व्यवस्थित करता है" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "आड़ी जगह" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "मेट्रिक निर्देशांक" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "स्ट्रिंग मान" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "विवरण" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "सुगर दैनिकी वर्णन क्षेत्र" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "मुझे पता नहीं कि कैसे" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "दिखाएँ" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "पाठ आकार सेट करें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "दैनिकी से पाठ ड्रा करता है या मीडिया दिखाता है" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "उपयोक्ता नाम:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "पंक्तिबद्ध दिखाएँ" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "भरा बहुभुज (अंत भरण ब्लॉक के साथ इस्तेमाल किया) से शुरू होता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "स्केल सेट करें" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "प्रेजेंटेशन टैम्प्लेट: चार दैनिकी वस्तु चुनें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "मीडिया का स्केल सेट करता है" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "दृश्य" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "टर्टल द्वारा बनाए जाने वाले लाइन की छाया सेट करता है" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "कूटशब्द:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "कछुआ देखता है" + +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "कार्य रोकें" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "हरा" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "छाया" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "पृष्ठभूमि को (रंग, छाया) से भरता है" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 msgid "save picture" msgstr "चित्र सहेजें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "चित्र नाम" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "पिच" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "सुगर दैनिकी में एक चित्र सहेजता है" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "1 देता है अगर माउस बटन दबाया है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG सहेजें" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "निर्देशांकों को ऊपर रीस्केल करें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "टर्टल ग्राफ़िक्स को सुगर दैनिकी में SVG फ़ाइल के रूप में सहेजता है" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "पेन ऊपर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "स्केल" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "नारंगी" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "वर्तमान स्केल मूल्य रखता है" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "प्रोग्राम को चलाना निर्धारित सेकण्डों तक ठहराए रखता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) में मूल्य पुश करता है" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "सब स्पष्ट" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "तब" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "पंजीकृत करे" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "नहीं" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "यदि तब अन्यथा" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "वर्तमान क्रिया रोकता है" + +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "टर्टल को घड़ी की दिशा में घुमाता है (कोण डिग्री में)" + +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "वर्तमान पेन आकार रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "स्क्रीन के बाएँ का एक्स निर्देशांक" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "पिण्ड आकार रीसेट करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "टर्टल" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "अगला पैलेट दिखाता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "खण्ड छुपाएँ" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "प्रकाश कैमरे द्वारा पता लगाया स्तर" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "लॉजिकल लेस-दैन ऑपरेटर" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "रद्दी की टोकरी से सभी पिण्डों को बहाल करें" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "सहेजें" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "बक्सा 1 में भंडारित करें" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "बक्सा 2 में भंडारित करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "सुगर औजारपट्टी को छुपाता है" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "टर्टल का एक्स-निर्देशांक रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "छापें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "रिटर्न माउस एक्स समन्वय" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "लोगो के रूप में सहेजें" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "टर्टल द्वारा बनाए जाने वाले लाइन का रंग सेट करता है" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "पाठ रंग सेट करें" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "आवाज़ की उंचाई" + +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "सहयोग सक्षम" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#, fuzzy +msgid "returns True if mouse button is pressed" +msgstr "1 देता है अगर माउस बटन दबाया है" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "संख्या" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "कुंजीपट क्वैरी करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "शीर्ष" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "वेब को भेजें" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "कार्टेसियन निर्देशांक" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "उपनाम" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "स्केल सेट करें" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "लिखें" + +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "कार्य को औजारपट्टी बटनों से कनेक्ट करता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "बीता समय (सेकंड में) के बाद कार्यक्रम शुरू" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "रद्द करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "केनवस की ऊँचाई" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "प्रस्तुतिकरण 2x1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "ऋण" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "और" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "समेटे जा सकने वाले ढेर का शीर्ष" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "इनपुट के रूप में" + +#: 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:653 +msgid "Python block" +msgstr "Python खंड" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 msgid "media wait" msgstr "मीडिया प्रतीक्षा" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "वर्तमान वीडियो या ऑडियो को पूरा करने के लिए इंतजार" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "त्वरण" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "वर्तमान पेन आकार रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "रंग सेट करें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "न्यून." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "पेन कमांडों के पैलेट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) में मूल्य दिखाता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "करें-जब-सही ऑपरेटर जो संख्या पैलेट से बूलिएं ऑपरेटर प्रयोग करता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "बोलो" +#: turtleblocks.py:363 +msgid "File" +msgstr "फ़ाइल" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "नमस्ते" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "लॉजिकल नॉट ऑपरेटर" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "स्क्रीन के तल का वाय निर्देशांक" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "प्रेजेंटेशन टैम्प्लेट: दैनिकी वस्तु चुनें (वर्णन सहित)" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "अंकीय ऑपरेटर्स के पैलेट" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "गुणा" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "हमेशा के लिए" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "टर्टल द्वारा बनाए जाने वाले लाइन की छाया सेट करता है" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 msgid "speaks text" msgstr "पाठ को बोलता है" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinewave" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "स्नेपशॉट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "साफ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "अवधि" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "प्रेजेंटेशन टैम्प्लेट: दो दैनिकी वस्तु चुनें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "पिण्ड बड़ा करें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "बटन नीचे" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "पूर्ण स्क्रीन" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "1 देता है अगर माउस बटन दबाया है" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "फ़ाइल नहीं मिली" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -#, fuzzy -msgid "returns True if mouse button is pressed" -msgstr "1 देता है अगर माउस बटन दबाया है" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "दिखाएँ" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "पाठ" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "बेतरतीब" + +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "लॉजिकल ग्रेटर-दैन ऑपरेटर" + +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "टर्टल घड़ी के विपरीत दिशा में घुमाता है (कोण डिग्री में)" + +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "पीछे" + +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "वर्ग मूल की गणना करता है" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "टर्टल का एक्स-निर्देशांक रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 msgid "mouse x" msgstr "माउस एक्स" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "रिटर्न माउस एक्स समन्वय" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 msgid "mouse y" msgstr "माउस y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "रिटर्न माउस y समन्वय" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "रोकें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "कुंजीपट क्वैरी करें" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "से बड़ा" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "कुंजीपट इनपुट के लिए क्वैरी (कुंजीपट खण्ड में परिणाम भंडारित होते हैं)" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "एक्स निर्देशांक" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "मदद" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "प्रोजेक्ट सहेजे" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "चुनता है कि किस टर्टल को कमांड दिया जाए" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "सही एक्स" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "टर्टल द्वारा लिखे जाने वाले पाठ का रंग सेट करता है" + +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "प्रकाश प्रकाश संवेदक द्वारा पता लगाया स्तर" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 msgid "keyboard" msgstr "कुंजीपट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "चाप" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "त्रिज्या" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "घ्रुवीय निर्देशांक" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "छाया सेट करें" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "लॉजिकल एंड ऑपरेटर" + +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"आप अपनी परियोजना अपलोड करने http://turtleartsite.sugarlabs.org पर एक खाता " +"होना चाहिए." + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "चलाएँ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "ढेर दिखाएँ" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "टर्टल का शीर्षक सेट करता है (0 स्क्रीन के शीर्ष की तरफ है.)" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "माइक्रोफ़ोन इनपुट आवाज़ निर्धारक" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "शीर्षक:" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "मीडिया वस्तुओं की पैलेट" + +#: TurtleArtActivity.py:591 #, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "क्वैरी-कुंजीपट खण्ड के परिणाम रखता है" +msgid "Restore blocks from trash" +msgstr "रद्दी की टोकरी से सभी पिण्डों को बहाल करें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "पिक्सेल को पढें" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "चर पिण्डों के पैलेट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "कछुआ तहत RGB रंग ढेर करने के लिए धक्का दिया है" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "गणितीय ऑपरेटरों में अंकीय इनपुट के रूप में प्रयोग में आता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "कछुआ देखता है" +#: 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 "अपलोड" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "रिटर्न रंग कि कछुआ \"देखता\"" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "सर्वर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "समय" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "प्रस्तुतिकरण 2x2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "बीता समय (सेकंड में) के बाद कार्यक्रम शुरू" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "चर 1 (अंकीय मान)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "अतिरिक्त विकल्प के पैलेट" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "आसपडोस" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "दबाएँ" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "दो अल्फ़ान्यूमेरिक इनपुट को जोड़ता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) में मूल्य पुश करता है" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "के बराबर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "ढेर दिखाएँ" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "जैसा नहीं" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) में मूल्य दिखाता है" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "बाहर जाने से पहेले , क्या आप ईसे सहेजना चाहोगे" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "रिक्त ढेर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "छुपे पिण्ड बहाल करता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) को खाली करता है" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "जब टर्टल को खिसकाया जाएगा तो ड्राइंग नहीं बनाएगा." +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 msgid "pop" msgstr "पॉप" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) का मूल्य दिखाता है" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "पेन आकार" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "रिक्त ढेर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "turtle शैल" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "टिप्पणी" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "आपके कोड में एक टिप्पणी जोड़ता है" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "बोलो" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "छापें" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "आरएफआईडी डिवाइस से मूल्य पढ़ें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "स्क्रीन के तल में स्थिति खण्ड में मूल्य छापता है" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "चाप के साथ-साथ टर्टल को खिसकाता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "uturn बनाने" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "लॉजिकल इक्वल-टू ऑपरेटर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "पायथन" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "पेन रंगों के पैलेट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत एकल-चर गणित समीकरण जोड़ने में " -"प्रयोग में लिया जाता है, उदा. sin(x)" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "अंकीय मान को चर 1 में भंडारित करता है" + +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "अंकीय मान को चर 2 में भंडारित करता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "कछुआ पर एक कस्टम ' शैल' चढ़ाये" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "बटन नीचे" + +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "टर्टल को पीछे खिसकाता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "स्क्रीन के शीर्ष का वाय निर्देशांक" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "खण्ड दिखाएँ" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "खेल" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "सहेजें" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "रंग" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "टर्टल द्वारा बनाए जाने वाले लाइन का आकार सेट करता है" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "खोलें" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "दिशा" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "वाय निर्देशांक" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 msgid "" "a programmable block: used to add advanced multi-variable math equations, e." "g., sqrt(x*x+y*y)" msgstr "" -"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत बहु-चर गणित समीकरण जोड़ने में " -"प्रयोग में लिया जाता है, उदा. sqrt(x*x+y*y)" +"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत बहु-चर गणित समीकरण जोड़ने में प्रयोग में लिया " +"जाता है, उदा. sqrt(x*x+y*y)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "यदि" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत बहु-चर गणित समीकरण जोड़ने में " -"प्रयोग में लिया जाता है, उदा. sin(x+y+z)" +"टर्टल को एक्स निर्देशांक, वाय निर्देशांक; (0, 0) पर खिसकाता है जो कि स्क्रीन के केंद्र में है." -#: 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:653 -msgid "Python block" -msgstr "Python खंड" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "पायथन" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "जर्नल में tamyblock.py मॉड्यूल में निहित कोड को चलाता है" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "रूकें" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "क्रिया 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "क्रिया 1" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "अंत भरें" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "नक़ल" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "चिपकाएँ" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "यहाँ आउटपुट नहीं दें" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "क्रियाएँ" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "वेब पर अपलोड करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "रिक्त ढेर" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) का मूल्य दिखाता है" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "साफ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "प्रेजेन्टेशन टैम्प्लेटों के पैलेट" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "कोण" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "शीर्ष y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ऑडियो" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "औज़ार" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "बायाँ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "टिप्पणी" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "निम्न अंकीय इनपुट को शीर्ष अंकीय इनपुट से घटाता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "कुंजीपट इनपुट के लिए क्वैरी (कुंजीपट खण्ड में परिणाम भंडारित होते हैं)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 msgid "Cartesian" msgstr "कार्टेसियन" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "कार्टेसियन निर्देशांक प्रदर्शित करता है" +#: 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 "वोल्टेज" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "घ्रुवीय" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "स्क्रीन को साफ करता है व टर्टल को रीसेट करता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "ध्रुवीय निर्देशांक प्रदर्शित करता है" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "कच्चे माइक्रोफोन इनपुट संकेत" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "टर्टल" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "रिटर्न रंग कि कछुआ \"देखता\"" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "चुनता है कि किस टर्टल को कमांड दिया जाए" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "कार्य 1 स्टैक को बुलाता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "turtle शैल" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "टर्टल कमांडों के पैलेट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "कछुआ पर एक कस्टम ' शैल' चढ़ाये" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "दोहराएँ हमेशा के लिए" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "समेटे जा सकने वाले ढेर का शीर्ष" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "पंक्तिबद्ध दिखाएँ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "टर्टल आर्ट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -msgid "loads a block" -msgstr "" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "परियोजना" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "xy सेट करें" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "दोषसुधार" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "कूटशब्द" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "खड़ी जगह" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "प्रेजेन्टेशन टैम्प्लेटों के पैलेट" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "भरा बहुभुज (शुरू ब्लॉक भरने के साथ प्रयोग किया जाता) पूर्ण" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "खण्ड छुपाएँ" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "साझा करें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "पिण्डों को छुपाकर कैनवास को व्यवस्थित करता है" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "से कम" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "वर्ग मूल" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "निर्देशांक रीस्केल करें" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 msgid "show blocks" msgstr "पिण्ड दिखाएँ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "छुपे पिण्ड बहाल करता है" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "बाहर जाएँ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "सुगर औजारपट्टी को छुपाता है" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "सुगर दैनिकी वर्णन क्षेत्र" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "सूची" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "सेट ग्रे" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" msgstr "प्रस्तुतिकरण बुलेटेड सूची" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "अवधि" + +#: turtleblocks.py:354 +msgid "New" +msgstr "नया" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "आपके कोड में एक टिप्पणी जोड़ता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "पिक्सेल को पढें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "स्केल" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "तल" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "बैंगनी" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "निर्देशांकों को नीचे रीस्केल करें" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "खोलने के लिए क्लिक करें" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "माइक्रोफ़ोन इनपुट पिच" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "विन्यास" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "विवरण:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "दैनिकी" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "रद्दी खाली करें" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "जब टर्टल को खिसकाया जाएगा तो ड्राइंग बनाएगा." + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "लोड..." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "सुगर दैनिकी ऑडियो वस्तु" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "टर्टल बन्द करें" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "टर्टल" + +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "पिण्डों के पैलेट की दिशा बदलता है" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "में भंडारित करें" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "खण्ड छुपाएँ" + +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "लोड Python ब्लॉक" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "योग" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "या" + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 msgid "presentation template: list of bullets" msgstr "प्रेजेंटेशन टैम्प्लेट: बुलेट की सूची" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "प्रेजेंटेशन टैम्प्लेट: दैनिकी वस्तु चुनें (वर्णन रहित)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "प्रेजेंटेशन टैम्प्लेट: दैनिकी वस्तु चुनें (वर्णन सहित)" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "वर्तमान खण्डों के विस्तार के लिए प्रयोग में लाए जाने वाले आइडेंटिटी ऑपरेटर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "प्रेजेंटेशन टैम्प्लेट: चार दैनिकी वस्तु चुनें" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "पिण्ड छोटा करें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "प्रेजेंटेशन टैम्प्लेट: दो दैनिकी वस्तु चुनें" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "टर्टल द्वारा लिखे जाने वाले पाठ का आकार सेट करता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "स्क्रीन के बाएँ का एक्स निर्देशांक" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"टर्टल का वर्तमान शीर्ष मान रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "तल" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "फोटो" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "स्क्रीन के तल का वाय निर्देशांक" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "न्यूनतम (शीर्ष) तथा अधिकतम (तल) मूल्यों के बीच रेंडम (बेतरतीब) संख्या लौटाता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "चौड़ाई" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "वर्तमान पेन रंग रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "केनवस की चौड़ाई" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "रंगपट्टिका दिखाएँ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "स्क्रीन के दाएँ का एक्स निर्देशांक" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "सुगर दैनिकी में एक चित्र सहेजता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "स्क्रीन के शीर्ष का वाय निर्देशांक" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "स्नेपशॉट सहेजें" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "ऊँचाई" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "प्रारंभ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "केनवस की ऊँचाई" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "टर्टल को आगे खिसकाता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "शीर्षक x" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "आगे" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "शीर्षक y" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "मेरा बक्सा" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "बाएँ x" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "खाता आईडी" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "शीर्ष y" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "पीछे" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "सही एक्स" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "मीडिया का स्केल सेट करता है" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "तल y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "वर्तमान स्केल मूल्य रखता है" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 msgid "presentation 1x1" msgstr "प्रस्तुतिकरण 1x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "प्रस्तुतिकरण 2x1" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 msgid "presentation 1x2" msgstr "प्रस्तुतिकरण 1x2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "प्रस्तुतिकरण 2x2" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "नामित योग्य कार्य स्टैक का शीर्ष" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "अंकीय मान को नामित चर में भंडारित करता है" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "लॉजिकल ऑर ऑपरेटर" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: 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 "माइक्रोफ़ोन इनपुट आवाज़ निर्धारक" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "निर्दिष्ट संख्या तक लूप करता है" -#: pysamples/brain.py:100 +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "सहेजें..." + +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "कार्य 2 स्टैक को बुलाता है" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "xy सेट करें" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "शीर्षक y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "शीर्षक x" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "स्क्रीन भरें" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "ऐसे सहेजें" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "xy सेट करें" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "कचरा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "घ्रुवीय" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "दोहराएँ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "वर्तमान वीडियो या ऑडियो को पूरा करने के लिए इंतजार" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "फ़ोटो के रूप में सहेजें" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "संपादन" + +#: 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 "माइक्रोफोन इनपुट प्रतिरोध" + +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "कार्य स्टैक 2 का शीर्ष" + +#: TurtleArt/tabasics.py:604 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "शीर्ष अंकीय इनपुट (अंश) को तल अंकीय इनपुट (हर) से विभाजित करता है" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "अधि." -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "रोकें" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "स्क्रीन के तल में स्थिति खण्ड में मूल्य छापता है" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "खेल" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "प्रारंभ भरें" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "सहेजें" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "क्वैरी-कुंजीपट खण्ड के परिणाम रखता है" -#: pysamples/journal-stats.py:78 -msgid "other" +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "दबाएँ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" msgstr "" +"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत बहु-चर गणित समीकरण जोड़ने में प्रयोग में लिया " +"जाता है, उदा. sin(x+y+z)" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "uturn" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "सभी बहाल करें" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "uturn बनाने" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "नमस्ते" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "उपयोग हैं" +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "कछुआ ब्लॉक" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "कोई विकल्प कार्रवाई:" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "फ़ाइल नहीं मिली" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "दायाँ" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "विन्यास निर्देशिका लिखने योग्य नहीं: %s" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "भूरा" -#: turtleblocks.py:354 -msgid "New" -msgstr "नया" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "लाल" -#: turtleblocks.py:355 -msgid "Open" -msgstr "खोलें" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "पहचान" -#: turtleblocks.py:356 -msgid "Save" -msgstr "सहेजें" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "मॉड" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "ऐसे सहेजें" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "बाहर जाएँ" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "फ़ाइल" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "निर्देशांक रीस्केल करें" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "पिण्ड आकार रीसेट करें" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "पिण्ड दिखाएँ/छुपाएँ" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "औज़ार" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "दोषसुधार" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "टर्टल" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "" -#: turtleblocks.py:407 -msgid "About..." +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" msgstr "" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "बाहर जाने से पहेले , क्या आप ईसे सहेजना चाहोगे" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "प्रोजेक्ट सहेजे" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "" -#~ msgid "Turtle Art Mini" -#~ msgstr "कछुए कला मिनी" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "" -#~ msgid "Turtle Confusion" -#~ msgstr "कछुए भ्रम" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" -#~ msgid "Select a challenge" -#~ msgstr "एक चुनौती का चयन करें" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "" -#~ msgid "Palette of Mexican pesos" -#~ msgstr "मेक्सिकन पेसोस का पैलेट" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "" -#~ msgid "Palette of Colombian pesos" -#~ msgstr "कोलम्बियाई पेसो का पैलेट" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Rwandan फ़्रैंक का पैलेट" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#, fuzzy -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "0 और 255 के बीच एलईडी तीव्रता को समायोजित करें." +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "सेंसर ब्लॉकों के पैलेट" -#, fuzzy -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "0 और 1023 के बीच एक संख्या के रूप में परिवेश प्रकाश स्तर देता है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "" -#, fuzzy -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "1 देता है, जब बटन प्रेस और अन्यथा 0 है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "" -#, fuzzy -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "0 और 1023 के बीच एक संख्या के रूप में परिवेश प्रकाश स्तर देता है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "" -#, fuzzy -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "0 और 255 के बीच एक संख्या के रूप में परिवेश के तापमान देता है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "" -#, fuzzy -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "0 और 255 के बीच एक संख्या के रूप में वस्तु से सेंसर के सामने दूरी देता है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "" -#, fuzzy -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "0 या 1 रिटर्न संवेदक झुकाव पर निर्भर करता है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "" -#, fuzzy -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "1 देता है जब सेंसर एक चुंबकीय क्षेत्र, अन्यथा 0 का पता लगाता है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#, fuzzy -#~ msgid "temperature" -#~ msgstr "तापक्रम" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "" -#, fuzzy -#~ msgid "distance" -#~ msgstr "दूरी" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "" -#, fuzzy -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "0 और 255 के बीच एक संख्या के रूप में परिवेश के तापमान देता है." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "" -#, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "सेंसर ब्लॉकों के पैलेट" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "" -#, fuzzy -#~ msgid "density" -#~ msgstr "पहचान" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +msgid "loads a block" +msgstr "" -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "सेंसर ब्लॉकों के पैलेट" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "दायाँ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "" -#, fuzzy -#~ msgid "grey" -#~ msgstr "भूरा" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#, fuzzy -#~ msgid "port" -#~ msgstr "Port" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#, fuzzy -#~ msgid "rotations" -#~ msgstr "परिक्रमण" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#, fuzzy -#~ msgid "read" -#~ msgstr "लाल" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#, fuzzy -#~ msgid "mode" -#~ msgstr "मॉड" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "सेंसर ब्लॉकों के पैलेट" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" -#, fuzzy -#~ msgid "samples" -#~ msgstr "नमूने" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" + +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "Palette of Arduino blocks" @@ -2070,10 +3488,9 @@ msgstr "प्रोजेक्ट सहेजे" #, fuzzy #~ msgid "" -#~ "returns the object gray level encountered him as a number between 0 and 1023" -#~ msgstr "" -#~ "देता है उसे वस्तु ग्रे स्तर 0 और 1023 के बीच एक संख्या के रूप में सामना करना " -#~ "पड़ा." +#~ "returns the object gray level encountered him as a number between 0 and " +#~ "1023" +#~ msgstr "देता है उसे वस्तु ग्रे स्तर 0 और 1023 के बीच एक संख्या के रूप में सामना करना पड़ा." #~ msgid "activity count" #~ msgstr "गतिविधि गिनती" @@ -2120,10 +3537,11 @@ msgstr "प्रोजेक्ट सहेजे" #~ msgid "restore last" #~ msgstr "अंतिम बहाल करें" -#~ 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 "" -#~ "प्रोग्राम किया जाने वाला पिण्ड: उन्नत गणित समीकरण जोड़ने में प्रयोग में आता " -#~ "है, जैसे कि, sin(x)" +#~ "प्रोग्राम किया जाने वाला पिण्ड: उन्नत गणित समीकरण जोड़ने में प्रयोग में आता है, जैसे कि, " +#~ "sin(x)" #~ msgid "text size" #~ msgstr "पाठ आकार" @@ -2172,8 +3590,7 @@ msgstr "प्रोजेक्ट सहेजे" #~ msgstr "संवेदक वोल्टेज" #~ msgid "holds current text size (can be used in place of a number block)" -#~ msgstr "" -#~ "वर्तमान पाठ आकार रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" +#~ msgstr "वर्तमान पाठ आकार रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता है)" #~ msgid "picture" #~ msgstr "फोटो" diff --git a/po/ht.po b/po/ht.po index 6f78740..d6f7655 100644 --- a/po/ht.po +++ b/po/ht.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ht.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ht.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ht.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ht.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -17,6 +42,1461 @@ msgstr "" "X-Generator: Pootle 1.1.0rc2\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -95,14 +1575,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -158,12 +1630,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -623,10 +2089,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1103,11 +2565,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,13 +2591,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1167,15 +2617,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1441,10 +2882,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1693,10 +3130,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1709,10 +3142,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/hu.po b/po/hu.po index 6f78740..102171f 100644 --- a/po/hu.po +++ b/po/hu.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# hu.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# hu.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hu.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# hu.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -17,6 +42,1461 @@ msgstr "" "X-Generator: Pootle 1.1.0rc2\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -95,14 +1575,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -158,12 +1630,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -623,10 +2089,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1103,11 +2565,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,13 +2591,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1167,15 +2617,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1441,10 +2882,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1693,10 +3130,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1709,10 +3142,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/hus.po b/po/hus.po index 762415b..3d3a4f4 100644 --- a/po/hus.po +++ b/po/hus.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,1369 +43,1970 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "Ts'ejkadh pat'ál Pet" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Kwene' an abatnomtaláb k'al an pet" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "Tortug tsipkats tsalpadh t'ajnel" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "ne'etsnanchij" - -# ka ne'etsnanchij ka yatsiy' an pet -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "ka ne'etsnanchij ka yatsiy' an pet" - -# taj kúx -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "wichiy" - -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "ka wichba' ti in kúx an pet" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "Tortug k'iptsodh tsalpadh t'ajnel" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "t'oka'" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "Takuy jun i ata'intalab" -# ka t'oka' an walek ani ka wichkow an pet -# -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "in t'okál an walek ani in wichk'owal an pet" - -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "k'watab'" - -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" +#: taextras.py:45 +msgid "Amazonas Tortuga" msgstr "" -"in tsawindhál an pet ti in k'et'ach jant'ojdha' ti belal an lejbaxk'ij " -"(t'ipchidh in kexem)" - -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "winab" - -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "in tsawindhál an pet jant'ojdha' an lejbaxk'ij (t'ipchidh in kexem)" - -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "pulich" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "kexem" - -# játs tam a kiloyal jún i kwechoch ti in waltelíl ma ti in ts'ejéltal -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "tin tsejeltal jun i kweche' anij ma walté" - -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "ka yatsiy an pet ti in nakél an pulich" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "ka ts'at'ba' xy" +# Kwene' i Lábtómíb pexujchik +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "Tsiik nujneltalab k'al an tum'n in k'al an labtomibchik" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +# Kwene' i Colombiajíb pexujchik +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "paleta de pesos colombianos" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Kwene' i Rwandajib francos (tumín)" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "Kwene' i EE. UU dólares (tumín)" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "Kwene' i Australiajib dólares (tumín)" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "Kwene' i Paraguayjib Guaraníes" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Kwene' i Perujib Nuevo Soles (ít tumínchik)" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "Kwene' i Uruguayjíb Pexuj" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "Ts'ejkadh pat'ál Pet" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +# In junkunchal in tsapík xi ti LED ti al an 0 ani 255 +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "in lejbayal in tsapík xi LED k'al 0 ani 255" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" msgstr "" -"ka yatsiy an pet ju'táj ti k'wajat xcor, ycor; (0, 0) k'wajat ti in " -"ts'ejéltal an walek." +"in wichbanchal in wichát an tajaxtaláb ti al an k'ay'lál jant'ini' jún i " +"ajixtaláb ti al an 0 ani 1023" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "ka ts'at'ba' ti in áy" +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" +"in wichbal jun tam al dhuche' k´wajat ni'adh ti 0 ani k'al pil i ajumtalab" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" msgstr "" -"ka ts'at'banchij in áy an pet ju'taj tin tomnal ka k'alej (0 já'its abal " -"ebál ti walek.)" +"in wichbal in wichat an tajaxtalab al an k'ailal ejtil jun i ajixtalab al an " +"0 ani 1023" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" +"in wichbal an alwa'talab al an k'ailal ejtil jun i ajixtalab al an 0 ani 255" -# elax kits'lab=coordenada -#: TurtleArt/tabasics.py:226 +#: taextras.py:71 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -"in kwa'al xuwék'ij an pet an éláx kits'lab x (i ejtowal ki eyendha' ti in " -"jalk'úl jún i kwene' t'ojlab i ajixtaláb)" +"in wichbal in ow'at an eyextalab tin tamet an ots'bixtalab ejtil jun i " +"ajixtalab ba' an 0 ani an 255" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "in wichbal an 0 o1 k'al in kwentalidh k'al an ots'bixtalab" -# éláx kits'lab=coordenanda -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" msgstr "" -"in kwa'al xuwék'ij an pet an éláx kits'lab y (i ejtowal ki eyendha' ti in " -"jalk'úl jún i kwene' t'ojláb i ajixtaláb)" +"in wuichbal jun tam an ots'bixtalab in 'elal jun xi yab bijidh, ba' an 0 " +"k'al pil i ajixtalab" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "in bélil, in ók'" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "ejel ba' an 0 ani al an 1 tam dhiyoyolats" -# in kwa'al xuwék'ij in bélil an pet (i ejtowal ki eyendha' ti in jalk'úl jún i kwene' t'ojlab i ajixtaláb) -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:76 +msgid "returns the value of the resistance" msgstr "" -"in kwa'al xuwék'ij an pet an elax kits'lab y (i ejtowal ki eyendha' tin " -"jalk'ul jun i kwene' t'ojlab ajumtalab)" -# kwene' abatnaxtal=paleta de ordenes de... -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "I kwene' abatnaxtaláb k'al an kits'oxtaláb" +#: taextras.py:77 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "ka t'uchiy an walek" +#: taextras.py:78 +msgid "button" +msgstr "ni'im" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "mukuxtaláb" +#: taextras.py:79 +msgid "grayscale" +msgstr "bajudh aku´" -# in alwá' an mukuxtaláb -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "in tsapik in majub" +#: taextras.py:80 +msgid "ambient light" +msgstr "tajax k'ailal" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "ka t'uchinchij in wal k'an (mukuxtaláb)" +#: taextras.py:81 +msgid "temperature" +msgstr "temperatura" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "aku'" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "in owát" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "ka ts'at'ba' an mukuxtaláb" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "pélat" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "ka ts'at'banchij in mukuxtalábil an kits'lab axi in t'ipoyal an pet" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "jolatalab abal jun i 'adhik t'ojlab" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "ka ts'at'banchij in ts'apik in tajax" +#: taextras.py:85 +msgid "vibration" +msgstr "dhiyoyol" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "ka tsa'tbanchij in yik'uax an kitslab axi in ts'ejkal an pet" +#: taextras.py:86 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 "kuxúdh" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "ka punchij aku'" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "Robot Butía" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "ka punchij in junkul an aku' ti ba' an kitslab xi tsejkadh k'al an pet" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "itméjdha' Butiá" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" +"ka itméjdhanchij in alwá' an kwene' mukuxtaláb Butiá ani a xi ti pejadh " +"t'ojláb" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "in dhayal an ti'el butiá" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" +"wichba' an dhaykom k'al an mulkux tsapláb an robot ejtil jun i ajixtalab ba' " +"an 0 ani an 255" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "adhiktaláb butiá" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" msgstr "" -"xuwek'ij in kwa'al in mukuxlabil a dhuchumtalábil (ejtowab ka eyendhaj tin " -"jalu'k an kwene' ajumtalab)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "xuwek'ij in kwa'al in mukub a dhuchumtal" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "ne'etsnanchij Butiá" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "ka edha' an robot ani ka ne'etsnanchij" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "ka edha' an robot Butiá ani ka aynanchij in owát jant'ini ka kulbetna'" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "k'watab Butiá" + +#: taextras.py:103 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "in wilk'iyal an pat'al atikláb abal tin winab" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "wichba' Butiá" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "edha' an robot Butiá ani´ka wichba'" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "edha' an robot Butiá kuxlab ka alchij in ówat" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "wínab Butiá" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "in wilk'iyal an pat'al atikláb abal tin winab" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "wilk'iy Butiá" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "ka tsawiy an robot Butiá ba' an ajumtal k'al in kextal" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "kuba' Butiá" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "in k'ubal an pat'al atikláb Butiá" + +#: taextras.py:115 +msgid "Butia" +msgstr "Butiá" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "" -"ka ko'onchij in junkul an aku' (ka ejtowat ka eyendhaj tin jalk'ul an jun i " -"kwene' ajixtalab)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "ka k'adhba' i kits'oxtaláb" +#: taextras.py:120 +#, fuzzy +msgid "Error on initialization of the camera" +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"K'ibts'ontalab al in tujtal ba' an k'ot'bixtalab" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "An pet tam ka yatsin yab jant'oj ne'ets ki in t'ipoy." +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" -# ka pa'ba' i kits'oxtaláb -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "ka pa'ba' a kits'oxtal" +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" -# An pet ne'ets ti t'ipox tam ka yatsin. -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "An pet ne'ets kin t'ipoy tam ka belats." +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -# ka ts'at'banchij in puwél -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "ka ts'atba' in puwel" +#: taextras.py:126 +msgid "FollowMe" +msgstr "FollowMe" -# ka ts'at'banchij in ts'ikwél an kits´lab a xi an pet in t'ipoyal -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "ka t'ipchij in ts'ikwel an kits´lab axi an pet ne kin t'ipoy" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "ka ts'i'kinchij ka t'uchiy" +#: taextras.py:128 +#, fuzzy +msgid "Search for a connected camera." +msgstr "In aliyal al jun i brinck NXT xi ts'ot'k'odh." + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "t'ójojodhtaláb" + +#: taextras.py:131 +#, fuzzy +msgid "store a personalized calibration" +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"wichba' jún i t'ójojodhtaláb ta kwetém k'ál\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"wichba' jún i t'ójojodhtaláb ta kwetém k'ál\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"dhaya' an t'ójojodhtaláb ta kwete' k'ál" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "wichba' jún i t'ójojodhtaláb ta kwetém k'ál" + +#: taextras.py:133 +msgid "follow" +msgstr "áynanchij" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "áyna' jún i mukuxtaláb o, i t'ójojodhtaláb" + +#: taextras.py:135 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 "mak'i'" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." msgstr "" -"ka ts'ikinchij ka t'uchiy an poligono (tan ka eyendha' in taltal an " -"t'uchixtalab k'al an kw`'ne' dhuche')" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "ka t'uchiy an mukuxtalab" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "we'kats in ák'" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "uluw an we'kats ák 'ajixtaláb a xi ne'ets ka áyna'" + +#: taextras.py:139 +msgid "threshold" +msgstr "ti wi'leb" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "in tejwamedhal an umbral abal jun i mukuxtaláb RGB" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" msgstr "" -"ka kidhbay an poligono xi t'uchidh (tam ka eyendha' tin tujtal in t'uchix an " -"kwen'e t'ojlab)" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "puwél" +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:146 +msgid "get the brightness of the ambient light" msgstr "" -"ja'its in puwel xuwe'k'ij an dhuchumtalab (i ejtowal ki eyendha tin jalk'ul " -"jun i k'enel ajixtalab)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "In kwene' mukuxtalabil a dhuchumtalabil" +#: taextras.py:147 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "tsakni'" +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "t'a'at manu'" +#: taextras.py:149 +msgid "x position" +msgstr "jun ejet x" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "manu'" +#: taextras.py:150 +msgid "return x position" +msgstr "ka wichba' jun ejet x" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "yaxu'" +#: taextras.py:151 +msgid "y position" +msgstr "jun ejet y" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cian" +#: taextras.py:152 +msgid "return y position" +msgstr "ka wichba' jun ejet y" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "tok'i" +#: taextras.py:153 +msgid "pixels" +msgstr "ajidh alwa'" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "tamkulom mukuxtaláb" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "ka wichba' in ák' ajixtal an mink'oxtaláb a xi wat'adh púlik" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "dhakni'" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "t'unu'" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "ka ts'atba' in mukuxtalabil an dhuchlab" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "ka tsat'abaj in mukuxtalab an dhuchlab axi in t'ipoy an pet" +#: taextras.py:161 +msgid "empty calibration" +msgstr "jolát t'ójojodhtaláb" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "uk'pintaláb al an wilk'intaláb xi ti polts'óx dhuchlab" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "adhik SumBot" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "tejwa'méjdhanchij in adhiktal an SumBot" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "ka t'ipoy an adhiktalab abal an abatnom tam ka ejelats" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "ne'etsnanchij SumBot" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "yatsiy an SumBot abal tin t'amal" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "tin kùx an SumBot" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "ka yatsiy an tipoxtalàb abal tin kux" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "ka kuba' an tipoxtalàb" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "in koydhal an tipoxtalàb" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "k'wàtab an tipoxtalàb" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "ka wilk'iy an tipoxtalàb abal tin k'wàtab" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "winab tipoxtalàb" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "wilk'iy an tipoxtalàb abal tin winab" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.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:187 +msgid "angle to center" +msgstr "kexem ba' in ts'ejeltal" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "ka kanchij in keyem ba' in ts'ejeltal an dohyo" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "kexem an k'eat tsalapil" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "ka kanchij in owát an k'eat Tsalapil" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "coor. x SumBot" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "ka kanchij an elax kits'lab x an robot" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "coor. y SumBot" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "in kanchij an elax kits'lab an robot" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "coor. x k'eat tsalapil" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "ka kanchij an elax kits'lab x an robot" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "coor. y k'eat tsalapil" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "in kanchij an elax kits'lab an robot" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "wilil SumBot" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "ka kanchij an wililtalab jun puk'e'" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "wilil k'eat tsalapil" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "ka kanchij an wililtalab jun Puk'e'" + +#: taextras.py:212 +msgid "distance to center" +msgstr "in owát an ts'ejeltal" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "ka kanchij in owát an ts'ejeltal xi dohyo" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "in owàt xin k'eat tsalapil" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "ka kanchij in owát an k'eat Tsalapil" + +#: taextras.py:217 +msgid "update information" +msgstr "ka itmedha' an olchixtalab" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "ka itmedha' an olchixtalab ba' an ábatnom" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "ka ts'atba' in puwél an dhuchlab" +# sensor = ats'ax +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "In kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" + +#: taextras.py:224 +msgid "start polygon" +msgstr "tujchiy yan walt'etil" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" +"Ka tujchij ka bijiy an it yan walt'elil jantodha ti kw'ajat xokij xy in k'al " +"an pet." -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "ka ts'atba' in puwel an dhuchlab axi in tsejkaj an pet" +#: taextras.py:227 +msgid "add point" +msgstr "ka punk'uy an tuk" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Kwene' t'ojnalchik kal an ajumtabal" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" +"Ka punk'uy jun i it tuk al an yan walt'elil xi kwajat xokij xy al an pet." + +#: taextras.py:230 +msgid "end polygon" +msgstr "puntundha yan walt'elil" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "Ka bijiy jun i it yan walt'elil." + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "ka putundha an yan walt'elil xi t'uchidh" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "Yab i yan walt'elil alk'idh" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "In bijiyal jun i it yan walt'elil xi t'uchidh." + +#: taextras.py:235 +msgid "triangle" +msgstr "òx ts'upi'" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "in akan" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "t'ek'em" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "tamkuy" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "In punk'uyal jun i eyixtalàb al an òx ts'upi' al an tojlàb." -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "ka tamkuy tsab i otseltaláb alfanuméricas" +#: taextras.py:240 +msgid "circle" +msgstr "kw'echo'" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "we'medhax" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "An punk'uyal jun i eyixtalàb al an kw'echo' abal an tojlàb." -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "" -"ka kaldha' in otsemtal an ajumtalab xi kwajat tin alam an ajumtalab xi ebal" +#: taextras.py:242 +msgid "rectangle" +msgstr "pek'madh tse' walte'" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "yanedhom ajixtalab" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "ts'ikwél" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "ka yanedha' tsab i otseltalab ajumtalab" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "In punk'uyal jun i eyixtalàb pek'madh tse' walte' al an tojlàb." -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "buk'uxtalab" +#: taextras.py:246 +msgid "reset" +msgstr "tsab tujchi'" -#: TurtleArt/tabasics.py:604 +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" +"Ka tsàb tujchi' an tojlàb, in t'okedhal an eyixtalàb xi kwajat k'elbadh." + +#: taextras.py:248 +msgid "motor" +msgstr "ichich pat'al" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "jayetsek'ij" + +#: taextras.py:251 +msgid "speed" +msgstr "adhiktalàb" + +#: taextras.py:252 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." msgstr "" -"ka buk'uw an otseltalab k'al an ajumtalab axi ebal (numerador) k'al an " -"ajumtalab axi alal (denominador)" +"Xi jayetsek'ij an adhiktalàb al an ichich pat'al xi kwajat al an rango 0 " +"(tepts'idh) al an ajixtalàb positivos; an ichich pat'al kwajat punudh al an " +"eyixtalàb xi inkidh itej." -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "ibíl" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" +"eyindhanel xi ts'upidh anij pulik in ok' xi eynal abal ti ts'at'axtalàb" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "in ibíl an t'ojnal eyendhach abal ka yanedha' an kwen'e t'ojlab" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "In teynal an eyixtalàb abal yab ka ijkan." -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:256 +msgid "joint" +msgstr "junkudh" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "an t'ojnal axi ne ti tsejkanchij jant'odha ta lé" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "raiz cuadrada" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"In tamkuyal tsab i eyixtalàb (an eyixtalàb xi inkidh anij an eyixtalàb xi " +"kwajat al an tuk x,y)." -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "ka aliy an raiz cuadrada" +# actividad física=t'ojondha' i iniktal +# dhaya' jant'ini' i t'ojláb abal ki t'ojondha' i iniktal +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "dhaya' jant'ini' i física t'ojláb" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "In dhayal an t'ojlàb al an chudhèl dhuchlab fisica." + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "kwechoch" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "yab aykadh" +# Punk'unchij jún i kwechoch eyixtaláb ti tsalapnadh t'ojláb +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "An punk'uyal jun i eyixtalàb al an kwechoch abal an tojlàb." -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:266 +msgid "density" +msgstr "alemtalàb" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" +"In bijiyal an àlemtalàb kal an eyixtalàb (an àlemtalàb neèts bijidh jawakits " +"ajumtalàb xi chubax)." -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:269 +msgid "friction" +msgstr "tam i tadhanal jit'a, o tam u yats'nal" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"ka wichba' jun i ajumtalab tin ay an jolat tsiptí jalbil (walk'i') anij an " -"pulik alal" +"In bijiyal in uchbil tam i tadhanal jant'o o jun i eyixtalàb (in alèm " +"nijant'o anij jun, ju'ta' nijant'o jats' tam i tadhanal anij jun jats xi " +"ts'apik)." + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "in wichbàl jun i eyindhanel xin kwa'alak tin k'ubak owatits" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"In bijiyal in uchbil kal an eyixtalàb xin kwa'alak tin k'ubak (in alèm " +"nijjanto' ani jun, ju'ta nijanto' in le' kin uluw in wichbal ani jun in le' " +"kin uluw yan)." + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "kulbel" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Kulbel=jun, an eyixtalàb in ejtowal ka yats'in; kulbel=nijanto, jilkonal " +"k'ubat yab yats'nal." -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "ajixtaláb" +# sensor = ats'ax +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" +#: taextras.py:285 +msgid "WeDo" msgstr "" -"eyendhach etil in otseltal ajumtalab ti ba' an tolmix k'al an matematicas" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "mas pulik etil a" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "an bolk'idh t'ojnal axi lej pulik etil a" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "lej tsipti' etil a" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"kalnib k'al an pelat ots'oxtaláb: (-1 == yab k´wajat pélat, 0 == pelat ti in " +"áy, 3 == pelat ti in kúx, 1==pelat ti in k'watab, 2 ==pelat ti in winab))" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "bel xin elàl in owèm" + +#: taextras.py:294 +msgid "Motor A" +msgstr "Ichich pat'al A" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "in wichbal in alèm xin kwaàl an ichich pat'al A" + +#: taextras.py:296 +msgid "Motor B" +msgstr "Ichich pat'al B" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "in wichbal in alèm xin kwa'al al an ichich pat'al B" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "in elàl in alèm an ichich pat'al A" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "in elal in alèm an ichich pat'al B" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "an bolk'dh t'ojnal axi lej pulik etil a" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "jununúl" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -# jununúl se utiliza para los dos conceptos equivalante e igual. -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "an bolk'idh t'ojnal axi jununúl" +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ibáj" +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "t'ojnal YAB bolk'idh" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "dhuche'" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "owèm" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "mukuxtaláb" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "y" +#: taextras.py:318 +msgid "light" +msgstr "tajàx" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "to'jnal ANI bolk'idh" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "kawidhtaláb" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "o" +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "aku'" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "t'ojnal O bolk'idh" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +#, fuzzy +msgid "Please check the connection with the brick" +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"T'ajchij an alwa'talàb ka met'a ju'taj ti ts'atadh kal an brinck." -# paleta = kwene'; operadores, controladores = abatnom -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Kwene' k'al an wat'etél abatnom" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "aychíj" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "in kubál jun i wé an k'ij tam kw'ajat ti t'ojnal jun i tsalpadh t'ojláb" +#: taextras.py:325 +#, fuzzy +msgid "The value of power must be between -127 to 127" +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"In alèm an tsapiktalàb ne'ets ti - 127 y 127." -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "abal ets'ey" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "ka wichk'ow abal ets'ey" +#: taextras.py:327 +#, fuzzy +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"Jun i k'ibts'ontalàb watenek: ka met'a an ts'ot'koxtalàb anij ka tsab " +"ts'ot'k'oy." + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "ka wichk'ow" +#: taextras.py:329 +msgid "NXT not found" +msgstr "NXT yab eladh" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "wenk'ow an ajixtaláb ti jayil ti uludh" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "anits" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "itmèdha' NXT" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "tam" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "In aliyal al jun i brinck NXT xi ts'ot'k'odh." -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "anits tam" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: taextras.py:334 +msgid "set current NXT device" msgstr "" -"beldhom anits-tam axi in eyendhal i beldhomchik ti in ey an kwene' Ajixtaláb" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "max ibáj" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "anits tam max inbáj" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:337 +msgid "Get the name of a brick." msgstr "" -"beldhom anits-tam-junake' axi in eyendhal i beldhomchik ti in ey an kwene' " -"Ajixtaláb" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "peltom i jolat" +#: taextras.py:338 +msgid "play tone" +msgstr "tsab watba' in janidh" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "ka bodhondha' an t'i'e' ta wínab" +#: taextras.py:339 +msgid "frequency" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "jolataláb xi kubladh" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "k'ij" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "t'ajdhidhixtaláb abal alal an t'i'adh" +#: taextras.py:341 +#, fuzzy +msgid "Play a tone at frequency for time." +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"in tsab wat'bàl in janidh al an ik' 'frec' al jun i ajumtal an k'ij." + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "kuba' an pakdha' t'ojláb" +#: taextras.py:344 +msgid "port" +msgstr "wi'leb" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "xowe' ka kuba' an pakdha' t'ojláb" +#: taextras.py:345 +msgid "power" +msgstr "tsapìk" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "An kwene' axi ti kwene' t'ojláb k'al an bijlabchik" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "wilil" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "tujuw" +#: taextras.py:348 +msgid "turn a motor" +msgstr "in wilk'iyal an ichich patàl" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" msgstr "" -"in ts'ot'k'oyal an kwene' t'ojláb ti dhuche' ani ka t'ajan ti kwene' " -"ayendhanél" - -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "dhuchlab" -# valor = jalbíl ; cadena = dhuchlab -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "in jalbíl an dhuchlab" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "pakdha' t'ojláb" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "eblim tin chum an t'i'e' k'al an pakdha' t'ojláb xi bijidh" +#: taextras.py:352 +msgid "PORT A" +msgstr "Wi'leb A" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "ki tsalapna' an t'i'e' ba an pakdha' t'ojláb xi bijidh" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "WI'LEB A del brick" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "ki dhaya' ti ál an ka'al baltse' 1" +#: taextras.py:354 +msgid "PORT B" +msgstr "Wi'leb B" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "dhaya' in jabil an ajixtaláb ti Bijlab 1" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "WI'LEB B del brinck" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "dhaya' ti baltse' 2" +#: taextras.py:356 +msgid "PORT C" +msgstr "Wi'leb C" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "dhaya' in jabil an ajixtaláb ti Bijlab 2" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "WI'LEB C del brinck" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "baltse' 1" +#: taextras.py:358 +msgid "start motor" +msgstr "tujchij ichich pat'al" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Bijlab 1 (jalbil ajixtaláb)" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "Ka wilk'iy an ichich pat'al abal ets'ey." -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "baltse' 2" +#: taextras.py:360 +msgid "brake motor" +msgstr "ka k'uba' an ichich pat'al" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Bijilab 2 (jalbil ajixtaláb)" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "In kubàl jun i ichich pat'al xi bijidhits." -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "ki dhaya' ti" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "baltse'" +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "jalbíl" +#: taextras.py:365 +msgid "motor position" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "u baltse'" +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "dhaya' in jalbil an ajixtaláb ti bijláb xi bijidh" +#: taextras.py:367 +msgid "PORT 1" +msgstr "Wi'leb jun" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "bijilab xi bijidh (jalbil ajixtaláb)" +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "WI'LEB jun kal an brinck" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "pakdha' t'ojláb 1" +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "tsakni'" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "ebal ti t'i'e' k'al an Pakdha' t'ojláb 1" +#: taextras.py:370 +msgid "sensor" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "pakdha' t'ojláb 2" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "ebal ti t'i'e' k'al an Pakdha' t'ojláb 2" +#: taextras.py:372 +msgid "PORT 2" +msgstr "Wi'leb tsab" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "ki tsalapna' an t'i'e' ba an Pakdha' t'ojláb 1" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "WI'LEB tsab kal an brinck" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "ebal ti t'i'e' k'al an Pakdha' t'ojláb 2" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "ámul" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "jolk'ow an balixtaláb amúl" +#: taextras.py:376 +msgid "PORT 3" +msgstr "Wi'leb òx" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "pakuw abal etsey an ayendhanel xi tin bál an úw" +#: taextras.py:377 +#, fuzzy +msgid "PORT 3 of the brick" +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"WI'LEB A del brick\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"WI'LEB A del brick\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"Wi'leb A del brick" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "ki wichba' patal" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "ki wichba' patalchik an muke' ti al an balixtal úw" +#: taextras.py:380 +msgid "PORT 4" +msgstr "Wi'leb tsè" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "ki pakuw patal" +#: taextras.py:381 +#, fuzzy +msgid "PORT 4 of the brick" +msgstr "" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"WI'LEB A del brick\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"WI'LEB A del brick\n" +"#-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-#\n" +"Wi'leb A del brick" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "ki nedha' patal an kwene' abal ti amul" +#: taextras.py:383 +msgid "color sensor" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Pexchixna' an takudh kwene'" +#. 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:386 +msgid "set light" +msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Bijláb" +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" -# Tortuga = Pet -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Ka kuba' an pet" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" -# bloque = kwene't'ojláb (conjunto de actividades) -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Ka tejwa'méjdha' an kwene't'ojlábl" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Ka dhibk'oy an kwene't'ojlábchik" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "Yejnek" + +#: taextras.py:396 +msgid "LOW" +msgstr "Tsa'at" + +#: taextras.py:397 +msgid "INPUT" +msgstr "Otseltaláb" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" -# No produjo salida a -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "yab in t'aja' i kadhaxtaláb abal" +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Inbáj u exlál jant'odha' ku t'aja'" +#: taextras.py:401 +msgid "SERVO" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "inbáj in kulbetnal" +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "ejtil i otseltaláb" +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "ki tejwa'medha' xi júnakej i kwene'" +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "ka jalk'unchij in áy an kewne' ti kwene' t´'ojláb" +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "K'adhba'..." +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Dhaya'..." +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "ni'inchij abal ka japiy" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "bolidhtaláb" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "júnakej" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "nixk'iy" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: taextras.py:412 +msgid "Arduino name" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Takuy an kwene'chik abal ki pejchíxna'" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -# TortugArte = WitsixPet -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Witsix Pet" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "t'iplab" +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "mod" -# Logo = T'iplab -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Ka dhaya' jant'ini' i T'iplab" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -# imagen o logo = t'iplab -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Ka dhaya' jant'ini' i t'iplab" +#: taextras.py:420 +msgid "analog write" +msgstr "" -# Instantánea=adhik -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "adhik" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "jalbíl" -# Instantánea (o) = Jun adhik -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Dhayaxtaláb k'al an jun adhik" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Ki tixk'anchij in tsáp an dhememél tolmix" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Punchij in tsáp an dhememél tolmix" +#: taextras.py:424 +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 "" -# paleta = kwene'mukuxtaláb -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Tejwa'méjdha' an kwene'mukuxtaláb" +#: taextras.py:426 +msgid "digital write" +msgstr "" -# Ocultar = dhibk'oy, tsina'; esconder = tsina' -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Ka dhibk'oy an kwene'mukuxtaláb" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -# escalar=k'adhíl(subir) -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "K'adhíl ti coordenadas abal alál" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "K'adhíl ti coordenadas abal ebál" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Jalk'uy" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Tsu'uw" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Tsalapnadh t'ojláb" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Dhaya'/K'adhba'" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "K'ot'biy" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Ts'at'k'a'" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: TurtleArtActivity.py:591 +# sensor = ats'ax +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 #, fuzzy -msgid "Restore blocks from trash" -msgstr "ki wichba' patalchik an muke' ti al an balixtal úw" - -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Putat walek" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Coordenadas cartesianas" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Coordenadas polares" +msgid "Palette of Expeyes blocks" +msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Coordenadas centímetros" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Ka púwedha' an kwene' t'ojlábchik" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Tsipti'méjdha' an kwene' t'ojlábchik" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -# Ejemplo = t'ipoxtaláb -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Ka k'adhba' an t'ipoxtalábchik" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "T'oka'" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Ka t'aja'" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Ka t'aja' jun xakab" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -# Ayuda = tolmix(conjugado, naná' in tolmix); Ayuda(La) = Tolmixtaláb(como sustantivo: an tolmixtaláb) -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Tolmixtaláb" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Kuba'" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "K'adhba' an tojláb" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -# T'uchinchij in kidhtal -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "An k'adhbomáts k'al in kidhtal" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "K'adhba' an Python kwene' t'ojláb" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "kwene' mukuxtaláb" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "An dhéymáts k'al an kwene' t'ojláb a xi yabáts éynal" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: taextras.py:465 +msgid "capture" +msgstr "" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: taextras.py:466 +msgid "input" +msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: taextras.py:467 +msgid "samples" +msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -# plugin=complemento -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "An kidhataláb yab elat ka punuwat." +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:474 +msgid "read analog input 1 voltage" msgstr "" -"T'ajchij an alwa'taláb ka tsab tujchij an Witsix Pet abal ka ejtow ayendha' " -"an kidhataláb." -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "An kidhataláb %s k'wajatits punudh." +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "¿A lé'xe' ka tsab punuw %s?" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "U t'ojlábil ti witsix pet" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Walka' an dheyetnaxtaláb" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "T'ojlábchik" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Ja'ubchik" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Péjkaxna'chik" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "T'ojojoxtaláb" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Át k'imádh" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Ódhbij" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -# kwetajixtaláb cuenta de cada uno -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Kwet-ajixtaláb" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Tólmix buk'ul" +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Wi'leb" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Tsinatbijiláb" +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Dhuchadh" +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Mukuxtaláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "" +"ki in tsab áynanchij ki in wat'ba' i t'iplab tejwa'mejdhomtaláb o ki in tsab " +"t'eney i ots'oltaláb" -#: 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 "K'adhba'" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Bijláb" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +#: 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 "Ts'ejelíl mukudh RGB ti k'otbix u tájk'nál abal ti mulkux tsaplab" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "K'adhba' ti ál an web" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "manu'" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"In yejenchal ka ko'oy jun i kwet-ajixtaláb ti " -"http://turtleartsite.sugarlabs.org to upload your project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "tìpodh pulàb elàx kits'lab" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Ayendhóm:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "ka jolk'ow an t'i'nél FILO (k'a'ál-ti-otsel kalel-ti-taltaláb)" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Tsinatbijiláb:" +#: 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 "t'ipláb ti k'otbix walekláb" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Bijláb:" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "ka punchik an adhiktalab al in tsejeltal x,y z al an dhaykom tsaplab" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Tejwa'méjdhomtaláb:" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"beldhom anits-tam axi in eyendhal i beldhomchik ti in ey an kwene' Ajixtaláb" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Abna' ti ál an web" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "ka bodhondha' an t'i'e' ta wínab" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "T'apiy" +# medios de comunicación = ólchix ayendhanél +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Journal pél i eyextaláb ólchix ayendhanél" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Kibts'ontaláb k'al in chubáx éy" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "baltse' 2" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "¡Kibts'obtaláb k'al an k'adhbaxtaláb!" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "baltse' 1" -# sensor = ats'ax -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Ka t'aja' jun xakab" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "lejbaxadhiklab" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "ka yanedha' tsab i otseltalab ajumtalab" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "ka punchik an adhiktalab al in tsejeltal x,y z al an dhaykom tsaplab" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Tejwa'méjdha'/dhibk'oy an kwene' t'ojláb" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "kawidhtaláb" +# Ocultar = dhibk'oy, tsina'; esconder = tsina' +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Ka dhibk'oy an kwene'mukuxtaláb" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "olchixtaláb k'al an otseltaláb kawidhomtaláb" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Ja'ubchik" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "tsapik an kawídh" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "U t'ojlábil ti witsix pet" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "tsapik an kawídh k'al an otseltaláb kawidhomtaláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar Diario pél i eyextaláb ti t'iplab tejwa'méjdhomtaláb" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "janidhtaláb" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cian" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "jolát an otseltaláb ti kawidhomtaláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor tin walte' winbéj ti waldhuchumtaláb" -#: 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 "kuxúdh" +# adiciónal = punk'uxtaláb ; adiciónales = in punkuxtal +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Kwene' ti in púnk'uxtal i jolat takudhtaláb" -#: 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 "" -"in jalbidh in kuxúdh ts'ot'kodh ti otseltaláb k'al an kawidhomtaláb (ajidh " -"ti 700 ma ti 14000 ohms)" +# Ejemplo = t'ipoxtaláb +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Ka k'adhba' an t'ipoxtalábchik" -#: 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 "k'amáltsáj" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "ki nedha' patal an kwene' abal ti amul" -#: 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 "" -"in tsapik an k'amáltsáj DC ts'ot'k'odh ti otseltaláb kawidhomtaláb (ti: 0.40 " -"ma ti 1.90 V)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "k'elab" -# Paleta de bloques medios = paleta de objetos multimedia = kwene' i eyextaláb multimedia -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Kwene' i eyextaláb multimedia" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "An t'ojojoxtaláb ti dhayab-úw ibáj ka jalk'unchij: %s" -#: 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 "mak'i'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "ki in áynanchij an kawidh olnoxtaláb" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "in t'ajáx eladh ti k'otbix walekláb" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "in bélil, in ók'" -#: 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 "Ts'ejelíl mukudh RGB ti k'otbix u tájk'nál abal ti mulkux tsaplab" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "An dhéymáts k'al an kwene' t'ojláb a xi yabáts éynal" -#: 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 "t'ipláb ti k'otbix walekláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "" +"in dhayál an t'iplabchik a xi in k'al an pet jant'ini' jún i dhuchlab SVG ti " +"al an Sugar Diario" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "wichat an tajaxtalab éladh k'al an tsu'tom" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "" +"ka t'ipoy an dhuchlab ólchix ayendhanél o ka tejwa'méjdha' ti Chudhél " +"dhuchlab" #: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 msgid "RFID" msgstr "RFID" -# Frecuencia = wichk'ontaláb -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "ajiy in jalbíl an wichk'ontaláb pat'ál wat'bón káw RFID" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "t'iplab tejwa'méjdhomtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "tamchál" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "tok'i" -# lógico = exbadh ; paleta = kwene' -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"abatnom aníts-tám-júnakej xi in ayendhál i exbadh abatnomchik k'al an " -"Ajixtaláb ti kwene'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "t'ipodh elax kits'lab Cartesianas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "ma ti" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Yab ka t'aja' i jolat takudhtaláb:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"abatnom aníts-tám-júnakej a xi in ayendha' i exbadh abatnom ti al an " -"Ajixtaláb ti kwene' mukuxtaláb" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "t'ajdhidhixtaláb abal alal an t'i'adh" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "eblim" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "an t'ojnal axi ne ti tsejkanchij jant'odha ta lé" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "eblim ti ba an paklax binom tsaplab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "ti in alam y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "chudhél dhuchlab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "dhaya' SVG" -# medios de comunicación = ólchix ayendhanél -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Journal pél i eyextaláb ólchix ayendhanél" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "" +"ka t'aja' jun t'ie' i dhuche' ti kwene't'ojláb tamyblock.py axi kw'ajat ti " +"Chudhél dhuchlab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ots'oltaláb" +# ka pa'ba' i kits'oxtaláb +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "ka pa'ba' a kits'oxtal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Journal pél i eyextaláb ti ots'oltaláb" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "aychíj" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "t'iplab tejwa'méjdhomtaláb" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "baltse'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar Diario pél i eyextaláb ti t'iplab tejwa'méjdhomtaláb" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "¡Kibts'obtaláb k'al an k'adhbaxtaláb!" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "tejwa'méjdhomtaláb" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "nixk'iy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar Diario pél jún i jolát abal an tejwa'méjdhomtaláb" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "ki tsalapna' an t'i'e' ba an pakdha' t'ojláb xi bijidh" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "tejwa'méjdha'" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "pakdha' t'ojláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -"ka t'ipoy an dhuchlab ólchix ayendhanél o ka tejwa'méjdha' ti Chudhél " -"dhuchlab" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "k'elbadh ka tejwa'méjdha'" +"abatnom aníts-tám-júnakej a xi in ayendha' i exbadh abatnom ti al an " +"Ajixtaláb ti kwene' mukuxtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "bajudh junkudhtaláb" +# el uso es = se usa para = ayendháb abal +#: turtleblocks.py:86 +msgid "usage is" +msgstr "ayendháb abal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "junkudhtaláb al an bajudh ti ólchix ayendhanél" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Bijilab 2 (jalbil ajixtaláb)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "dhaya' i t'iplab" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "buk'uxtalab" # nombre = su nombre(in bijíl) #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 @@ -1388,182 +2014,266 @@ msgstr "dhaya' i t'iplab" msgid "picture name" msgstr "in bijíl an t'iplab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "in dhayál jún i t'iplab ti Sugar Diario" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "tamchál" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "dhaya' SVG" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "tin ts'ikwém an telmaxtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "" -"in dhayál an t'iplabchik a xi in k'al an pet jant'ini' jún i dhuchlab SVG ti " -"al an Sugar Diario" +# vaciar = jolk'ow +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "ka jolk'ow an t'i'nél?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "puwém" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "bijilab xi bijidh (jalbil ajixtaláb)" -# escala = puwém; escala = bajudh(música) -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "in kó'onchal in jalbíl a xi xowé' in puwém" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "júnakej" -# esperar = áychij -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "ki in áychij an ólchix ayendhanél" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "anits tam" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "ka ay'chij an ots'oltaláb o an t'iplab tejwa'mejdhomtaláb ma ka taley" +# ka ts'at'banchij in puwél +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "ka ts'atba' in puwel" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "" +"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al an eyextaláb ti Chudhél " +"dhuchlab (yab tejwa'medhach)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "ma ti" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 msgid "media stop" msgstr "an kubláts k'al an kawidh olnoxtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "ka kuba an t'iplab tejwa'mejdhomtaláb o an ots'oltaláb" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Punchij in tsáp an dhememél tolmix" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "wé' kuba' an kawidh olnoxtaláb" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "pakuw abal etsey an ayendhanel xi tin bál an úw" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "wé' kuba' an tiplab tejwa'mejdhomtaláb o an ots'oltaláb" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "wilk'ixtláb ti U" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "ki in áynanchij an kawidh olnoxtaláb" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "ebal ti t'i'e' k'al an Pakdha' t'ojláb 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"ki in tsab áynanchij ki in wat'ba' i t'iplab tejwa'mejdhomtaláb o ki in tsab " -"t'eney i ots'oltaláb" +"an kwene' tsalpadht'ojlab: ayendhach abal ki puk'uychik an ecuaciones " +"matemáticas xi lej k'adhat ti ál an ecuaciones matemáticas ti jún i dhuche', " +"p.e., seno(x)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "kaw" +# paleta = kwene'; operadores, controladores = abatnom +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Kwene' k'al an wat'etél abatnom" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "ne'nek" +# eblim ka t'ia' jununúl +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "eblim ka t'i'a' jununul" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "ulal an dhuchláb" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"beldhom anits-tam-junake' axi in eyendhal i beldhomchik ti in ey an kwene' " +"Ajixtaláb" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "in wichbal an elax kits'lab ani an chuchbixtaláb" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "xuwek'ij in kwa'al in mukub a dhuchumtal" + +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pitch, duration, amplitude #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 msgid "sinewave" msgstr "sinusoide" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Kibts'ontaláb k'al in chubáx éy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "owát" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "kwa't'ab x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "in watbál junkubat al an sinusoide, in owát anij in owem (adhik k'ij)" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "ka ts'at'ba' ti in áy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "ni'adh dhuche'" +# pila = t'i'ab +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "An RGB mukuxtaláb ti in alam an pet k'wajbámej t'i'i'idh" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "wichel jun max an dhuche' kwajat ni'adh" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "in t'okál in walte'lil tam ka tsinka' an kwene' t'ojláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -#, fuzzy -msgid "returns True if mouse button is pressed" -msgstr "wichel jun max an dhuche' kwajat ni'adh" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "chuchbixtaláb x" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "in wichbal an elax kits'lab x al an chuchbixtaláb" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "chuchbixtaláb y" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "in wichbal an elax kits'lab ani an chuchbixtaláb" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -# consultar de teclado = alimdhuchumtaláb -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "alim dhuchumtaláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Abatnom chr i Python" -# resultados = bajúdhchik -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"ka aliy abal an otseltaláb k'al an dhuchumtaláb (in bajúdh k'wajat dhayach " -"ti al an kwene' t'ojláb xi in k'ál an dhuchumtaláb)" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "peltom i jolat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "ni'imtal dhuche'" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Coordenadas centímetros" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" +# valor = jalbíl ; cadena = dhuchlab +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "in jalbíl an dhuchlab" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "tejwa'méjdhomtaláb" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Inbáj u exlál jant'odha' ku t'aja'" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "ka ts'atba' in puwél an dhuchlab" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Ayendhóm:" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" msgstr "" -"in kwa'al in bajúdh k'al an kwene' t'ojláb i ni'imtal dhuche' álimtaláb " -"jant'ini' ASCII" +"ka ts'ikinchij ka t'uchiy an poligono (tan ka eyendha' in taltal an " +"t'uchixtalab k'al an kw`'ne' dhuche')" -# leer = ajiy -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "ka ajiy i pixel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "" +"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al tse' i eyextaláb ti " +"Chudhél dhuchlab" -# pila = t'i'ab -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "An RGB mukuxtaláb ti in alam an pet k'wajbámej t'i'i'idh" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Tsu'uw" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "ka punchij in junkul an aku' ti ba' an kitslab xi tsejkadh k'al an pet" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Tsinatbijiláb:" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 msgid "turtle sees" msgstr "an pet tsu'ux" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "ka ólna' an mukuxtaláb a xi in \"tsu'tal\" an pet" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "kuba' an pakdha' t'ojláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "k'ij" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "yaxu'" -# segundo = adhik k'ij -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "" -"an k'ij wat'enek (ti adhik k'ij) ma ti in tujtal ti in al an tsalpadht'ojláb" +# in alwá' an mukuxtaláb +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "in tsapik in majub" -# adiciónal = punk'uxtaláb ; adiciónales = in punkuxtal -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Kwene' ti in púnk'uxtal i jolat takudhtaláb" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "ka t'uchinchij in wal k'an (mukuxtaláb)" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "nixa'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "dhaya' i t'iplab" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "janidhtaláb" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "wichel jun max an dhuche' kwajat ni'adh" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "K'adhíl ti coordenadas abal ebál" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "ka k'adhba' i kits'oxtaláb" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "t'a'at manu'" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "" +"in kubál jun i wé an k'ij tam kw'ajat ti t'ojnal jun i tsalpadh t'ojláb" # pila, batería = mulkuxtsápláb #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 @@ -1572,1127 +2282,1451 @@ msgstr "" "ka t'i'aj in jalbíl eblim an mulkuxtsápláb FILO (k'a'ál ti otsel, kalel ti " "taltaláb)" -# batería, pila = mulkuxtsápláb -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "ka tejwa'méjdha' an t'i'nél" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "ki pakuw patal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "" -"ka tejwa'méjdha' in jalbílchik al an t'i'nél FILO (k'a'ál ti otsel, kalel ti " -"taltaláb)" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "tam" -# vaciar = jolk'ow -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "ka jolk'ow an t'i'nél" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Dhuchadh" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "ka jolk'ow an t'i'nél FILO (k'a'ál-ti-otsel kalel-ti-taltaláb)" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ibáj" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "kaldha'" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "anits tam max inbáj" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "" -"ka kanchij in jalbíl ti t'i'nél FILO (otsel ti k'a'ál, kalel ti taltaláb)" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "xowe' ka kuba' an pakdha' t'ojláb" -# vaciar = jolk'ow -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "ka jolk'ow an t'i'nél?" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "in tsawindhál an pet jant'ojdha' an lejbaxk'ij (t'ipchidh in kexem)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "in wichbál xi chubax al an t'i'nel xi jolat" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"ka ko'onchij in junkul an aku' (ka ejtowat ka eyendhaj tin jalk'ul an jun i " +"kwene' ajixtalab)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "káw" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor ti kwa'atbe' waldhuchumtaláb" -# código = káw -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "ka punuw jún i káw ti al a dhuche'il" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Ka wichk'ow in púwél an kwene' t'ojláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "ka wat'ba' ti úw" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "pet" -# imprime = dhunchunchij -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "" -"ka dhuchunchij in jalbíl ti al in alwá' an kwene' t'ojláb ti in alálim an " -"walek" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "ki tejwa'medha' xi júnakej i kwene'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Abatnom chr i Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "tsina' an kwene' t'ojláb" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "in t'ajáx eladh ti k'otbix walekláb" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 msgid "Python int operator" msgstr "Abatnom int i Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "an bolk'dh t'ojnal axi lej pulik etil a" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"an kwene' tsalpadht'ojlab: ayendhach abal ki puk'uychik an ecuaciones " -"matemáticas xi lej k'adhat ti ál an ecuaciones matemáticas ti jún i dhuche', " -"p.e., seno(x)" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "ki wichba' patalchik an muke' ti al an balixtal úw" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "punchidh exobintalab eyadh`k'al an ajintalab ,i,e.,sqrt(x*x+y*)" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Dhaya'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "ki dhaya' ti ál an ka'al baltse' 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "dhaya' ti baltse' 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "in tsinkál an ayixtalab axi in k'al a Sugar" + +# elax kits'lab=coordenada +#: TurtleArt/tabasics.py:226 msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"punchidh exobintaláb eyadh k'al an ecuaciones matemáticas axi k'ibichik yan, " -"p.e. seno(x+y+z)" +"in kwa'al xuwék'ij an pet an éláx kits'lab x (i ejtowal ki eyendha' ti in " +"jalk'úl jún i kwene' t'ojlab i ajixtaláb)" -#: 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:653 -msgid "Python block" -msgstr "Python kwene' t'ojláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "ka wat'ba' ti úw" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "" -"ka t'aja' jun t'ie' i dhuche' ti kwene't'ojláb tamyblock.py axi kw'ajat ti " -"Chudhél dhuchlab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "in wichbal an elax kits'lab x al an chuchbixtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesiana" +# Logo = T'iplab +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Ka dhaya' jant'ini' i T'iplab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "t'ipodh elax kits'lab Cartesianas" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "ka ts'at'banchij in mukuxtalábil an kits'lab axi in t'ipoyal an pet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "pulàb" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "ka ts'atba' in mukuxtalabil an dhuchlab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "tìpodh pulàb elàx kits'lab" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "tsapik an kawídh" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "pet" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Walka' an dheyetnaxtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "ka takuy an pet ti abatnom" +# sensor = ats'ax +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "in yetse' ot'ol an pet" +# T'uchinchij in kidhtal +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "An k'adhbomáts k'al in kidhtal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "ka kotonliy t'ipts'odh an pet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#, fuzzy +msgid "returns True if mouse button is pressed" +msgstr "wichel jun max an dhuche' kwajat ni'adh" -# eblim ka t'ia' jununúl -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "eblim ka t'i'a' jununul" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "ajixtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "k'adhba'" +# consultar de teclado = alimdhuchumtaláb +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "alim dhuchumtaláb" -# pejadht'ojláb=bloque -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -msgid "loads a block" -msgstr "k'adhba' jún i pejadht'ojláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "eblim" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "ka ts'at'ba' xy" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Abna' ti ál an web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "kwene' mukuxtaláb" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Coordenadas cartesianas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "takuy an kwene' mukuxtaláb" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Ódhbij" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "An kwene' tejwame'dhomtalab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "bajudh junkudhtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "tsina' an kwene' t'ojláb" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Pexchixna' an takudh kwene'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "in t'okál in walte'lil tam ka tsinka' an kwene' t'ojláb" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "dhakni'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "ka tejwa'mejdha' an kwene' t'ojlab" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "" +"in ts'ot'k'oyal an kwene' t'ojláb ti dhuche' ani ka t'ajan ti kwene' " +"ayendhanél" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "ka wichk'ow an kwene' t'ojlab axi tsinkadh" +# segundo = adhik k'ij +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "" +"an k'ij wat'enek (ti adhik k'ij) ma ti in tujtal ti in al an tsalpadht'ojláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "in tsinkál an ayixtalab axi in k'al a Sugar" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "T'apiy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "k'elab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "t'ek'em an telmaxtaláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "tejwa'medhomtaláb k'al an k'elab ti witsil dhuche'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "tejwa'medhomtaláb 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "t'ipoxtaláb ti tejwa'medhomtaláb: k'elab an wistil dhuche'" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "we'medhax" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "" -"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al an eyextaláb ti Chudhél " -"dhuchlab (yab tejwa'medhach)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "eblim ti ba an paklax binom tsaplab" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "ejtil i otseltaláb" + +#: 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:653 +msgid "Python block" +msgstr "Python kwene' t'ojláb" + +# esperar = áychij +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "ki in áychij an ólchix ayendhanél" + +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "lejbaxadhiklab" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" msgstr "" -"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al an eyextaláb ti Chudhél " -"dhuchlab (tejwa'medhach)" +"ja'its in puwel xuwe'k'ij an dhuchumtalab (i ejtowal ki eyendha tin jalk'ul " +"jun i k'enel ajixtalab)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "ka ts'at'ba' an mukuxtaláb" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +# pejadht'ojláb=bloque +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +msgid "loads a block" +msgstr "k'adhba' jún i pejadht'ojláb" + +# kwene' abatnaxtal=paleta de ordenes de... +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "I kwene' abatnaxtaláb k'al an kits'oxtaláb" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" msgstr "" -"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al tse' i eyextaláb ti " -"Chudhél dhuchlab" +"ka tejwa'méjdha' in jalbílchik al an t'i'nél FILO (k'a'ál ti otsel, kalel ti " +"taltaláb)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" +# lógico = exbadh ; paleta = kwene' +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" -"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al tsab i eyextaláb ti " -"Chudhél dhuchlab" +"abatnom aníts-tám-júnakej xi in ayendhál i exbadh abatnomchik k'al an " +"Ajixtaláb ti kwene'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor ti kwa'atbe' waldhuchumtaláb" +#: turtleblocks.py:363 +msgid "File" +msgstr "Dhuchlab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "alam" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "t'ojnal YAB bolk'idh" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 msgid "ycor of bottom of screen" msgstr "ycor tin walte'il alal an waldhuchumtalab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "ts'ikwél" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "" +"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al an eyextaláb ti Chudhél " +"dhuchlab (tejwa'medhach)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "tin ts'ikwém an telmaxtaláb" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Kwene' t'ojnalchik kal an ajumtabal" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor tin walte' winbéj ti waldhuchumtaláb" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "yanedhom ajixtalab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor tin walte' ti eblim an waldhuchumtaláb" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "abal ets'ey" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "t'ek'em" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "An kidhataláb %s k'wajatits punudh." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "t'ek'em an telmaxtaláb" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "ka tsa'tbanchij in yik'uax an kitslab axi in ts'ejkal an pet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "bijláb x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "ulal an dhuchláb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "bijláb y" +# Instantánea=adhik +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "adhik" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "kwa't'ab x" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "t'oka'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "eblim y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "" +"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al tsab i eyextaláb ti " +"Chudhél dhuchlab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "wínab x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Ka púwedha' an kwene' t'ojlábchik" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "ti in alam y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Putat walek" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "tejwa'medhomtaláb 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Ibáj elan i dhuchlab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "tejwa'medhomtaláb 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "tejwa'méjdha'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "tejwa'medhomtaláb 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "dhuchlab" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "tejwa'medhomtaláb 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "yab aykadh" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "an bolk'idh t'ojnal axi lej pulik etil a" -#: pysamples/brain.py:54 -msgid "Spanish" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" +"in tsawindhál an pet ti in k'et'ach jant'ojdha' ti belal an lejbaxk'ij " +"(t'ipchidh in kexem)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "t'unu'" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "ka aliy an raiz cuadrada" -#: pysamples/brain.py:100 +# éláx kits'lab=coordenanda +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" +"in kwa'al xuwék'ij an pet an éláx kits'lab y (i ejtowal ki eyendha' ti in " +"jalk'úl jún i kwene' t'ojláb i ajixtaláb)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "chuchbixtaláb x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "chuchbixtaláb y" #: pysamples/grecord.py:215 msgid "stop" msgstr "kuba'" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "tsabk'wajba'" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "dhaya'" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "mas pulik etil a" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "wilk'ixtláb ti U" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "ka t'aja' jun i wilk'ixtaláb ti U" +# Ayuda = tolmix(conjugado, naná' in tolmix); Ayuda(La) = Tolmixtaláb(como sustantivo: an tolmixtaláb) +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Tolmixtaláb" -# el uso es = se usa para = ayendháb abal -#: turtleblocks.py:86 -msgid "usage is" -msgstr "ayendháb abal" +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "¿Ki dhaya' an tsalapnadh t'ojláb?" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Yab ka t'aja' i jolat takudhtaláb:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "ka takuy an pet ti abatnom" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Ibáj elan i dhuchlab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "wínab x" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "An t'ojojoxtaláb ti dhayab-úw ibáj ka jalk'unchij: %s" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "ka tsat'abaj in mukuxtalab an dhuchlab axi in t'ipoy an pet" -# Nuevo = Ít -#: turtleblocks.py:354 -msgid "New" -msgstr "Ít" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "wichat an tajaxtalab éladh k'al an tsu'tom" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Japiy" +# plugin=complemento +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "An kidhataláb yab elat ka punuwat." -#: turtleblocks.py:356 -msgid "Save" -msgstr "Dhaya'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "ni'imtal dhuche'" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Dhaya' jant'ojdha'" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "pulich" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Kalej" +# játs tam a kiloyal jún i kwechoch ti in waltelíl ma ti in ts'ejéltal +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "tin tsejeltal jun i kweche' anij ma walté" -#: turtleblocks.py:363 -msgid "File" -msgstr "Dhuchlab" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Coordenadas polares" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Kadhiy ti coordenadas" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "ka ts'at'banchij in ts'apik in tajax" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Ka wichk'ow in púwél an kwene' t'ojláb" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "to'jnal ANI bolk'idh" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Tejwa'méjdha'/dhibk'oy an kwene' t'ojláb" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"In yejenchal ka ko'oy jun i kwet-ajixtaláb ti http://turtleartsite.sugarlabs." +"org to upload your project." -# Herramientas = Ayixtaláb/ayendhanél -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Ayixtaláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "kwene' mukuxtaláb" -# Depurar = Takwláts -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Takwláts" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Ka t'aja'" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Pet" +# batería, pila = mulkuxtsápláb +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "ka tejwa'méjdha' an t'i'nél" -#: turtleblocks.py:407 -msgid "About..." +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" +"ka ts'at'banchij in áy an pet ju'taj tin tomnal ka k'alej (0 já'its abal " +"ebál ti walek.)" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Yab a dhaya' an t'ojláb. ¿A kulbétnal ka dhaya' ok'xidh ki it kalej?" - -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "¿Ki dhaya' an tsalapnadh t'ojláb?" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "takuy an kwene' mukuxtaláb" -#~ msgid "Turtle Art Mini" -#~ msgstr "Tortug tsipkats tsalpadh t'ajnel" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "tsapik an kawídh k'al an otseltaláb kawidhomtaláb" -#~ msgid "Turtle Confusion" -#~ msgstr "Tortug k'iptsodh tsalpadh t'ajnel" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Bijláb:" -#~ msgid "Select a challenge" -#~ msgstr "Takuy jun i ata'intalab" +# Paleta de bloques medios = paleta de objetos multimedia = kwene' i eyextaláb multimedia +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Kwene' i eyextaláb multimedia" -# Kwene' i Lábtómíb pexujchik -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Tsiik nujneltalab k'al an tum'n in k'al an labtomibchik" +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "ki wichba' patalchik an muke' ti al an balixtal úw" -# Kwene' i Colombiajíb pexujchik -#~ msgid "Palette of Colombian pesos" -#~ msgstr "paleta de pesos colombianos" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "An kwene' axi ti kwene' t'ojláb k'al an bijlabchik" -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Kwene' i Rwandajib francos (tumín)" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "" +"eyendhach etil in otseltal ajumtalab ti ba' an tolmix k'al an matematicas" -#~ msgid "Palette of US dollars" -#~ msgstr "Kwene' i EE. UU dólares (tumín)" +#: 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 "K'adhba'" -#~ msgid "Palette of Australian dollars" -#~ msgstr "Kwene' i Australiajib dólares (tumín)" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Tólmix buk'ul" -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Kwene' i Paraguayjib Guaraníes" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "tejwa'medhomtaláb 2x2" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Kwene' i Perujib Nuevo Soles (ít tumínchik)" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Bijlab 1 (jalbil ajixtaláb)" -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Kwene' i Uruguayjíb Pexuj" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Át k'imádh" -# In junkunchal in tsapík xi ti LED ti al an 0 ani 255 -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "in lejbayal in tsapík xi LED k'al 0 ani 255" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "ka tamkuy tsab i otseltaláb alfanuméricas" -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "" -#~ "in wichbanchal in wichát an tajaxtaláb ti al an k'ay'lál jant'ini' jún i " -#~ "ajixtaláb ti al an 0 ani 1023" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "jununúl" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "" -#~ "in wichbal jun tam al dhuche' k´wajat ni'adh ti 0 ani k'al pil i ajumtalab" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "max ibáj" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "" -#~ "in wichbal in wichat an tajaxtalab al an k'ailal ejtil jun i ajixtalab al an " -#~ "0 ani 1023" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "inbáj in kulbetnal" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "" -#~ "in wichbal an alwa'talab al an k'ailal ejtil jun i ajixtalab al an 0 ani 255" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Yab a dhaya' an t'ojláb. ¿A kulbétnal ka dhaya' ok'xidh ki it kalej?" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "in wichbal in ow'at an eyextalab tin tamet an ots'bixtalab ejtil jun i " -#~ "ajixtalab ba' an 0 ani an 255" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "ka wichk'ow an kwene' t'ojlab axi tsinkadh" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "in wichbal an 0 o1 k'al in kwentalidh k'al an ots'bixtalab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "k'adhba'" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "in wuichbal jun tam an ots'bixtalab in 'elal jun xi yab bijidh, ba' an 0 " -#~ "k'al pil i ajixtalab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "ka kuba an t'iplab tejwa'mejdhomtaláb o an ots'oltaláb" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "ejel ba' an 0 ani al an 1 tam dhiyoyolats" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "An pet tam ka yatsin yab jant'oj ne'ets ki in t'ipoy." -#~ msgid "LED" -#~ msgstr "LED" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "kaldha'" -#~ msgid "button" -#~ msgstr "ni'im" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "puwél" -#~ msgid "grayscale" -#~ msgstr "bajudh aku´" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "in yetse' ot'ol an pet" -#~ msgid "ambient light" -#~ msgstr "tajax k'ailal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "in watbál junkubat al an sinusoide, in owát anij in owem (adhik k'ij)" -#~ msgid "temperature" -#~ msgstr "temperatura" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "distance" -#~ msgstr "in owát" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "kaw" -#~ msgid "tilt" -#~ msgstr "pélat" +# Frecuencia = wichk'ontaláb +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "ajiy in jalbíl an wichk'ontaláb pat'ál wat'bón káw RFID" -#~ msgid "magnetic induction" -#~ msgstr "jolatalab abal jun i 'adhik t'ojlab" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "ka yatsiy an pet ti in nakél an pulich" -#~ msgid "vibration" -#~ msgstr "dhiyoyol" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "ka t'aja' jun i wilk'ixtaláb ti U" -#~ msgid "Butia Robot" -#~ msgstr "Robot Butía" +# jununúl se utiliza para los dos conceptos equivalante e igual. +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "an bolk'idh t'ojnal axi jununúl" -#~ msgid "refresh Butia" -#~ msgstr "itméjdha' Butiá" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "In kwene' mukuxtalabil a dhuchumtalabil" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "" -#~ "ka itméjdhanchij in alwá' an kwene' mukuxtaláb Butiá ani a xi ti pejadh " -#~ "t'ojláb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "wé' kuba' an tiplab tejwa'mejdhomtaláb o an ots'oltaláb" -#~ msgid "battery charge Butia" -#~ msgstr "in dhayal an ti'el butiá" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "dhaya' in jabil an ajixtaláb ti Bijlab 1" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "" -#~ "wichba' an dhaykom k'al an mulkux tsapláb an robot ejtil jun i ajixtalab ba' " -#~ "an 0 ani an 255" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "dhaya' in jabil an ajixtaláb ti Bijlab 2" -#~ msgid "speed Butia" -#~ msgstr "adhiktaláb butiá" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "ka kotonliy t'ipts'odh an pet" -#~ msgid "forward Butia" -#~ msgstr "ne'etsnanchij Butiá" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "ni'adh dhuche'" -#~ msgid "move the Butia robot forward" -#~ msgstr "ka edha' an robot ani ka ne'etsnanchij" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "ka wichba' ti in kúx an pet" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "ka edha' an robot Butiá ani ka aynanchij in owát jant'ini ka kulbetna'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor tin walte' ti eblim an waldhuchumtaláb" -#~ msgid "left Butia" -#~ msgstr "k'watab Butiá" +# bloque = kwene't'ojláb (conjunto de actividades) +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Ka tejwa'méjdha' an kwene't'ojlábl" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "in wilk'iyal an pat'al atikláb abal tin winab" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "tsabk'wajba'" -#~ msgid "backward Butia" -#~ msgstr "wichba' Butiá" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "dhaya'" -#~ msgid "move the Butia robot backward" -#~ msgstr "edha' an robot Butiá ani´ka wichba'" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Mukuxtaláb" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "edha' an robot Butiá kuxlab ka alchij in ówat" +# ka ts'at'banchij in ts'ikwél an kits´lab a xi an pet in t'ipoyal +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "ka t'ipchij in ts'ikwel an kits´lab axi an pet ne kin t'ipoy" -#~ msgid "right Butia" -#~ msgstr "wínab Butiá" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Japiy" -#~ msgid "turn the Butia robot at right" -#~ msgstr "in wilk'iyal an pat'al atikláb abal tin winab" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "bolidhtaláb" -#~ msgid "turn Butia" -#~ msgstr "wilk'iy Butiá" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "ka tsawiy an robot Butiá ba' an ajumtal k'al in kextal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "punchidh exobintalab eyadh`k'al an ajintalab ,i,e.,sqrt(x*x+y*)" -#~ msgid "stop Butia" -#~ msgstr "kuba' Butiá" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "anits" -#~ msgid "stop the Butia robot" -#~ msgstr "in k'ubal an pat'al atikláb Butiá" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"ka yatsiy an pet ju'táj ti k'wajat xcor, ycor; (0, 0) k'wajat ti in " +"ts'ejéltal an walek." -#~ msgid "Butia" -#~ msgstr "Butiá" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#, fuzzy -#~ msgid "Error on initialization of the camera" -#~ msgstr "K'ibts'ontalab al in tujtal ba' an k'ot'bixtalab" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Kuba'" -#~ msgid "FollowMe" -#~ msgstr "FollowMe" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "pakdha' t'ojláb 2" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "In aliyal al jun i brinck NXT xi ts'ot'k'odh." +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "pakdha' t'ojláb 1" -#~ msgid "calibration" -#~ msgstr "t'ójojodhtaláb" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "ka t'uchiy an mukuxtalab" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "dhaya' an t'ójojodhtaláb ta kwete' k'ál" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "K'ot'biy" -#~ msgid "return a personalized calibration" -#~ msgstr "wichba' jún i t'ójojodhtaláb ta kwetém k'ál" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Ts'at'k'a'" -#~ msgid "follow" -#~ msgstr "áynanchij" +# No produjo salida a +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "yab in t'aja' i kadhaxtaláb abal" -#~ msgid "follow a color or calibration" -#~ msgstr "áyna' jún i mukuxtaláb o, i t'ójojodhtaláb" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "T'ojlábchik" -#~ msgid "minimum pixels" -#~ msgstr "we'kats in ák'" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "K'adhba' ti ál an web" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "uluw an we'kats ák 'ajixtaláb a xi ne'ets ka áyna'" +# vaciar = jolk'ow +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "ka jolk'ow an t'i'nél" -#~ msgid "threshold" -#~ msgstr "ti wi'leb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "" +"ka kanchij in jalbíl ti t'i'nél FILO (otsel ti k'a'ál, kalel ti taltaláb)" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "in tejwamedhal an umbral abal jun i mukuxtaláb RGB" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "T'oka'" -#~ msgid "x position" -#~ msgstr "jun ejet x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "An kwene' tejwame'dhomtalab" -#~ msgid "return x position" -#~ msgstr "ka wichba' jun ejet x" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "kexem" -#~ msgid "y position" -#~ msgstr "jun ejet y" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "ibíl" -#~ msgid "return y position" -#~ msgstr "ka wichba' jun ejet y" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Dhaya'/K'adhba'" -#~ msgid "pixels" -#~ msgstr "ajidh alwa'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "eblim y" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "ka wichba' in ák' ajixtal an mink'oxtaláb a xi wat'adh púlik" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ots'oltaláb" -#~ msgid "empty calibration" -#~ msgstr "jolát t'ójojodhtaláb" +# Herramientas = Ayixtaláb/ayendhanél +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Ayixtaláb" -#~ msgid "error in string conversion" -#~ msgstr "uk'pintaláb al an wilk'intaláb xi ti polts'óx dhuchlab" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Wi'leb" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "k'watab'" -#~ msgid "speed SumBot" -#~ msgstr "adhik SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "káw" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "tejwa'méjdhanchij in adhiktal an SumBot" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "" +"ka kaldha' in otsemtal an ajumtalab xi kwajat tin alam an ajumtalab xi ebal" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "ka t'ipoy an adhiktalab abal an abatnom tam ka ejelats" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "wé' kuba' an kawidh olnoxtaláb" -#~ msgid "forward SumBot" -#~ msgstr "ne'etsnanchij SumBot" +# resultados = bajúdhchik +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"ka aliy abal an otseltaláb k'al an dhuchumtaláb (in bajúdh k'wajat dhayach " +"ti al an kwene' t'ojláb xi in k'ál an dhuchumtaláb)" -#~ msgid "move SumBot forward" -#~ msgstr "yatsiy an SumBot abal tin t'amal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesiana" -#~ msgid "backward SumBot" -#~ msgstr "tin kùx an SumBot" +#: 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 "k'amáltsáj" -#~ msgid "move SumBot backward" -#~ msgstr "ka yatsiy an tipoxtalàb abal tin kux" +# ka t'oka' an walek ani ka wichkow an pet +# +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "in t'okál an walek ani in wichk'owal an pet" -#~ msgid "stop SumBot" -#~ msgstr "ka kuba' an tipoxtalàb" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "olchixtaláb k'al an otseltaláb kawidhomtaláb" -#~ msgid "stop the SumBot" -#~ msgstr "in koydhal an tipoxtalàb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "ka ólna' an mukuxtaláb a xi in \"tsu'tal\" an pet" -#~ msgid "left SumBot" -#~ msgstr "k'wàtab an tipoxtalàb" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "ki tsalapna' an t'i'e' ba an Pakdha' t'ojláb 1" -#~ msgid "turn left the SumBot" -#~ msgstr "ka wilk'iy an tipoxtalàb abal tin k'wàtab" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Kwene' an abatnomtaláb k'al an pet" -#~ msgid "right SumBot" -#~ msgstr "winab tipoxtalàb" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "ka wichk'ow abal ets'ey" -#~ msgid "turn right the SumBot" -#~ msgstr "wilk'iy an tipoxtalàb abal tin winab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "k'elbadh ka tejwa'méjdha'" -#~ msgid "angle to center" -#~ msgstr "kexem ba' in ts'ejeltal" +# TortugArte = WitsixPet +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Witsix Pet" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "ka kanchij in keyem ba' in ts'ejeltal an dohyo" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "¿A lé'xe' ka tsab punuw %s?" -#~ msgid "angle to Enemy" -#~ msgstr "kexem an k'eat tsalapil" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "K'adhba' an tojláb" -#~ msgid "get the angle to the Enemy" -#~ msgstr "ka kanchij in owát an k'eat Tsalapil" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Tsalapnadh t'ojláb" -#~ msgid "x coor. SumBot" -#~ msgstr "coor. x SumBot" +# Depurar = Takwláts +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Takwláts" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "ka kanchij an elax kits'lab x an robot" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Ki tixk'anchij in tsáp an dhememél tolmix" -#~ msgid "y coor. SumBot" -#~ msgstr "coor. y SumBot" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Tsinatbijiláb" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "in kanchij an elax kits'lab an robot" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "jolataláb xi kubladh" -#~ msgid "x coor. Enemy" -#~ msgstr "coor. x k'eat tsalapil" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" +"T'ajchij an alwa'taláb ka tsab tujchij an Witsix Pet abal ka ejtow ayendha' " +"an kidhataláb." -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "ka kanchij an elax kits'lab x an robot" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"ka kidhbay an poligono xi t'uchidh (tam ka eyendha' tin tujtal in t'uchix an " +"kwen'e t'ojlab)" -#~ msgid "y coor. Enemy" -#~ msgstr "coor. y k'eat tsalapil" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Péjkaxna'chik" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "in kanchij an elax kits'lab an robot" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "lej tsipti' etil a" -#~ msgid "rotation SumBot" -#~ msgstr "wilil SumBot" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "raiz cuadrada" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "ka kanchij an wililtalab jun puk'e'" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Kadhiy ti coordenadas" -#~ msgid "rotation Enemy" -#~ msgstr "wilil k'eat tsalapil" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "ka tejwa'mejdha' an kwene' t'ojlab" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "ka kanchij an wililtalab jun Puk'e'" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Kalej" -#~ msgid "distance to center" -#~ msgstr "in owát an ts'ejeltal" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "winab" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "ka kanchij in owát an ts'ejeltal xi dohyo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar Diario pél jún i jolát abal an tejwa'méjdhomtaláb" -#~ msgid "distance to Enemy" -#~ msgstr "in owàt xin k'eat tsalapil" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "ka punchij aku'" -#~ msgid "get the distance to the Enemy" -#~ msgstr "ka kanchij in owát an k'eat Tsalapil" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "tejwa'medhomtaláb k'al an k'elab ti witsil dhuche'" -#~ msgid "update information" -#~ msgstr "ka itmedha' an olchixtalab" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "owát" -#~ msgid "update information from the server" -#~ msgstr "ka itmedha' an olchixtalab ba' an ábatnom" +# Nuevo = Ít +#: turtleblocks.py:354 +msgid "New" +msgstr "Ít" -# sensor = ats'ax -#~ msgid "Palette of physics blocks" -#~ msgstr "In kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" +# código = káw +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "ka punuw jún i káw ti al a dhuche'il" -#~ msgid "start polygon" -#~ msgstr "tujchiy yan walt'etil" +# leer = ajiy +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "ka ajiy i pixel" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Ka tujchij ka bijiy an it yan walt'elil jantodha ti kw'ajat xokij xy in k'al " -#~ "an pet." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "puwém" -#~ msgid "add point" -#~ msgstr "ka punk'uy an tuk" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "alam" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Ka punk'uy jun i it tuk al an yan walt'elil xi kwajat xokij xy al an pet." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "tamkulom mukuxtaláb" -#~ msgid "end polygon" -#~ msgstr "puntundha yan walt'elil" +# escalar=k'adhíl(subir) +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "K'adhíl ti coordenadas abal alál" -#~ msgid "Define a new polygon." -#~ msgstr "Ka bijiy jun i it yan walt'elil." +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "ni'inchij abal ka japiy" -#~ msgid "end filled polygon" -#~ msgstr "ka putundha an yan walt'elil xi t'uchidh" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "jolát an otseltaláb ti kawidhomtaláb" -#~ msgid "Not a simple polygon" -#~ msgstr "Yab i yan walt'elil alk'idh" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "T'ojojoxtaláb" -#~ msgid "Define a new filled polygon." -#~ msgstr "In bijiyal jun i it yan walt'elil xi t'uchidh." +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Tejwa'méjdhomtaláb:" -#~ msgid "triangle" -#~ msgstr "òx ts'upi'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "chudhél dhuchlab" -#~ msgid "base" -#~ msgstr "in akan" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "jolk'ow an balixtaláb amúl" -#~ msgid "Add a triangle object to the project." -#~ msgstr "In punk'uyal jun i eyixtalàb al an òx ts'upi' al an tojlàb." +# An pet ne'ets ti t'ipox tam ka yatsin. +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "An pet ne'ets kin t'ipoy tam ka belats." -#~ msgid "circle" -#~ msgstr "kw'echo'" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "K'adhba'..." -#~ msgid "Add a circle object to the project." -#~ msgstr "An punk'uyal jun i eyixtalàb al an kw'echo' abal an tojlàb." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Journal pél i eyextaláb ti ots'oltaláb" -#~ msgid "rectangle" -#~ msgstr "pek'madh tse' walte'" +# Tortuga = Pet +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Ka kuba' an pet" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "In punk'uyal jun i eyixtalàb pek'madh tse' walte' al an tojlàb." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Pet" -#~ msgid "reset" -#~ msgstr "tsab tujchi'" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "ka jalk'unchij in áy an kewne' ti kwene' t´'ojláb" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "" -#~ "Ka tsàb tujchi' an tojlàb, in t'okedhal an eyixtalàb xi kwajat k'elbadh." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "ki dhaya' ti" -#~ msgid "motor" -#~ msgstr "ichich pat'al" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Ka dhibk'oy an kwene't'ojlábchik" -#~ msgid "torque" -#~ msgstr "jayetsek'ij" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "K'adhba' an Python kwene' t'ojláb" -#~ msgid "speed" -#~ msgstr "adhiktalàb" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "tamkuy" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Xi jayetsek'ij an adhiktalàb al an ichich pat'al xi kwajat al an rango 0 " -#~ "(tepts'idh) al an ajixtalàb positivos; an ichich pat'al kwajat punudh al an " -#~ "eyixtalàb xi inkidh itej." +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "o" -#~ msgid "pin" -#~ msgstr "eyindhanel xi ts'upidh anij pulik in ok' xi eynal abal ti ts'at'axtalàb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "t'ipoxtaláb ti tejwa'medhomtaláb: k'elab an wistil dhuche'" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "In teynal an eyixtalàb abal yab ka ijkan." +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "in ibíl an t'ojnal eyendhach abal ka yanedha' an kwen'e t'ojlab" -#~ msgid "joint" -#~ msgstr "junkudh" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Tsipti'méjdha' an kwene' t'ojlábchik" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "In tamkuyal tsab i eyixtalàb (an eyixtalàb xi inkidh anij an eyixtalàb xi " -#~ "kwajat al an tuk x,y)." +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "ka ts'atba' in puwel an dhuchlab axi in tsejkaj an pet" -# actividad física=t'ojondha' i iniktal -# dhaya' jant'ini' i t'ojláb abal ki t'ojondha' i iniktal -#~ msgid "save as Physics activity" -#~ msgstr "dhaya' jant'ini' i física t'ojláb" +# in kwa'al xuwék'ij in bélil an pet (i ejtowal ki eyendha' ti in jalk'úl jún i kwene' t'ojlab i ajixtaláb) +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"in kwa'al xuwék'ij an pet an elax kits'lab y (i ejtowal ki eyendha' tin " +"jalk'ul jun i kwene' t'ojlab ajumtalab)" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "In dhayal an t'ojlàb al an chudhèl dhuchlab fisica." +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "t'iplab" -#~ msgid "gear" -#~ msgstr "kwechoch" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"ka wichba' jun i ajumtalab tin ay an jolat tsiptí jalbil (walk'i') anij an " +"pulik alal" -# Punk'unchij jún i kwechoch eyixtaláb ti tsalapnadh t'ojláb -#~ msgid "Add a gear object to the project." -#~ msgstr "An punk'uyal jun i eyixtalàb al an kwechoch abal an tojlàb." +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"xuwek'ij in kwa'al in mukuxlabil a dhuchumtalábil (ejtowab ka eyendhaj tin " +"jalu'k an kwene' ajumtalab)" -#~ msgid "density" -#~ msgstr "alemtalàb" +# paleta = kwene'mukuxtaláb +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Tejwa'méjdha' an kwene'mukuxtaláb" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "In bijiyal an àlemtalàb kal an eyixtalàb (an àlemtalàb neèts bijidh jawakits " -#~ "ajumtalàb xi chubax)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "in dhayál jún i t'iplab ti Sugar Diario" -#~ msgid "friction" -#~ msgstr "tam i tadhanal jit'a, o tam u yats'nal" +# Instantánea (o) = Jun adhik +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Dhayaxtaláb k'al an jun adhik" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "In bijiyal in uchbil tam i tadhanal jant'o o jun i eyixtalàb (in alèm " -#~ "nijant'o anij jun, ju'ta' nijant'o jats' tam i tadhanal anij jun jats xi " -#~ "ts'apik)." +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "tujuw" -#~ msgid "bounciness" -#~ msgstr "in wichbàl jun i eyindhanel xin kwa'alak tin k'ubak owatits" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "in wichbál xi chubax al an t'i'nel xi jolat" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "In bijiyal in uchbil kal an eyixtalàb xin kwa'alak tin k'ubak (in alèm " -#~ "nijjanto' ani jun, ju'ta nijanto' in le' kin uluw in wichbal ani jun in le' " -#~ "kin uluw yan)." +# ka ne'etsnanchij ka yatsiy' an pet +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "ka ne'etsnanchij ka yatsiy' an pet" -#~ msgid "dynamic" -#~ msgstr "kulbel" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "ne'etsnanchij" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Kulbel=jun, an eyixtalàb in ejtowal ka yats'in; kulbel=nijanto, jilkonal " -#~ "k'ubat yab yats'nal." +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "u baltse'" -# sensor = ats'ax -#~ msgid "Palette of WeDo blocks" -#~ msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" +# kwetajixtaláb cuenta de cada uno +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Kwet-ajixtaláb" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "kalnib k'al an pelat ots'oxtaláb: (-1 == yab k´wajat pélat, 0 == pelat ti in " -#~ "áy, 3 == pelat ti in kúx, 1==pelat ti in k'watab, 2 ==pelat ti in winab))" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Takuy an kwene'chik abal ki pejchíxna'" -#~ msgid "distance sensor output" -#~ msgstr "bel xin elàl in owèm" +# taj kúx +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "wichiy" -#~ msgid "Motor A" -#~ msgstr "Ichich pat'al A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "junkudhtaláb al an bajudh ti ólchix ayendhanél" -#~ msgid "returns the current value of Motor A" -#~ msgstr "in wichbal in alèm xin kwaàl an ichich pat'al A" +# escala = puwém; escala = bajudh(música) +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "in kó'onchal in jalbíl a xi xowé' in puwém" -#~ msgid "Motor B" -#~ msgstr "Ichich pat'al B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "tejwa'medhomtaláb 1x1" -#~ msgid "returns the current value of Motor B" -#~ msgstr "in wichbal in alèm xin kwa'al al an ichich pat'al B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "tejwa'medhomtaláb 1x2" -#~ msgid "set the value for Motor A" -#~ msgstr "in elàl in alèm an ichich pat'al A" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "eblim tin chum an t'i'e' k'al an pakdha' t'ojláb xi bijidh" -#~ msgid "set the value for Motor B" -#~ msgstr "in elal in alèm an ichich pat'al B" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "dhaya' in jalbil an ajixtaláb ti bijláb xi bijidh" -#~ msgid "touch" -#~ msgstr "dhuche'" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "t'ojnal O bolk'idh" -#~ msgid "ultrasonic" -#~ msgstr "owèm" +#: 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 "" +"in tsapik an k'amáltsáj DC ts'ot'k'odh ti otseltaláb kawidhomtaláb (ti: 0.40 " +"ma ti 1.90 V)" -#~ msgid "light" -#~ msgstr "tajàx" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "wenk'ow an ajixtaláb ti jayil ti uludh" -#, fuzzy -#~ msgid "grey" -#~ msgstr "aku'" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Dhaya'..." -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "T'ajchij an alwa'talàb ka met'a ju'taj ti ts'atadh kal an brinck." +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "ebal ti t'i'e' k'al an Pakdha' t'ojláb 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 #, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "In alèm an tsapiktalàb ne'ets ti - 127 y 127." +msgid "setxy" +msgstr "ka ts'at'ba' xy" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "" -#~ "Jun i k'ibts'ontalàb watenek: ka met'a an ts'ot'koxtalàb anij ka tsab " -#~ "ts'ot'k'oy." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "bijláb y" -#~ msgid "NXT not found" -#~ msgstr "NXT yab eladh" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "bijláb x" -#~ msgid "refresh NXT" -#~ msgstr "itmèdha' NXT" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "ka t'uchiy an walek" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "In aliyal al jun i brinck NXT xi ts'ot'k'odh." +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Dhaya' jant'ojdha'" -#~ msgid "play tone" -#~ msgstr "tsab watba' in janidh" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "ka ts'at'ba' xy" -#, fuzzy -#~ msgid "Play a tone at frequency for time." -#~ msgstr "in tsab wat'bàl in janidh al an ik' 'frec' al jun i ajumtal an k'ij." +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "ámul" -#~ msgid "port" -#~ msgstr "wi'leb" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "pulàb" -#~ msgid "power" -#~ msgstr "tsapìk" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "ka wichk'ow" -#~ msgid "rotations" -#~ msgstr "wilil" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "ka ay'chij an ots'oltaláb o an t'iplab tejwa'mejdhomtaláb ma ka taley" -#~ msgid "turn a motor" -#~ msgstr "in wilk'iyal an ichich patàl" +# imagen o logo = t'iplab +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Ka dhaya' jant'ini' i t'iplab" -#~ msgid "PORT A" -#~ msgstr "Wi'leb A" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Jalk'uy" -#~ msgid "PORT A of the brick" -#~ msgstr "WI'LEB A del brick" +#: 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 "" +"in jalbidh in kuxúdh ts'ot'kodh ti otseltaláb k'al an kawidhomtaláb (ajidh " +"ti 700 ma ti 14000 ohms)" -#~ msgid "PORT B" -#~ msgstr "Wi'leb B" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "ebal ti t'i'e' k'al an Pakdha' t'ojláb 2" -#~ msgid "PORT B of the brick" -#~ msgstr "WI'LEB B del brinck" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"ka buk'uw an otseltalab k'al an ajumtalab axi ebal (numerador) k'al an " +"ajumtalab axi alal (denominador)" -#~ msgid "PORT C" -#~ msgstr "Wi'leb C" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "PORT C of the brick" -#~ msgstr "WI'LEB C del brinck" +# imprime = dhunchunchij +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "" +"ka dhuchunchij in jalbíl ti al in alwá' an kwene' t'ojláb ti in alálim an " +"walek" -#~ msgid "start motor" -#~ msgstr "tujchij ichich pat'al" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "ka ts'i'kinchij ka t'uchiy" -#~ msgid "Run a motor forever." -#~ msgstr "Ka wilk'iy an ichich pat'al abal ets'ey." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "" +"in kwa'al in bajúdh k'al an kwene' t'ojláb i ni'imtal dhuche' álimtaláb " +"jant'ini' ASCII" -#~ msgid "brake motor" -#~ msgstr "ka k'uba' an ichich pat'al" +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# hus.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "nixa'" -#~ msgid "Stop a specified motor." -#~ msgstr "In kubàl jun i ichich pat'al xi bijidhits." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"punchidh exobintaláb eyadh k'al an ecuaciones matemáticas axi k'ibichik yan, " +"p.e. seno(x+y+z)" -#~ msgid "PORT 1" -#~ msgstr "Wi'leb jun" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "ki wichba' patal" -#~ msgid "PORT 1 of the brick" -#~ msgstr "WI'LEB jun kal an brinck" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "ne'nek" +#. TRANS: "name" option from activity.info file #, fuzzy -#~ msgid "read" -#~ msgstr "tsakni'" +msgid "TurtleBlocks" +msgstr "Ts'ejkadh pat'ál Pet" -#~ msgid "PORT 2" -#~ msgstr "Wi'leb tsab" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#~ msgid "PORT 2 of the brick" -#~ msgstr "WI'LEB tsab kal an brinck" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "aku'" -#~ msgid "PORT 3" -#~ msgstr "Wi'leb òx" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "tsakni'" -#, fuzzy -#~ msgid "PORT 3 of the brick" -#~ msgstr "Wi'leb A del brick" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "PORT 4" -#~ msgstr "Wi'leb tsè" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" +#: TurtleArtActivity.py:766 #, fuzzy -#~ msgid "PORT 4 of the brick" -#~ msgstr "Wi'leb A del brick" +msgid "Palettes" +msgstr "kwene' mukuxtaláb" -#~ msgid "HIGH" -#~ msgstr "Yejnek" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "LOW" -#~ msgstr "Tsa'at" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#~ msgid "INPUT" -#~ msgstr "Otseltaláb" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -# sensor = ats'ax -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" + +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" + +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" + +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" + +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" + +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "ka takuy in adhiktalab in ok'talal an Butiá kál jun i ajumtalab ba' an 0 ani " -#~ "an 10233 wat'badh ba' juni ódhaxtalab" +#~ "ka takuy in adhiktalab in ok'talal an Butiá kál jun i ajumtalab ba' an 0 " +#~ "ani an 10233 wat'badh ba' juni ódhaxtalab" #, fuzzy #~ msgid "turn the Butia robot to the left" diff --git a/po/hy.po b/po/hy.po index a70845c..4bc856d 100644 --- a/po/hy.po +++ b/po/hy.po @@ -2,8 +2,23 @@ # 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 "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: 2013-04-19 16:53+0200\n" +"Last-Translator: anushnur \n" +"Language-Team: LANGUAGE \n" +"Language: hy\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" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,174 +33,145 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "ԿրիայիԲլոկ" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "" -"Լոգո-ոգեշնչված կրիա, որը նկարում է գունազարդ նկարներ \"snap-together\" " -"տեսողական ծրագրային բլոկերով" +msgid "turtleart-extras (master)" +msgstr "turtleart-ավելադիրներ (վարպետ)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Կրիայի հրահանգների պահոց" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr " Turtle Blocks" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "Առաջ" +# Turtle Art` Կրիայի Արվեստը -դանդաղ,համբերությամբ սովորելու համար +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "Շարժում է կրիան առաջ" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "Կրիայի Արվեստ /TortugArte/ Մինի" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "Հետ" +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "Կրիայի շփոթմունք" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "Շարժում է կրիային հետ" - -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "Մաքրել" +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Ընտրել մի առաջադրանք - մարտահրավեր" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "Մաքրում է էկրանը և ելման դիրքի բերում կրիային" +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Amazonas Tortuga" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "Ձախ" +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Մեքսիկական պեսոյի պահոց" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "Կրիային շրջում է ժամացույցի սլաքին հակառակ (անկյունն` աստիճանով)" +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Կոլումբիական պեսոյի պահոց" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "Աջ" +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Ռուանդական ֆրանկի պահոց" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "Կրիային շրջում է ժամացույցի սլաքի ուղղությամբ (անկյունն`աստիճաններով)" +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "ԱՄՆ դոլարի պահոց" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "Աղեղ" +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Ավստրալիական դոլարի պահոց" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "Անկյուն" +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Պարագվայական գուարանիի պահոց" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "Շարավիղ" +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Պերուական Նուեվո Սոլերի պահոց" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "Շարժում է կրիային աղեղի երկայնությամբ:" +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Ուրուգվայական պեսոի պահոց" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "Սահմանել xy" +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "Կրիայի Բոտերը" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "Տեղափոխում է կրիային xcor, ycor դիրք; (0, 0)-ն էկրանի կենտրոնն է:" +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "Սահմանել ուղղությունը" +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." msgstr "" -"Սահմանում է կրիայի գլխի ուղղությունը (ելման կետում`0 դիրքում,նայում է դեպի " -"էկրանի վերին մասը):" -# xcor - x -ի դիրքացույցը -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:79 +msgid "returns the gray level" msgstr "" -"Պահում է կրիայի ընթացիկ x դիրքացույցի արժեքը (կարող է գործածվել թվային արժեք " -"պարունակող մասնիկի փոխարեն):" -# ycor- y-ի դիրքացույցը -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "Կոճակ" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:81 +msgid "returns the light level" msgstr "" -"Պահում է կրիայի ընթացիկ y դիրքացույցի արժեքը (կարող է գործածվել թվային արժեք " -"պարունակող մասնիկի փոխարեն):" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "ուղղություն" +#: taextras.py:82 +msgid "returns the temperature" +msgstr "" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" msgstr "" -"Պահում է կրիայի գլխի ուղղության առկա արժեքը (կարող է օգտագործվել թվային " -"արժեք պարունակող մասնիկի փոխարեն):" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Գրչի հրահանգների պահոց" +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"Դարձնում է 1, երբ սենսորը հայտնաբերում է մագնիսական դաշտ, իսկ հակառակ " +"դեպքում` 0" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "լցնել էկրանը" +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "գույն" +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "Երանգ" +#: taextras.py:87 +msgid "gpio" +msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "Լցնում է հետին պլանը (գույն, երանգ)" +# Լուսարձակման Դիոդ +#: taextras.py:88 +msgid "LED" +msgstr "ԼԱԴ" + +#: taextras.py:89 +msgid "button" +msgstr "Կոճակ" #: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 @@ -193,1032 +179,1556 @@ msgstr "Լցնում է հետին պլանը (գույն, երանգ)" msgid "gray" msgstr "մոխրագույն" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "Սահմանել գույնը" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "Լույս" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "Սահմանում է կրիայի գծած գծի գույնը" +#: taextras.py:92 +msgid "temperature" +msgstr "Ջերմաստիճանը" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "Սահմանել երանգը" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "հեռավորություն" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "Սահմանում է կրիայի գծած գծի գուներանգը" +#: taextras.py:94 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 "Դիմադրություն" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "Սահմանել գորշ" +#: taextras.py:95 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 "Լարում" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "Սահմանում է կրիայի գծած գծի գորշի (մոխրագույնի)մակարդակը:" +#: taextras.py:96 +msgid "Butia Robot" +msgstr "Բութիա Ռոբոտ" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:97 +msgid "refresh Butia" +msgstr "Թարմացնել Բութիան" + +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "Թարմացնել Բութիայի պահոցի վիճակն ու մասնիկները:" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "Բութիա մարտկոցի լիցքավորում" + +#: taextras.py:101 +msgid "" +"returns the battery charge in volts. If no motors present, it returns 255" msgstr "" -"Պահում է գրչի ընթացիկ գույնը (կարող է օգտագործվել թվային արժեք պարունակող " -"մասնիկների փոխարեն):" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "Պահում է գրչի ներկայիս գուներանգը:" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "Բութիա արագություն" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:104 +msgid "set the speed of the Butia motors" msgstr "" -"Պահում է ընթացիկ մոխրագույնի մակարդակը  (կարող է օգտագործվել թվային արժեք " -"պարունակող մասնիկների փոխարեն):" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "գրիչը վեր" +#: taextras.py:105 +msgid "move Butia" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Շարժելիս Կրիան չի նկարի:" +#: taextras.py:106 TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "Ձախ" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "գրիչը վար" +#: taextras.py:107 TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "Աջ" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Շարժելիս` Կրիան կնկարի:" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "Սահմանել գրչի չափսը" +#: taextras.py:109 +msgid "stop Butia" +msgstr "կանգնեցնել Բութիան" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "Սահմանում է կրիայի գծած գծի չափսը" +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "Կանգնեցնել Բութիա ռոբոտը:" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "Սկսել լցումը" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "Առաջ տանել Բութիան" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:113 +msgid "move the Butia robot forward" +msgstr "Բութիա ռոբոտը շարժել դեպի առաջ" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "Ձախ Բութիա" + +#: taextras.py:116 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "Բութիա ռոբոտը շրջել դեպի աջ:" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "աջ Բութիա" + +#: taextras.py:119 +msgid "turn the Butia robot at right" +msgstr "Բութիա ռոբոտը շրջել դեպի աջ:" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "Բութիան` հետ" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "Շարժել Բութիա ռոբոտը դեպի ետ" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" msgstr "" -"Սկսում է գծագրել գունավոր մակերեսով բազմանկյուն(օգտագործվում է \"ավարտել " -"լցումը\" մասնիկով):" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "ավարտել լցումը" +#: taextras.py:124 +msgid "hack pin mode" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "Կոճգամ" + +# Մոդուլ +#: taextras.py:126 taextras.py:457 +msgid "mode" +msgstr "Կերպ" + +#: taextras.py:127 +#, fuzzy +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Ընտրել pin գործառույթը (INPUT, OUTPUT, PWM, SERVO)" + +#: taextras.py:128 +msgid "write hack pin Butia" msgstr "" -"Ավարտում է գունավոր մակերեսով բազմանկյան գծագրումը (օգտագործվում է \"Սկսել " -"գունալցումը\" մասնիկների հետ):" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "Գրչի չափս" +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "Արժեք" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" msgstr "" -"Պահում է գրչի ներկայիս չափսը (կարող է օգտագործվել թվային արժեք պարունակող " -"մասնիկի փոխարեն):" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Գրչածայրի գույների ներկապնակը" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "կարմիր" +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "նարնջագույն" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "ԲԱՐՁՐ" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "դեղին" +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "Թվայնացված Մուտքի համար սահմանել ԲԱՐՁՐ արժեքը:" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "կանաչ" +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "ՄՈւՏՔ" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "երկնագույն" +#: taextras.py:136 +#, fuzzy +msgid "Configure hack port for digital input." +msgstr "Կարգավորել Arduino մուտքը թվային եղանակով ներմուծման համար:" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "կապույտ" +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "ՑԱԾՐ" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "բոսոր" +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "ԹվայինՄուտքի համար սահմանել ՑԱԾՐ արժեքը:" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "սպիտակ" +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "ԵԼՔ" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "սև" +#: taextras.py:140 +#, fuzzy +msgid "Configure hack port for digital output." +msgstr "Կարգավորել Arduino մուտքը թվային արդյունքի համար:" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "Սահմանել տեքստի գույնը" +#: taextras.py:141 +msgid "Butia" +msgstr "Բութիա" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "Սահմանում է կրիայի մուտքագրած տեքստի գույնը" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "Սահմանել տեքստի չափը" +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "Սահմանում է կրիայի մուտքագրած տեքստի չափսը" +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Թվային օպերատորների պահոց" +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "Տեսախցիկի վերամեկնարկման գործողությունը ձախողվեց" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "գումարել" +#: taextras.py:149 +#, fuzzy +msgid "No camera was found" +msgstr "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ոչ մի տեսախցիկ չհայտնաբերվեց" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "Ավելացնում է երկու տառաթվային ներմուծում" +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Տեսախցիկի ընդհատման գործողությունը ձախողվեց" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "հանել" +#: taextras.py:151 +msgid "Error starting camera" +msgstr "Տեսախցիկի վերամեկնարկման գործողությունը ձախողվեց" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "Վերին թվային ներմուծումից հանում է ստորին թվային ներմուծումը" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "բազմապատկել" +#: taextras.py:154 +msgid "FollowMe" +msgstr "Հետևիր ինձ" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "բազմապատկում է երկու թվային ներմուծումները" +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "բաժանել" +#: taextras.py:156 +#, fuzzy +msgid "Search for a connected camera." +msgstr "Փնտրել NXT կառավարման միացված մասնիկը:" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +# Calibration - Ելքային արժեքի հարմմարեցումը ելքի էտալոնային արժեքին: +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "Կալիբրացիա" + +#: taextras.py:159 +#, fuzzy +msgid "store a personalized calibration" msgstr "" -"բաժանում է վերին թվային արժեքը(համարիչը ) ստորին թվային արժեքի (հայտարարը " -")վրա :" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Վերադարձնել անհատականացված կալիբրացիան:\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Պահեստավորում է անհատականացված կալիբրացիան:" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "ինքնություն" +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "Վերադարձնել անհատականացված կալիբրացիան:" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "Մասնիկներն ընդլայնելու համար կիրառվող ինքնության օպերատորը:" +#: taextras.py:161 +msgid "follow" +msgstr "Հետևել" -# Մոդուլ -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "Հետևել գույնին կամ կալիբրացայիային:" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "Մոդուլային օպերատոր(մնացորդային)" +#: taextras.py:163 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 "Պայծառություն" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:164 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "քառակուսի արմատ" +#: taextras.py:165 +msgid "minimum pixels" +msgstr "Պիքսելների նվազագույնը" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "հաշվում է քառակուսի արմատը" +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "Սահմանել հաջորդող պիքսելների նվազագույն քանակը:" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "պատահական" +#: taextras.py:167 +msgid "threshold" +msgstr "Նախաշեմ" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "նվազագույն" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "Սահմանել ԿԿԿ գույնի շեմը" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "առավելագույն" +#: taextras.py:170 +msgid "camera mode" +msgstr "տեսախցիկի ռեժիմ" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +# #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +# RGB - Կարմիր, Կանաչ, Կապույտ ԿԿԿ +# YUV - Գունային մոդել +# HSV - Երանգ, Հագեցվածություն, Արժեք +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +#, fuzzy +msgid "set the color mode of the camera: RGB; YUV or HSV" msgstr "" -"Վերադարձնում է նվազագույն (վերին) եւ առավելագույն(ստորին)արժեքների միջեւ " -"պատահական որևէ թիվ" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"տեղադրել տեսախցիկի HSV գունային ռեժիմը\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"տեղադրել տեսախցիկի գունային ռեժիմը` RGB, YUV, և HSV" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "թիվ" +#: taextras.py:173 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "Մաթեմատիկական օպերատորներում օգտագործվում է որպես թվային ներմուծում" +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "մեծ է քան" +#: taextras.py:175 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "տրամաբանական greater-than/մեծ է քան /օպերատոր" +#: taextras.py:176 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "փոքր է քան" +#: taextras.py:178 +msgid "x position" +msgstr "Դիրքն x -ի վրա" + +#: taextras.py:179 +msgid "return x position" +msgstr "Վերադառնալ x դիրքին" + +#: taextras.py:180 +msgid "y position" +msgstr "Դիրքն y - ի վրա" + +#: taextras.py:181 +msgid "return y position" +msgstr "Վերադառնալ y դիրքին" + +#: taextras.py:182 +msgid "pixels" +msgstr "Պիքսել" + +#: taextras.py:183 +msgid "return the number of pixels of the biggest blob" +msgstr "Վերականգնել ամենամեծ բծի պիքսելների քանակը:" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +msgid "set the color mode of the camera to RGB" +msgstr "տեղադրել տեսախցիկի RGB գունային ռեժիմը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +msgid "set the color mode of the camera to YUV" +msgstr "տեղադրել տեսախցիկի YUV գունային ռեժիմը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "տեղադրել տեսախցիկի HSV գունային ռեժիմը" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "Կալիբրացիան. դատարկ" + +#: taextras.py:191 +msgid "error in string conversion" +msgstr "Տեքստային շղթայի փոխակերպման սխալ:" + +#. TRANS: Pattern detection is a plugin that allow detect signals +#. with the camera +#: taextras.py:197 +msgid "Pattern detection" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "տրամաբանական less-than /փոքր է քան/ օպերատոր" +#: taextras.py:198 +msgid "Seeing signal" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "հավասար" +#: taextras.py:199 +msgid "Returns True if the signal is in front of the camera" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr " տրամաբանական equal-to/հավասար է/օպերատոր" +#: taextras.py:200 +msgid "Distance to signal" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ոչ" +#: taextras.py:201 +msgid "Returns the distance of the signal to the camera in millimeters" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "տրամաբանական ՈՉ օպերատոր" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "SumBot -ի արագացում" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "Ներմուծել SumBot -ի արագությունը:" + +#: taextras.py:209 +msgid "set the default speed for the movement commands" +msgstr "Սահմանել նախնական արագությունը`տեղաշարժման հրահանգների համար" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "SumBot առաջ" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "SumBot-ը շարժել դեպի առաջ" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "SumBot` ետ" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "SumBot շարժել դեպի ետ" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "SumBot կանգ" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "Կանգնեցնել SumBot-ը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "SumBot Ձախ" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "SumBot-ը շրջել դեպի ձախ:" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "SumBot` աջ" + +#: taextras.py:223 +msgid "turn right the SumBot" +msgstr "SumBot -ը շրջել դեպի աջ:" + +#. #-#-#-#-# hy.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:226 +msgid "angle to center" +msgstr "Շրջել դեպի կենտրոն անկյան տակ" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "և" +# Dohyo կան dojo - Սումո ըմբշամարտի բեմն է +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +msgid "get the angle to the center of the dohyo" +msgstr "Անկյունը հասցնում է dohyo- ի կենտրոնին" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "Շրջել դեպի հակառակորդն ուղղող անկյան տակ:" + +#: taextras.py:232 +msgid "get the angle to the Enemy" +msgstr "Պարզել անկյան չափը մինչև հակառակորդը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "SumBot -ի X դիրքացույցը" + +#: taextras.py:235 +msgid "get the x coordinate of the SumBot" +msgstr "Պարզել SumBot ռոբոտի x դիրքացույցը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "y coor. SumBot" + +#: taextras.py:238 +msgid "get the y coordinate of the SumBot" +msgstr "Պարզել SumBot ռոբոտի y դիրքացույցը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "x coor. Հակառակորդի" + +#: taextras.py:241 +msgid "get the x coordinate of the Enemy" +msgstr "Պարզել հակառակորդի ռոբոտի x դիրքացույցը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "y coor. Հակառակորդի" + +#: taextras.py:244 +msgid "get the y coordinate of the Enemy" +msgstr "Պարզել հակառակորդի ռոբոտի y դիրքացույցը" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "SumBot պտույտ" + +#: taextras.py:247 +msgid "get the rotation of the Sumbot" +msgstr "Հասնում է Sumbot -ի պտույտին" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "տրամաբանական AND /և/օպերատոր" +# rotation պտույտ կամ շրջադարձ +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "Հակառակորդի պտույտ" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "կամ" +#: taextras.py:250 +#, fuzzy +msgid "get the rotation of the Enemy" +msgstr "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Հասնում է Հակառակորդի պտույտին\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Հասնում է Հակառակորդի պտույտին" + +#: taextras.py:251 +msgid "distance to center" +msgstr "հեռավորություն կենտրոնից" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "Պարզել հեռավորությունը «dojo»-ի կենտրոնից" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "Հեռավորությունը մինչև Հակառակորդը" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "Պարզել հեռավորությունը մինչև հակառակորդը" + +#: taextras.py:256 +msgid "update information" +msgstr "արդիականացնել տեղեկությունը" + +#: taextras.py:257 +msgid "update information from the server" +msgstr "Արդիականացնել տեղեկությունը` սերվերից" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Ֆիզիկայի մասնիկների պահոց" + +#: taextras.py:263 +msgid "start polygon" +msgstr "Սկսել բազմանկյունը" + +#: taextras.py:264 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "Սկսել նոր բազմանկյան սահմանումը` ելնելով Կրիայի առկա XY դիրքից" + +#: taextras.py:266 +msgid "add point" +msgstr "Կետ ավելացնել" + +#: taextras.py:267 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "Նոր կետ ավելացնել առկա բազմանկյանը` ելնելով Կրիայի ներկա XY դիրքից:" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "տրամաբանական OR /կամ/ օպերատոր" +#: taextras.py:269 +msgid "end polygon" +msgstr "Ավարտել բազմանկյունը:" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Հոսքի օպերատորների պահոցը" +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Սահմանել նոր բազմանկյուն" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "սպասել" +#: taextras.py:271 +msgid "end filled polygon" +msgstr "Ավարտել լցված բազմանկյունը:" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "Ծրագրի գործարկման ընթացքը կասեցնում է սահմանված որոշակի վայրկյաններով:" +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "Պարզ բազմանկյուն չէ" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "Անդադար" +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Սահմանել նոր, լցոնված բազմանկյուն:" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "կրկնել անընդմեջ" +#: taextras.py:274 +msgid "triangle" +msgstr "Եռանկյուն" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "կրկնել" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "Հիմք" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "Կրկնել սահմանված անգամներ" +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "բարձրություն" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "եթե" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Եռանկյունաձև օբյեկտ ավելացնել նախագծին:" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "ապա" +#: taextras.py:279 +msgid "circle" +msgstr "Շրջանագիծ" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "եթե ..." +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Շրջանաձև օբյեկտ ավելացնել նախագծին:" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "Եթե-ապա օպերատորը, որը բուլյան օպերատորներ է օգտագործում Թվապնակից" +#: taextras.py:281 +msgid "rectangle" +msgstr "Ուղղանկյուն" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "այլապես" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "լայնք" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "եթե ուրեմն մեկ այլ" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Ուղղանկյունաձև օբյեկտ ավելացնել նախագծին" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "եթե-ապա-կամ օպերատորը, որը բուլյան օպերատորներ է օգտագործում Թվապնակից" +#: taextras.py:285 +msgid "reset" +msgstr "Վերակարգավորել" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "Հորիզոնական տարածություն" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Վերակարգավորել Նախագիծը, վերացնել օբյեկտների ցանկը:" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "Ագուցված մասնիկների շարանը հրվում է դեպի աջ" +#: taextras.py:287 +msgid "motor" +msgstr "Շարժիչ" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "Ուղղահայաց տարածություն" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "Շարժիչի պտտվող մասը" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "Ագուցված մասնիկների շարանը քաշում է դեպի վար:" +#: taextras.py:290 +msgid "speed" +msgstr "Արագություն" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "Կանգնեցնել գործողությունը" +#: taextras.py:291 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Շարժիչի պտույտները և արագության աստիճանները 0-ից /անջատված/ մինչև դրական " +"թվեր; շարժիչը տեղավորվում է ամենավերջում ստեղծված օբյեկտի մոտ:" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "Կանգնեցնում է ընթացիկ գործողությունը" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Կոճգամով ամրացրու օբյեկտը, որպեսզի չընկնի:" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Փոփոխականներով մասնիկների պահոց" +#: taextras.py:295 +msgid "joint" +msgstr "Միացյալ" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "Մեկնարկ" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "Գործողությունը կապում է գործիքաշարի գործարկման կոճակներին" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "Տեքստ" +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Միացնել 2 օբյեկտները (ամենավերջում ստեղծված օբյեկտն ու x, y կետի վրա գտնվող " +"օբյեկտը):" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "Տողի արժեքը" +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "Պահել ֆիզիկա գործունեությունը" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "Գործողություն" +#: taextras.py:301 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Պահել Նախագիծը Մատյանում որպես Ֆիզիկայի գործունեություն:" -# կույտի-ագուցված մասնիկների շարան -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "Անվանակոչվող գործողությունների կույտի ամենվերին մասը" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "Ատամնանիվ" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "Կանչում է անվանակոչված գործողությունների ագուցված մասնիկների շարանը:" +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Նախագծին ատամնանիվ ավելացնել" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "Պահեստավորել տուփ 1-ի մեջ" +#: taextras.py:305 +msgid "density" +msgstr "Խտություն" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "Թվային արժեքը պահում է Փոփոխական 1-ում" +#: taextras.py:306 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "Սահմանել օբյեկտների խտությունը (կարող է լինել միայն դրական թիվ):" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "Պահել տուփ 2-ի մեջ" +#: taextras.py:308 +msgid "friction" +msgstr "Շփում" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "Թվային արժեքը պահում է Փոփոխական 2-ում" +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Սահմանել օբյեկտների շփման մակարդակը (արժեքը` 0-ից մինչև 1, որտեղ 0 բացառում " +"է շփումը, իսկ 1-ն` ուժեղ շփում է):" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "տուփ 1" +# Առաձգական մակերեսի շնորհիվ +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "Ետցատկ" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Փոփոխական 1  ( թվային արժեքը )" +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Սահմանել օբյեկտի ետցանկի ուժգնությունը (արժեքը` 0-ից մինչև 1, որտեղ 0 " +"բացառում է ետցատկը, իսկ 1-ը` շատ արագ ետցատկ է):" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "տուփ 2" +# Դինամիկ +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "Շարժուն" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Փոփոխական 2  ( թվային արժեքը )" +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Եթե շարժունակությունը = 1, օբյեկտը կարող է շարժվել, եթե այն = 0` ապա անշարժ " +"մնում է իր դիրքում:" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "պահել ... մեջ" +# WeDo - LEGO ընկերության ռոբոտային արտադրանք է: +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "WeDo մասնիկների պահոց" + +#: taextras.py:324 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "Տուփ" +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "Արժեք" +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "Իմ տուփը" +#: taextras.py:327 +msgid "tilt" +msgstr "թեքություն" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "Թվային արժեքը պահում է անվանակոչված փոփոխականում" +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"Թեքման սենսորի արդյունքը. (-1 == թեքում չկա, 0 == թեքում դեպի առաջ, 3 == " +"թեքում դեպի ետ, 1 == թեքում դեպի ձախ, 2 == թեքում դեպի աջ)" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "Անվանված փոփոխական (թվային արժեքը)" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "Հեռավորության սենսորի արդյունքը:" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "Գործողություն 1" +#: taextras.py:333 +msgid "Motor A" +msgstr "Շարժիչ A" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "1 գործողության շարանի վերին մասը" +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "Վերադարձնում է A շարժիչի ընթացիկ արժեքը:" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "Գործողություն 2" +#: taextras.py:335 +msgid "Motor B" +msgstr "Շարժիչ B" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "2 գործողության մասնիկաշարանի վերին մասը" +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "Վերադարձնում է B շարժիչի ընթացիկ արժեքը:" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "Կանչում է Գործողություն 1 մասնիկների շարանը" +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "Սահմանել A շարժիչի արժեքը:" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "Կանչում է Գործողություն 2 շարանը" +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "Սահմանել B շարժիչի արժեքը:" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "Խոտան" +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "Դատարկել աղբամանը" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "Անվերադարձ ջնջում է աղբամանի պարունակությունը" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "Վերականգնել բոլորը" +# LEGO NXT - LEGO ընկերության ռոբոտային արտադրանք է: +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Շարժիչի LEGO NXT մասնիկների պահոց:" + +#: taextras.py:350 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "LEGO NXT -ի սենսորների մասնիկների պահոց:" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "Հպման սենսոր" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "Վերականգնել աղբարկղից բոլոր մասնիկները" +# Հեռավորության չափումը գերձայնային ալիքներով +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "Գերձայնային" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "Ջնջել բոլորը" +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "գույն" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "Բոլոր մասնիկները տեղափոխել աղբարկղ" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "Հնչյուն" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Կիսել ընտրված մասնիկներն ընկերոջ հետ:" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +#, fuzzy +msgid "Please check the connection with the brick" +msgstr "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ստուգել կապը NXT հսկման մասնիկի հետ:" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Վերնագիր" +#: taextras.py:361 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Կանգնեցնել Կրիային" +#: taextras.py:362 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Ցուցադրել մասնիկները" +#: taextras.py:363 +#, fuzzy +msgid "The value of power must be between -127 to 127" +msgstr "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Հզորության արժեքը պետք է լինի -127 և 127 -ի միջև:" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Թաքցնել մասնիկները" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "չի արտածում ... վրա" +#: taextras.py:365 +#, fuzzy +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Վրիպում է տեղի ունեցել. խնդրեմ ստուգե՛ք բոլոր միացումներն ու փորձեք նորից " +"միացնել:" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Ես չգիտեմ, թե ինչպես" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "Չի հավանում" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT չի գտնվել" -# Որպես մուտք -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "Որպես ներածում" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "Ցույց է տալիս մյուս պահոցը" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "Թարմացնել NXT-ը" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "Փոխում է մասնիկների պահոցի դիրքը" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Փնտրել NXT կառավարման միացված մասնիկը:" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Բեռնում..." +#: taextras.py:371 +msgid "NXT" +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Պահպանել..." +#: taextras.py:372 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "Քլիք` բացելու համար" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "" -# Ուղղվածություն -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "Դիրք" +#: taextras.py:374 +msgid "brick name" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "Հաջորդ" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "Տեղափոխել" +#: taextras.py:376 +msgid "play tone" +msgstr "Վերարտադրել հնչյունը" -#: TurtleArt/tawindow.py:1256 +#: taextras.py:377 +msgid "frequency" +msgstr "Հաճախականություն" + +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "ժամանակ" + +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Նվագարկել հաճախականությամբ հնչյունը որոշակի ժամանակի ընթացքում:" + +#. TRANS: turn is the action +#: taextras.py:381 msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +"turn motor\n" +"\n" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Ընտրել համատեղ օգտագործվելիք մասնիկները:" +#: taextras.py:382 +msgid "port" +msgstr "Մուտք" -# Turtle Art` Կրիայի Արվեստը -դանդաղ,համբերությամբ սովորելու համար -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" +#: taextras.py:383 +msgid "power" +msgstr "Հզորություն" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "Պատկեր" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "Պտույտներ" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Պահել որպես Տարբերանշան" +#: taextras.py:386 +msgid "turn a motor" +msgstr "Պտտել շարժիչը" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Պահել որպես պատկեր" +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "ճեպապատկեր" +#: taextras.py:388 +msgid "steering" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Պահպանել ճեպապատկերը" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "Համաժամանակեցնել Մուտք B-ին և Մուտք C -ին միացված շարժիչները:" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Կասեցնել տատանվող օգնությունը" +#: taextras.py:390 +msgid "PORT A" +msgstr "Մուտք A" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Միացնել տատանվող օգնությունը" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "Մուտք A-ի մասնիկը" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Ցուցադրել պահոցը" +#: taextras.py:392 +msgid "PORT B" +msgstr "Մուտք B" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Թաքցնել պահոցը" +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "Մուտք B-ի մասնիկը" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Փոխել դիրքացույցները դեպի նվազեցում" +#: taextras.py:394 +msgid "PORT C" +msgstr "Մուտք C" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Փոխել դիրքացույցները դեպի մեծացում" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "Մուտք C-ի մասնիկը" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Խմբագրել" +#: taextras.py:396 +msgid "" +"synchronize\n" +"motors" +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Տեսքը" +#: taextras.py:397 +msgid "start motor" +msgstr "Միացնե՛լ շարժիչը" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Նախագիծ" +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "Աշխատեցնե՛լ շարժիչը մշտապես:" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Պահել / Բեռնել" +#: taextras.py:399 +msgid "brake motor" +msgstr "Արգելակել շարժիչը" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Պատճենել" +#: taextras.py:400 +msgid "Stop a specified motor." +msgstr "Արգելակել որոշված շարժիչը" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Փակցնել" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "Վերակարգավորել շարժիչը:" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Վերականգնել աղբարկղից բոլոր մասնիկները" +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "Վերակարգավորել շարժիչի հաշվիչը:" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Էկրանի չափով" +#: taextras.py:404 +msgid "motor position" +msgstr "Շարժիչի դիրքը" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Դեկարտյան դիրքացուցներ" +#: taextras.py:405 +msgid "Get the motor position." +msgstr "Պարզել շարժիչի դիրքը" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Բևեռային դիրքացույցներ" +#: taextras.py:406 +msgid "PORT 1" +msgstr "Մուտք 1" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Մետրային դիրքացույցներ" +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "Մասնիկի Մուտք 1 -ը:" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Մեծացնել մասնիկները" +#: taextras.py:408 +msgid "read" +msgstr "Կարդալ" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Փոքրացնել մասնիկները" +#: taextras.py:409 +msgid "sensor" +msgstr "Սենսոր" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Բեռնման օրինակ" +#: taextras.py:410 +msgid "Read sensor output." +msgstr "Կարդալ սենսորի ելքի տվյալները" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Մաքրել" +#: taextras.py:411 +msgid "PORT 2" +msgstr "Մուտք 2" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Գործարկել" +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "Մասնիկի Մուտք 2 -ը:" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Քայլ" +#: taextras.py:413 +msgid "light sensor" +msgstr "Լույսի սենսոր" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Օգնություն" +#: taextras.py:414 +msgid "gray sensor" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Կանգ" +#: taextras.py:415 +msgid "PORT 3" +msgstr "Մուտք 3" + +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "Մասնիկի Մուտք 3 -ը:" + +#: taextras.py:417 +msgid "touch sensor" +msgstr "Հպման սենսոր" + +#: taextras.py:418 +msgid "distance sensor" +msgstr "Հեռավորության սենսոր" + +#: taextras.py:419 +msgid "PORT 4" +msgstr "Մուտք 4" + +#: taextras.py:420 +msgid "PORT 4 of the brick" +msgstr "Մասնիկի Մուտք 4 -ը:" + +#: taextras.py:421 +msgid "sound sensor" +msgstr "Ձայնային սենսոր" + +#: taextras.py:422 +msgid "color sensor" +msgstr "Գույնի սենսոր" + +#. #-#-#-#-# hy.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:425 +msgid "set light" +msgstr "Կարգավորել լույսը" + +#: taextras.py:426 +msgid "Set color sensor light." +msgstr "Միացնել գունային սենսորի լույսը:" + +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "մարտկոցի մակարդակը" + +#: taextras.py:429 +msgid "Get the battery level of the brick in millivolts" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Բեռնել նախագիծը" +# PWM - pulse width modulation, ԲԼՄ -բաբախյունի լայնքի մոդուլացիա +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "PWM" -# Load plugin -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Բեռնել օժանդակ հավելումը" +# SERVO - փոքր չափի ռոբոտների հեռակա ռադիոկառավարման սարք: +# +#: taextras.py:440 +msgid "SERVO" +msgstr "SERVO" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Ներբեռնել «Python» ծրագրի մասնիկները" +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ՍԽԱԼ. Ստուգել Arduino -ն և մուտքի համարը:" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "պահոց" +#: taextras.py:442 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "ՍԽԱԼ. Արժեքը պետք է լինի 0-ից մինչև 255:" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Ընդհանուր օգտագործման մասնիկները կասեցված են:" +#: taextras.py:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ՍԽԱԼ. Արժեքը պետք է լինի կամ ԲԱՐՁՐ, կամ` ՑԱԾՐ:" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: taextras.py:444 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "ՍԽԱԼ. պետք է լինի, ՄՈւՏՔ, ԵԼՔ, PWM կամ SERVO կերպով:" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: taextras.py:445 +msgid "refresh Arduino" +msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: taextras.py:447 +msgid "Arduino" +msgstr "" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Հավելման բեռնումը չկայացավ" +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "" -# Հավելում - plugin -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:450 +msgid "number of Arduino boards" msgstr "" -"Խնդրվումէ վերամեկնարկել Turtle Art /Կրիայի/ ծրագիրը` հավելումն օգտագործելու " -"համար:" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "%s հավելումն արդեն ներդրված է:" +#: taextras.py:451 +msgid "Arduino name" +msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Ցանկանո՞ւմ եք վերբեռնել %s:" +#: taextras.py:452 +msgid "Get the name of an Arduino." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Իմ Կրիա Արվեստի սեսիան" +#. #-#-#-#-# hy.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:455 +msgid "pin mode" +msgstr "pin ռեժիմ" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Թույլ տալ համագործակցությունը" +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Ընտրել pin գործառույթը (INPUT, OUTPUT, PWM, SERVO)" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Գործունեություններ" +#: taextras.py:459 +msgid "analog write" +msgstr "Գրել անալոգային տեսքով" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Ընկերներ" +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "Գրել անալոգային արժեքը որոշակի Մուտքի վրա:" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Համատեղ օգտագործել" +#: taextras.py:462 +msgid "analog read" +msgstr "Կարդալ անալոգային արդյունքը" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Կոնֆիգուրացիա" +# վոլտ=((կարդալ)*5)/1024) +#: taextras.py:463 +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 "" +"Կարդալ արժեքն անալոգային Մուտքից: Արժեքը կարող է լինել 0 -ի և 1023-ի միջև. " +"USB -ի համար` volt=((read)*5)/1024) մոտավորապես:" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Հարևաններ" +#: taextras.py:465 +msgid "digital write" +msgstr "Թվայնացված գրություն" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Մականուն" +#: taextras.py:466 +msgid "Write digital value to specified port." +msgstr "Գրել թվայնացված արժեքը որոշակի Մուտքի համար:" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Հաշվի տիրոջ Ինքնությունը" +#: taextras.py:467 +msgid "digital read" +msgstr "Թվայնացված ընթերցում" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Սերվեր" +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "Կարդալ արժեքը թվայնացված մուտքից" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Մուտք" +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "Կարգավորել Arduino մուտքը թվային եղանակով ներմուծման համար:" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Գաղտնաբառ" +#: taextras.py:471 +#, fuzzy +msgid "Configure Arduino port to drive a servo." +msgstr "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Կարգավորել Arduino մուտքը servo -ի համար:\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Կարգավորել Arduino մուտքը servo -ի համար:" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Գրանցում" +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "Կարգավորել Arduino մուտքը թվային արդյունքի համար:" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Գույներ" +#: taextras.py:474 +#, fuzzy +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Կարգավորել Arduino մուտքը համար PWM համար (բաբախյուն- լայնության " +"մոդուլյացիան)\n" +"#-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-#\n" +"Կարգավորել Arduino մուտքը համար PWM համար (բաբախյուն- լայնության " +"մոդուլյացիան)" -#: 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 "Վերբեռնել" +# WeDo - LEGO ընկերության ռոբոտային արտադրանք է: +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "WeDo մասնիկների պահոց" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Բեռնել համացանցում" +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "" -#: gnome_plugins/uploader_plugin.py:90 +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:485 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:487 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:488 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "" + +#: taextras.py:491 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:493 +msgid "IN1 level" +msgstr "" + +#: taextras.py:494 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" msgstr "" -" Դուք պետք է հաշիվ ունենաք http://turtleartsite.sugarlabs.org կայքում, " -"որպեսզի բեռնեք Ձեր նախագիծը:" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Օգտվողի անուն." +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Գաղտնաբառ." +#: taextras.py:498 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Վերնագիր." +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Նկարագրություն." +#: taextras.py:502 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Ուղարկել Համացանցին" +#: taextras.py:504 +msgid "capture" +msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Չեղարկել" +#: taextras.py:505 +msgid "input" +msgstr "" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Մուտքը չհաջողվեց" +#: taextras.py:506 +msgid "samples" +msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Վերբեռնումը ձախողվեց" +#: taextras.py:507 +msgid "interval" +msgstr "" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Սենսորային մասնիկների պահոց" +#. TRANS: MS is microseconds +#: taextras.py:509 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "Արագացում" +#. TRANS: Analog input 1 voltage level +#: taextras.py:512 +msgid "A1" +msgstr "" -# Կույտ կարող է նշանակել ագուցված մասնիկների շարք -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "Արագությունը x, y, z առանցքների վրա`դնել շարանի մեջ" +#: taextras.py:513 +msgid "read analog input 1 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "Հնչյուն" +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "Միկրոֆոնի մուտքային ազդանշան" +#: taextras.py:516 +msgid "read analog input 2 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "Ձայնի ուժգնություն" +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "Միկրոֆոն ներմուծման ուժգնություն" +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "Հաճախականություն" +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "Միկրոֆոնի ներմուծման տոնը" +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "" -#: 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 "Դիմադրություն" +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "" -#: 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 "Միկրոֆոնի մուտքային դիմադրողականություն" +#: taextras.py:525 +msgid "read analog sensor input voltage" +msgstr "" -#: 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 "Լարում" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "" -#: 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 "Միկրոֆոնի մուտքի լարումը" +#: taextras.py:528 +msgid "read square wave 1 voltage" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Լրատվամիջոցի առարկաների պահոց" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:530 +msgid "SQR2" +msgstr "" -#: 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 "Պայծառություն" +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "Տեսախցիկի միջոցով հայտնաբերված լույսի մակարդակը" +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "" + +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "Շարունակել տեսա կամ ձյնագրության վերարտադրումը" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Վերնագիր" # RGB-ԿԿԿ. Կարմիր,Կանաչ,Կապույտ #: plugins/camera_sensor/camera_sensor.py:95 @@ -1226,6 +1736,18 @@ msgstr "Տեսախցիկի միջոցով հայտնաբերված լույսի msgid "Average RGB color from camera is pushed to the stack" msgstr "RGB-ի միջին գույնը ուղարկվում է դեպի կույտ" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "դեղին" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "Ցուցադրում է բևեռային դիրքացույցները" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "Դատարկում է FILO(առաջինը ներս-վերջինը դուրս կույտը)" + #: plugins/camera_sensor/camera_sensor.py:106 #: plugins/camera_sensor/camera_sensor.py:113 #: plugins/camera_sensor/camera_sensor.py:121 @@ -1234,87 +1756,108 @@ msgstr "RGB-ի միջին գույնը ուղարկվում է դեպի կույ msgid "camera output" msgstr "Տեսախցիկի տված պատկեր" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "Լույսի սենսորով հայտնաբերված լույսի մակարդակը" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID (ռադիո հաճախականությունների ճանաչում)" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "Ընթերցել արժեքը RFID(ռադիո հաճախականությունների ճանաչման)սարքից" +# Կույտ կարող է նշանակել ագուցված մասնիկների շարք +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "Արագությունը x, y, z առանցքների վրա`դնել շարանի մեջ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "մինչ" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "Եթե-ապա օպերատորը, որը բուլյան օպերատորներ է օգտագործում Թվապնակից" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"կատարիր-քանի դեռ-Ճիշտ օպերատորը, որն օգտագործում է Թվապնակի բուլյան " -"օպերատորներ" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "Ագուցված մասնիկների շարանը հրվում է դեպի աջ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "մինչ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Մատյանի լրատվամիջոցի առարկան" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"Կատարիր-մինչեւ-Ճիշտ օպերատորը, որն օգտագործում է Թվապնակի բուլյան " -"օպերատորներ" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "տուփ 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "գագաթ" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "տուփ 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "Փլուզվող շարանի վերին մասը" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Քայլ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "Մատյան" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "բազմապատկում է երկու թվային ներմուծումները" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Մատյանի լրատվամիջոցի առարկան" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Ցուցադրել/թաքցնել մասնիկները" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "աուդիո" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Թաքցնել պահոցը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Մատյանի Աուդիո օբյեկտ" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Ընկերներ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "վիդեո" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Իմ Կրիա Արվեստի սեսիան" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "Sugar-ի Մատյանի տեսգրության առարկան" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "Նկարագրություն" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "երկնագույն" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar Մատյանի նկարագրության դաշտը" +# xcor -x դիրքացույցը +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "էկրանի աջ մասի xcor-ը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "Ցուցադրել" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Լրացուցիչ ընտրությունների պահոցը" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Բեռնման օրինակ" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "Բոլոր մասնիկները տեղափոխել աղբարկղ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "Ցուցակ" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Կազմաձևի գրացուցակը գրելի չէ. %s" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "Շարունակել վերարտադրումը" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "ուղղություն" + +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Ընդհանուր օգտագործման մասնիկները կասեցված են:" + +# SVG -Scalable Vector Graphics +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "Կրիայի գծագիրը Sugar-ի Մատյանում պահում է որպես SVG ֆայլ:" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 @@ -1322,163 +1865,212 @@ msgstr "Ցուցադրել" msgid "draws text or show media from the Journal" msgstr "Մատյանից բերում է տեքստ կամ` ցուցադրության միջոց" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "Ցուցադրել հավասարեցված" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID (ռադիո հաճախականությունների ճանաչում)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "Սահմանել սանդղակը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "վիդեո" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "Սահմանում է ԶԼՄ միջոցների սանդղակը" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "կապույտ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "պահպանել պատկերը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "Ցուցադրում է դեկարտյան դիրքացույցները" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "պատկերի անվանումը" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Առանց գործողության այլընտրանքի" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "Նկարը պահում է Sugar-ի Մատյանում" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "Ագուցված մասնիկների շարանը քաշում է դեպի վար:" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "Մոդուլային օպերատոր(մնացորդային)" + +# ստորին մասը +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "Ստորին y" # SVG-Scalable Vector Graphics #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 msgid "save SVG" msgstr "պահպանել SVG" -# SVG -Scalable Vector Graphics -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "Կրիայի գծագիրը Sugar-ի Մատյանում պահում է որպես SVG ֆայլ:" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "սանդղակ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "Գործարկում է Մատյանի tamyblock.py մոդուլում առկա կոդը:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "պահում է ներկայիս սանդղակի արժեքը" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "գրիչը վար" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" +#: TurtleArt/tabasics.py:743 +msgid "wait" msgstr "սպասել" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "Սպասեք մինչև ընթացիկ տեսա կամ ձայնագրությունն ավարտվի:" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "Տուփ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "Տեսա/ձայնագրամիջոցը կանգնեցնել:" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Վերբեռնումը ձախողվեց" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "կանգնեցնել տեսագրությունը կամ ձայնագրությունը:" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "Տեղափոխել" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "Դադար տալ" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "Կանչում է անվանակոչված գործողությունների ագուցված մասնիկների շարանը:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "Դադար տալ տեսա կամ ձայնա - գրությանը" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "Գործողություն" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "Շարունակել վերարտադրումը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"Կատարիր-մինչեւ-Ճիշտ օպերատորը, որն օգտագործում է Թվապնակի բուլյան օպերատորներ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "Շարունակել տեսա կամ ձյնագրության վերարտադրումը" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "Կիրառումը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "Խոսել" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Փոփոխական 2  ( թվային արժեքը )" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "Ողջույն" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "բաժանել" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "Արտաբերել տեքստ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "պատկերի անվանումը" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "Սինուսոիդ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "մինչ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "կտավի լայնությունը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "Տևողություն" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "Դատարկե՞լ մասնիկների շարանը:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"Վերարտադրում է Սինուսոիդն ըստ հաճախականության, տատանումների մեծության ու " -"տևողության /վրկ/:" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "Անվանված փոփոխական (թվային արժեքը)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "Կոճակը սեղմել" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "Հաջորդ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "Վերադարձնում է 1, եթե կոճակը սեղմված է:" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "եթե ..." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -msgid "returns True if mouse button is pressed" -msgstr "Վերադարձնում է 1, եթե կոճակը սեղմված է:" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "Սահմանել գրչի չափսը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "Մկնիկի սլաքի X-ը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "Ներկայացման նմուշ. ընտրել Մատյանի օբյեկտ (առանց նկարագրության)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "Վերականգնում է մկնիկի սլաքի x դիրքացույցը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "մինչ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "Մկնիկի սլաքի y դիրքացույցը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "Տեսա/ձայնագրամիջոցը կանգնեցնել:" + +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Միացնել տատանվող օգնությունը" + +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "Անվերադարձ ջնջում է աղբամանի պարունակությունը" + +# լրիվ շրջադարձ +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "Շրջադարձ U տառի ձևով" + +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "1 գործողության շարանի վերին մասը" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"Ծրագրավորվող բլոկ. օգտագործվում է բարդ մեկ փոփոխականով մաթեմատիկական " +"հավասարումներ, օրինակ՝ sin(x),ավելացնելու համար:" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Հոսքի օպերատորների պահոցը" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "Փլուզված շարանի վերին մասը" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "եթե-ապա-կամ օպերատորը, որը բուլյան օպերատորներ է օգտագործում Թվապնակից" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 msgid "returns mouse y coordinate" msgstr "վերրականգնում է մկնիկի սլաքի y դիրքացույցը:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "հարցում ստեղնաշարի վերաբերյալ" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "Պահում է գրչի ներկայիս գուներանգը:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"Հարցում՝ ստեղնաշարով ներմուծման համար (արդյունքները պահվում են ստեղնաշարի " -"բլոկում)" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "Սինուսոիդ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "ստեղնաշար" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Մուտքը չհաջողվեց" -# ASCII - American Standard Code for Information Interchange /Տեղեկության Փոխանակման Ամերիկյան Ստանդարտ Կոդ -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "Պահում է ստեղնաշարի բլոկի հարցման արդյունքները որպես ASCII." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "Ձախակողմյան x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "կարդալ փիքսելը" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "Սահմանել ուղղությունը" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 msgid "RGB color under the turtle is pushed to the stack" @@ -1486,1280 +2078,1569 @@ msgstr "" "RGB (կարմիր, կանաչ,կապույտ)գույնը կրիայի տակ տեղափոխված է դեպի մասնիկների " "կույտը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "կրիան տեսնում է" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "Մաքրում է կտավը՝ թաքցնելով մասնիկները" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "վերադարձնում է այն գույնը, որ կրիան ներկայիս \"տեսնում է\"" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "ժամանակ" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "ծրագրի սկզբից մինչև հիմա անցած ժամանակ (վայկյաններով)" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Լրացուցիչ ընտրությունների պահոցը" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "հրում" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -# FILO:First-in; Last-out -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "" -"Ավելացնում է արժեքը FILO կույտին (առաջինը` ներս, վերջինը` դուրս սկզբունքով)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "«Պիթոնի» chr օպերատոր" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "ցուցադրել կույտը" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "Հորիզոնական տարածություն" -# FILO:First-in, Last-out -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "Ցույց է տալիս արժեքները FILO-ում (առաջինը ներս, վերջինը դուրս կույտ)" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Մետրային դիրքացույցներ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "Դատարկել կույտը" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "Տողի արժեքը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "Դատարկում է FILO(առաջինը ներս-վերջինը դուրս կույտը)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "Նկարագրություն" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "Հանել" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Ես չգիտեմ, թե ինչպես" -# FILO: first-in;last-out -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "Ցրում է FILO-ի (առաջինը ներս,վերջինը դուրս կույտ) արժեքը:" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "Սահմանել տեքստի չափը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "Դատարկե՞լ մասնիկների շարանը:" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Օգտվողի անուն." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "Վերականգնում է իրականը, եթե մասնիկների շարանը /կույտը/ դատարկ է:" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"Սկսում է գծագրել գունավոր մակերեսով բազմանկյուն(օգտագործվում է \"ավարտել " +"լցումը\" մասնիկով):" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "Մեկնաբանություն" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "Ներկայացման նմուշ. ընտրել Մատյանի չորս օբյեկտ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "Մեկնաբանություն է տեղադրում է Ձեր կոդում:" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Տեսքը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "տպել" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "Սահմանում է կրիայի գծած գծի գորշի (մոխրագույնի)մակարդակը:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "Արժեքը տպում է էկրանի ստորին մասում գտնվող կարգավիճակի բլոկում:" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Գաղտնաբառ." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "«Պիթոնի» chr օպերատոր" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "կրիան տեսնում է" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "«Պիթոնի» int օպերատոր" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "Կանգնեցնել գործողությունը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "\"Պիթոն\"" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "կանաչ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"Ծրագրավորվող բլոկ. օգտագործվում է բարդ մեկ փոփոխականով մաթեմատիկական " -"հավասարումներ, օրինակ՝ sin(x),ավելացնելու համար:" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "Երանգ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"Ծրագրավորվող բլոկ. օգտագործվում է բարդ բազմակի փոփոխականներով մաթեմատիկական " -"հավասարումներ, օրինակ՝ sqrt(x*x+y*y),ավելացնելու համար" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "Լցնում է հետին պլանը (գույն, երանգ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"Ծրագրավորվող բլոկ. օգտագործվում է բարդ բազմակի փոփոխականներով մաթեմատիկական " -"հավասարումներ, օրինակ՝ sin(x+y+z),ավելացնելու համար" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "պահպանել պատկերը" -#: 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:653 -msgid "Python block" -msgstr "Python -ի ծրագրավորման մասնիկ" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "Հաճախականություն" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "Գործարկում է Մատյանի tamyblock.py մոդուլում առկա կոդը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "Վերադարձնում է 1, եթե կոճակը սեղմված է:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Դեկարտյան" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Փոխել դիրքացույցները դեպի մեծացում" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "Ցուցադրում է դեկարտյան դիրքացույցները" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "գրիչը վեր" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "բևեռային" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "նարնջագույն" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "Ցուցադրում է բևեռային դիրքացույցները" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "Ծրագրի գործարկման ընթացքը կասեցնում է սահմանված որոշակի վայրկյաններով:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "Կրիա" +# FILO:First-in; Last-out +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "" +"Ավելացնում է արժեքը FILO կույտին (առաջինը` ներս, վերջինը` դուրս սկզբունքով)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "Ընտրել, թե որ կրիային է տրվում հրահանգը" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "Ջնջել բոլորը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "կրիայի զրահը" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "ապա" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "կրիային հատուկ 'զրահ' հագցնել" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Գրանցում" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "Փլուզված շարանի վերին մասը" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ոչ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "բեռնել" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "եթե ուրեմն մեկ այլ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -msgid "loads a block" -msgstr "բեռնում է մասնիկը" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "Կանգնեցնում է ընթացիկ գործողությունը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "Սահմանել xy" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "Կրիային շրջում է ժամացույցի սլաքի ուղղությամբ (անկյունն`աստիճաններով)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "պահոց" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"Պահում է ընթացիկ մոխրագույնի մակարդակը  (կարող է օգտագործվել թվային արժեք " +"պարունակող մասնիկների փոխարեն):" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "ընտրում է պահոցը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "էկրանի ձախ մասի x դիրքացույցը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Ներկայացման նմուշների պահոց" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Վերականգնել մասնիկների չափսը" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "Կրիա" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "Ցույց է տալիս մյուս պահոցը" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 msgid "hide blocks" msgstr "Թաքցնել մասնիկները" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "Մաքրում է կտավը՝ թաքցնելով մասնիկները" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "Տեսախցիկի միջոցով հայտնաբերված լույսի մակարդակը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "Ցուցադրել մասնիկները" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "«Պիթոնի» int օպերատոր" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "Վերականգնում է թաքնված մասնիկները" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "տրամաբանական less-than /փոքր է քան/ օպերատոր" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "Վերականգնել աղբարկղից բոլոր մասնիկները" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Պահել" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "Պահեստավորել տուփ 1-ի մեջ" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "Պահել տուփ 2-ի մեջ" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 msgid "hides the Sugar toolbars" msgstr "Թաքցնում է Sugar գործիքաշարերը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "Ցուցակ" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"Պահում է կրիայի ընթացիկ x դիրքացույցի արժեքը (կարող է գործածվել թվային արժեք " +"պարունակող մասնիկի փոխարեն):" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "Ներկայացում պարբերանշված ցուցակով" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "տպել" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "Ներկայացման նմուշ.Կետերի ցանկ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "Վերականգնում է մկնիկի սլաքի x դիրքացույցը:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "Ներկայացման նմուշ. ընտրել Մատյանի օբյեկտ (առանց նկարագրության)" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "կարմիր" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "Ներկայացման նմուշ. ընտրել Մատյանի օբյեկտ (նկարագրությամբ)" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Պահել որպես Տարբերանշան" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "Ներկայացման նմուշ. ընտրել Մատյանի չորս օբյեկտ" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "Սահմանում է կրիայի գծած գծի գույնը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "ներկայացման նմուշ. ընտրել Մատյանի երկու օբյեկտ" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "Սահմանել տեքստի գույնը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "էկրանի ձախ մասի x դիրքացույցը" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "Ձայնի ուժգնություն" -# ստորին մասը -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "Ստորին մաս" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Թույլ տալ համագործակցությունը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "էկրանի ստորին մասի y դիրքացույցը" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Սենսորային մասնիկների պահոց" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "լայնք" +# Load plugin +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Բեռնել օժանդակ հավելումը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "կտավի լայնությունը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +msgid "returns True if mouse button is pressed" +msgstr "Վերադարձնում է 1, եթե կոճակը սեղմված է:" -# xcor -x դիրքացույցը -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "էկրանի աջ մասի xcor-ը" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "թիվ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "էկրանի վերին մասի ycor-ը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "հարցում ստեղնաշարի վերաբերյալ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "բարձրություն" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "գագաթ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "կտավի բարձրությունը" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Ուղարկել Համացանցին" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "Վերնագրի x դիրքացույցը" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Դեկարտյան դիրքացուցներ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "Վերնագրի y դիրքացույցը" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Մականուն" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "Ձախակողմյան x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "Սահմանել սանդղակը" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "Վերին y" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Կիսել ընտրված մասնիկներն ընկերոջ հետ:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "Աջակողմյան x" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "սպիտակ" -# ստորին մասը -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "Ստորին y" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "Գործողությունը կապում է գործիքաշարի գործարկման կոճակներին" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "Ներկայացում 1x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "ծրագրի սկզբից մինչև հիմա անցած ժամանակ (վայկյաններով)" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Չեղարկել" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "կտավի բարձրությունը" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 msgid "presentation 2x1" msgstr "Ներկայացում 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "Ներկայացում 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "Ներկայացում 2x2" - -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" - -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" - -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "հանել" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "և" -#: pysamples/brain.py:100 -msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "Փլուզվող շարանի վերին մասը" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +# Որպես մուտք +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "Որպես ներածում" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "Կանգնեցնել" +#: 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:653 +msgid "Python block" +msgstr "Python -ի ծրագրավորման մասնիկ" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "վերարտադրել" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "սպասել" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "պահել" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "Արագացում" -#: pysamples/journal-stats.py:78 -msgid "other" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" msgstr "" +"Պահում է գրչի ներկայիս չափսը (կարող է օգտագործվել թվային արժեք պարունակող " +"մասնիկի փոխարեն):" -# լրիվ շրջադարձ -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "Շրջադարձ U տառի ձևով" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "Սահմանել գույնը" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "Կատարել լրիվ շրջադարձ U տառի ձևով" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "նվազագույն" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "Կիրառումը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +msgid "loads a block" +msgstr "բեռնում է մասնիկը" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Առանց գործողության այլընտրանքի" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Գրչի հրահանգների պահոց" -# Ֆայլը չի գտնվել -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Ֆայլը չի գտնվել" +# FILO:First-in, Last-out +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "Ցույց է տալիս արժեքները FILO-ում (առաջինը ներս, վերջինը դուրս կույտ)" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Կազմաձևի գրացուցակը գրելի չէ. %s" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"կատարիր-քանի դեռ-Ճիշտ օպերատորը, որն օգտագործում է Թվապնակի բուլյան " +"օպերատորներ" -#: turtleblocks.py:354 -msgid "New" -msgstr "Նոր" +#: turtleblocks.py:363 +msgid "File" +msgstr "Ֆայլ" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Բացել" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "տրամաբանական ՈՉ օպերատոր" -#: turtleblocks.py:356 -msgid "Save" -msgstr "Պահել" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "էկրանի ստորին մասի y դիրքացույցը" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Պահել որպես" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "Ներկայացման նմուշ. ընտրել Մատյանի օբյեկտ (նկարագրությամբ)" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Դուրս գալ" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Թվային օպերատորների պահոց" -#: turtleblocks.py:363 -msgid "File" -msgstr "Ֆայլ" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "բազմապատկել" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Փոխել դիրքացույցների սանդղակը" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "Անդադար" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Վերականգնել մասնիկների չափսը" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "%s հավելումն արդեն ներդրված է:" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Ցուցադրել/թաքցնել մասնիկները" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "Սահմանում է կրիայի գծած գծի գուներանգը" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Գործիքներ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "Արտաբերել տեքստ" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Զտել" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "ճեպապատկեր" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Կրիա" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "Մաքրել" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "ներկայացման նմուշ. ընտրել Մատյանի երկու օբյեկտ" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Դուք չպահպանված աշխատանք ունեք: Ցանկանու՞մ եք պահպանել այն:" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Մեծացնել մասնիկները" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "Պահպանե՞լ նախագիծը" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Էկրանի չափով" -#~ msgid "Turtle Art Mini" -#~ msgstr "Կրիայի Արվեստ /TortugArte/ Մինի" +# Ֆայլը չի գտնվել +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Ֆայլը չի գտնվել" -#~ msgid "Turtle Confusion" -#~ msgstr "Կրիայի շփոթմունք" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "Ցուցադրել" -#~ msgid "Select a challenge" -#~ msgstr "Ընտրել մի առաջադրանք - մարտահրավեր" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "Տեքստ" -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Մեքսիկական պեսոյի պահոց" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "պատահական" -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Կոլումբիական պեսոյի պահոց" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "տրամաբանական greater-than/մեծ է քան /օպերատոր" -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Ռուանդական ֆրանկի պահոց" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "Կրիային շրջում է ժամացույցի սլաքին հակառակ (անկյունն` աստիճանով)" -#~ msgid "Palette of US dollars" -#~ msgstr "ԱՄՆ դոլարի պահոց" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "սև" -#~ msgid "Palette of Australian dollars" -#~ msgstr "Ավստրալիական դոլարի պահոց" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "հաշվում է քառակուսի արմատը" -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Պարագվայական գուարանիի պահոց" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"Պահում է կրիայի ընթացիկ y դիրքացույցի արժեքը (կարող է գործածվել թվային արժեք " +"պարունակող մասնիկի փոխարեն):" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Պերուական Նուեվո Սոլերի պահոց" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "Մկնիկի սլաքի X-ը:" -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Ուրուգվայական պեսոի պահոց" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "Մկնիկի սլաքի y դիրքացույցը:" -# ԼԱԴ - Լույս արձակող դիոդ -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "Կարգավորել ԼԱԴ ուժգնությունը 0 -ի և 255 - ի միջև:" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "Կանգնեցնել" -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "Միջավայրի լույսի մակարդակը դարձնում է 0 -ի և 1023- ի միջև ընկած թիվ:" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "մեծ է քան" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "Կոճակ" +# xcor - x -ի դիրքացույցը +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "Միջավայրի լույսի մակարդակը դարձնում է 0 -ի և 1023- ի միջև ընկած թիվ:" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Օգնություն" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "Միջավայրի ջերմությունը դարձնում է թիվ` 0 -ի և 255- ի միջև:" +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "Պահպանե՞լ նախագիծը" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "Սենսորի առջև եղած առարկայի հեռավորությունը դարձնում է թիվ` 0 -ի և 255- ի " -#~ "միջև" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "Ընտրել, թե որ կրիային է տրվում հրահանգը" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "Կախված սենսորի թեքությունից` դարձնում է 0 կամ 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "Աջակողմյան x" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "Դարձնում է 1, երբ սենսորը հայտնաբերում է մագնիսական դաշտ, իսկ հակառակ " -#~ "դեպքում` 0" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "Սահմանում է կրիայի մուտքագրած տեքստի գույնը" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "Տատանվում է 0 -ից 1, հաճախականությունը կախված է տատանումից" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "Լույսի սենսորով հայտնաբերված լույսի մակարդակը" -# Լուսարձակման Դիոդ -#~ msgid "LED" -#~ msgstr "ԼԱԴ" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Հավելման բեռնումը չկայացավ" -#~ msgid "button" -#~ msgstr "Կոճակ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "ստեղնաշար" -#~ msgid "grayscale" -#~ msgstr "Գորշ գույնի սանդղակ" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "Աղեղ" -#~ msgid "ambient light" -#~ msgstr "Սենյակային լույս" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "Շարավիղ" -#~ msgid "temperature" -#~ msgstr "Ջերմաստիճանը" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Բևեռային դիրքացույցներ" -#~ msgid "distance" -#~ msgstr "հեռավորություն" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "Սահմանել երանգը" -#~ msgid "tilt" -#~ msgstr "թեքություն" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "տրամաբանական AND /և/օպերատոր" -#~ msgid "magnetic induction" -#~ msgstr "մագնիսական ինդուկցիա" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +" Դուք պետք է հաշիվ ունենաք http://turtleartsite.sugarlabs.org կայքում, " +"որպեսզի բեռնեք Ձեր նախագիծը:" -#~ msgid "vibration" -#~ msgstr "տատանում" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "պահոց" -#~ msgid "Butia Robot" -#~ msgstr "Բութիա Ռոբոտ" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Գործարկել" -#~ msgid "refresh Butia" -#~ msgstr "Թարմացնել Բութիան" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "ցուցադրել կույտը" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "Թարմացնել Բութիայի պահոցի վիճակն ու մասնիկները:" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "" +"Սահմանում է կրիայի գլխի ուղղությունը (ելման կետում`0 դիրքում,նայում է դեպի " +"էկրանի վերին մասը):" -#~ msgid "battery charge Butia" -#~ msgstr "Բութիա մարտկոցի լիցքավորում" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "ընտրում է պահոցը" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "Մարտկոցի լիցքավորումը վերածում է 0-ից 255-ի միջև ընկած թվի" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "Միկրոֆոն ներմուծման ուժգնություն" -#~ msgid "speed Butia" -#~ msgstr "Բութիա արագություն" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Վերնագիր." -#~ msgid "forward Butia" -#~ msgstr "Առաջ տանել Բութիան" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Լրատվամիջոցի առարկաների պահոց" -#~ msgid "move the Butia robot forward" -#~ msgstr "Բութիա ռոբոտը շարժել դեպի առաջ" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Վերականգնել աղբարկղից բոլոր մասնիկները" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "Տեղափոխել Բութիա ռոբոտը առաջ` նախապես սահմանված հեռավորության վրա:" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Փոփոխականներով մասնիկների պահոց" -#~ msgid "left Butia" -#~ msgstr "Ձախ Բութիա" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "Մաթեմատիկական օպերատորներում օգտագործվում է որպես թվային ներմուծում" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "Բութիա ռոբոտը շրջել դեպի աջ:" +#: 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 "Վերբեռնել" -#~ msgid "backward Butia" -#~ msgstr "Բութիան` հետ" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Սերվեր" -#~ msgid "move the Butia robot backward" -#~ msgstr "Շարժել Բութիա ռոբոտը դեպի ետ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "Ներկայացում 2x2" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "Տեղափոխել Բութիա ռոբոտը ետ` նախապես սահմանված հեռավորության վրա" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Փոփոխական 1  ( թվային արժեքը )" -#~ msgid "right Butia" -#~ msgstr "աջ Բութիա" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Հարևաններ" -#~ msgid "turn the Butia robot at right" -#~ msgstr "Բութիա ռոբոտը շրջել դեպի աջ:" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "Ավելացնում է երկու տառաթվային ներմուծում" -#~ msgid "turn Butia" -#~ msgstr "Պտտել Բութիան" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "հավասար" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "Շրջել Բութիա ռոբոտը x աստիճան" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "այլապես" -#~ msgid "stop Butia" -#~ msgstr "կանգնեցնել Բութիան" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "Չի հավանում" -#~ msgid "stop the Butia robot" -#~ msgstr "Կանգնեցնել Բութիա ռոբոտը:" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Դուք չպահպանված աշխատանք ունեք: Ցանկանու՞մ եք պահպանել այն:" -#~ msgid "Butia" -#~ msgstr "Բութիա" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "Վերականգնում է թաքնված մասնիկները" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Տեսախցիկի վերամեկնարկման գործողությունը ձախողվեց" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "բեռնել" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Ոչ մի տեսախցիկ չհայտնաբերվեց" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "կանգնեցնել տեսագրությունը կամ ձայնագրությունը:" -#~ msgid "Error stopping camera" -#~ msgstr "Տեսախցիկի ընդհատման գործողությունը ձախողվեց" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Շարժելիս Կրիան չի նկարի:" -#~ msgid "Error starting camera" -#~ msgstr "Տեսախցիկի վերամեկնարկման գործողությունը ձախողվեց" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "Հանել" -#~ msgid "FollowMe" -#~ msgstr "Հետևիր ինձ" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "Գրչի չափս" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Փնտրել NXT կառավարման միացված մասնիկը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "կրիայի զրահը" -# Calibration - Ելքային արժեքի հարմմարեցումը ելքի էտալոնային արժեքին: -#~ msgid "calibration" -#~ msgstr "Կալիբրացիա" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"Վերարտադրում է Սինուսոիդն ըստ հաճախականության, տատանումների մեծության ու " +"տևողության /վրկ/:" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "Պահեստավորում է անհատականացված կալիբրացիան:" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "return a personalized calibration" -#~ msgstr "Վերադարձնել անհատականացված կալիբրացիան:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "Խոսել" -#~ msgid "follow" -#~ msgstr "Հետևել" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "Ընթերցել արժեքը RFID(ռադիո հաճախականությունների ճանաչման)սարքից" -#~ msgid "follow a color or calibration" -#~ msgstr "Հետևել գույնին կամ կալիբրացայիային:" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "Շարժում է կրիային աղեղի երկայնությամբ:" -#~ msgid "minimum pixels" -#~ msgstr "Պիքսելների նվազագույնը" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "Կատարել լրիվ շրջադարձ U տառի ձևով" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "Սահմանել հաջորդող պիքսելների նվազագույն քանակը:" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr " տրամաբանական equal-to/հավասար է/օպերատոր" -#~ msgid "threshold" -#~ msgstr "Նախաշեմ" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Գրչածայրի գույների ներկապնակը" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "Սահմանել ԿԿԿ գույնի շեմը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "Դադար տալ տեսա կամ ձայնա - գրությանը" -#~ msgid "camera mode" -#~ msgstr "տեսախցիկի ռեժիմ" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "Թվային արժեքը պահում է Փոփոխական 1-ում" -# RGB - Կարմիր, Կանաչ, Կապույտ ԿԿԿ -# YUV - Գունային մոդել -# HSV - Երանգ, Հագեցվածություն, Արժեք -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "տեղադրել տեսախցիկի գունային ռեժիմը` RGB, YUV, և HSV" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "Թվային արժեքը պահում է Փոփոխական 2-ում" -#~ msgid "x position" -#~ msgstr "Դիրքն x -ի վրա" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "կրիային հատուկ 'զրահ' հագցնել" -#~ msgid "return x position" -#~ msgstr "Վերադառնալ x դիրքին" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "Կոճակը սեղմել" -#~ msgid "y position" -#~ msgstr "Դիրքն y - ի վրա" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "Շարժում է կրիային հետ" -#~ msgid "return y position" -#~ msgstr "Վերադառնալ y դիրքին" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "էկրանի վերին մասի ycor-ը" -#~ msgid "pixels" -#~ msgstr "Պիքսել" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Ցուցադրել մասնիկները" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "Վերականգնել ամենամեծ բծի պիքսելների քանակը:" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "վերարտադրել" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "տեղադրել տեսախցիկի RGB գունային ռեժիմը" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "պահել" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "տեղադրել տեսախցիկի YUV գունային ռեժիմը" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Գույներ" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "տեղադրել տեսախցիկի HSV գունային ռեժիմը" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "Սահմանում է կրիայի գծած գծի չափսը" -#~ msgid "empty calibration" -#~ msgstr "Կալիբրացիան. դատարկ" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Բացել" -#~ msgid "error in string conversion" -#~ msgstr "Տեքստային շղթայի փոխակերպման սխալ:" +# Ուղղվածություն +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "Դիրք" -#~ msgid "SumBot" -#~ msgstr "SumBot" +# ycor- y-ի դիրքացույցը +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "speed SumBot" -#~ msgstr "SumBot -ի արագացում" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"Ծրագրավորվող բլոկ. օգտագործվում է բարդ բազմակի փոփոխականներով մաթեմատիկական " +"հավասարումներ, օրինակ՝ sqrt(x*x+y*y),ավելացնելու համար" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "Ներմուծել SumBot -ի արագությունը:" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "եթե" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "Սահմանել նախնական արագությունը`տեղաշարժման հրահանգների համար" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "Տեղափոխում է կրիային xcor, ycor դիրք; (0, 0)-ն էկրանի կենտրոնն է:" -#~ msgid "forward SumBot" -#~ msgstr "SumBot առաջ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "\"Պիթոն\"" -#~ msgid "move SumBot forward" -#~ msgstr "SumBot-ը շարժել դեպի առաջ" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Կանգ" -#~ msgid "backward SumBot" -#~ msgstr "SumBot` ետ" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "Գործողություն 2" -#~ msgid "move SumBot backward" -#~ msgstr "SumBot շարժել դեպի ետ" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "Գործողություն 1" -#~ msgid "stop SumBot" -#~ msgstr "SumBot կանգ" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "ավարտել լցումը" -#~ msgid "stop the SumBot" -#~ msgstr "Կանգնեցնել SumBot-ը" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Պատճենել" -#~ msgid "left SumBot" -#~ msgstr "SumBot Ձախ" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Փակցնել" -#~ msgid "turn left the SumBot" -#~ msgstr "SumBot-ը շրջել դեպի ձախ:" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "չի արտածում ... վրա" -#~ msgid "right SumBot" -#~ msgstr "SumBot` աջ" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Գործունեություններ" -#~ msgid "turn right the SumBot" -#~ msgstr "SumBot -ը շրջել դեպի աջ:" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Բեռնել համացանցում" -#~ msgid "angle to center" -#~ msgstr "Շրջել դեպի կենտրոն անկյան տակ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "Դատարկել կույտը" -# Dohyo կան dojo - Սումո ըմբշամարտի բեմն է -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "Անկյունը հասցնում է dohyo- ի կենտրոնին" +# FILO: first-in;last-out +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "Ցրում է FILO-ի (առաջինը ներս,վերջինը դուրս կույտ) արժեքը:" -#~ msgid "angle to Enemy" -#~ msgstr "Շրջել դեպի հակառակորդն ուղղող անկյան տակ:" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Մաքրել" -#~ msgid "get the angle to the Enemy" -#~ msgstr "Պարզել անկյան չափը մինչև հակառակորդը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Ներկայացման նմուշների պահոց" -#~ msgid "x coor. SumBot" -#~ msgstr "SumBot -ի X դիրքացույցը" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "Անկյուն" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "Պարզել SumBot ռոբոտի x դիրքացույցը" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "ինքնություն" -#~ msgid "y coor. SumBot" -#~ msgstr "y coor. SumBot" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Պահել / Բեռնել" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "Պարզել SumBot ռոբոտի y դիրքացույցը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "Վերին y" -#~ msgid "x coor. Enemy" -#~ msgstr "x coor. Հակառակորդի" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "աուդիո" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "Պարզել հակառակորդի ռոբոտի x դիրքացույցը" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Գործիքներ" -#~ msgid "y coor. Enemy" -#~ msgstr "y coor. Հակառակորդի" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Մուտք" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "Պարզել հակառակորդի ռոբոտի y դիրքացույցը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "Մեկնաբանություն" -#~ msgid "rotation SumBot" -#~ msgstr "SumBot պտույտ" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "Վերին թվային ներմուծումից հանում է ստորին թվային ներմուծումը" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "Հասնում է Sumbot -ի պտույտին" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "Դադար տալ" -# rotation պտույտ կամ շրջադարձ -#~ msgid "rotation Enemy" -#~ msgstr "Հակառակորդի պտույտ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"Հարցում՝ ստեղնաշարով ներմուծման համար (արդյունքները պահվում են ստեղնաշարի " +"բլոկում)" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "Հասնում է Հակառակորդի պտույտին" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Դեկարտյան" -#~ msgid "distance to center" -#~ msgstr "հեռավորություն կենտրոնից" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "Մաքրում է էկրանը և ելման դիրքի բերում կրիային" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "Պարզել հեռավորությունը «dojo»-ի կենտրոնից" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "Միկրոֆոնի մուտքային ազդանշան" -#~ msgid "distance to Enemy" -#~ msgstr "Հեռավորությունը մինչև Հակառակորդը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "վերադարձնում է այն գույնը, որ կրիան ներկայիս \"տեսնում է\"" -#~ msgid "get the distance to the Enemy" -#~ msgstr "Պարզել հեռավորությունը մինչև հակառակորդը" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "Կանչում է Գործողություն 1 մասնիկների շարանը" -#~ msgid "update information" -#~ msgstr "արդիականացնել տեղեկությունը" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Կրիայի հրահանգների պահոց" -#~ msgid "update information from the server" -#~ msgstr "Արդիականացնել տեղեկությունը` սերվերից" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "կրկնել անընդմեջ" -#~ msgid "Palette of physics blocks" -#~ msgstr "Ֆիզիկայի մասնիկների պահոց" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "Ցուցադրել հավասարեցված" -#~ msgid "start polygon" -#~ msgstr "Սկսել բազմանկյունը" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Ցանկանո՞ւմ եք վերբեռնել %s:" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "Սկսել նոր բազմանկյան սահմանումը` ելնելով Կրիայի առկա XY դիրքից" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Բեռնել նախագիծը" -#~ msgid "add point" -#~ msgstr "Կետ ավելացնել" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Նախագիծ" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "Նոր կետ ավելացնել առկա բազմանկյանը` ելնելով Կրիայի ներկա XY դիրքից:" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Զտել" -#~ msgid "end polygon" -#~ msgstr "Ավարտել բազմանկյունը:" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Կասեցնել տատանվող օգնությունը" -#~ msgid "Define a new polygon." -#~ msgstr "Սահմանել նոր բազմանկյուն" +# Մոդուլ +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "end filled polygon" -#~ msgstr "Ավարտել լցված բազմանկյունը:" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Գաղտնաբառ" -#~ msgid "Not a simple polygon" -#~ msgstr "Պարզ բազմանկյուն չէ" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "Ուղղահայաց տարածություն" -#~ msgid "Define a new filled polygon." -#~ msgstr "Սահմանել նոր, լցոնված բազմանկյուն:" +# Հավելում - plugin +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" +"Խնդրվումէ վերամեկնարկել Turtle Art /Կրիայի/ ծրագիրը` հավելումն օգտագործելու " +"համար:" -#~ msgid "triangle" -#~ msgstr "Եռանկյուն" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"Ավարտում է գունավոր մակերեսով բազմանկյան գծագրումը (օգտագործվում է \"Սկսել " +"գունալցումը\" մասնիկների հետ):" -#~ msgid "base" -#~ msgstr "Հիմք" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Համատեղ օգտագործել" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Եռանկյունաձև օբյեկտ ավելացնել նախագծին:" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "փոքր է քան" -#~ msgid "circle" -#~ msgstr "Շրջանագիծ" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "քառակուսի արմատ" -#~ msgid "Add a circle object to the project." -#~ msgstr "Շրջանաձև օբյեկտ ավելացնել նախագծին:" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Փոխել դիրքացույցների սանդղակը" -#~ msgid "rectangle" -#~ msgstr "Ուղղանկյուն" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "Ցուցադրել մասնիկները" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Ուղղանկյունաձև օբյեկտ ավելացնել նախագծին" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Դուրս գալ" -#~ msgid "reset" -#~ msgstr "Վերակարգավորել" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar Մատյանի նկարագրության դաշտը" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Վերակարգավորել Նախագիծը, վերացնել օբյեկտների ցանկը:" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "Սահմանել գորշ" -#~ msgid "motor" -#~ msgstr "Շարժիչ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "Ներկայացում պարբերանշված ցուցակով" -#~ msgid "torque" -#~ msgstr "Շարժիչի պտտվող մասը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "Տևողություն" -#~ msgid "speed" -#~ msgstr "Արագություն" +#: turtleblocks.py:354 +msgid "New" +msgstr "Նոր" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Շարժիչի պտույտները և արագության աստիճանները 0-ից /անջատված/ մինչև դրական " -#~ "թվեր; շարժիչը տեղավորվում է ամենավերջում ստեղծված օբյեկտի մոտ:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "Մեկնաբանություն է տեղադրում է Ձեր կոդում:" -#~ msgid "pin" -#~ msgstr "Կոճգամ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "կարդալ փիքսելը" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Կոճգամով ամրացրու օբյեկտը, որպեսզի չընկնի:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "սանդղակ" -#~ msgid "joint" -#~ msgstr "Միացյալ" +# ստորին մասը +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "Ստորին մաս" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Միացնել 2 օբյեկտները (ամենավերջում ստեղծված օբյեկտն ու x, y կետի վրա գտնվող " -#~ "օբյեկտը):" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "բոսոր" -#~ msgid "save as Physics activity" -#~ msgstr "Պահել ֆիզիկա գործունեությունը" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Փոխել դիրքացույցները դեպի նվազեցում" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Պահել Նախագիծը Մատյանում որպես Ֆիզիկայի գործունեություն:" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "Քլիք` բացելու համար" -#~ msgid "gear" -#~ msgstr "Ատամնանիվ" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "Միկրոֆոնի ներմուծման տոնը" -#~ msgid "Add a gear object to the project." -#~ msgstr "Նախագծին ատամնանիվ ավելացնել" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Կոնֆիգուրացիա" -#~ msgid "density" -#~ msgstr "Խտություն" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Նկարագրություն." -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "Սահմանել օբյեկտների խտությունը (կարող է լինել միայն դրական թիվ):" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "Մատյան" -#~ msgid "friction" -#~ msgstr "Շփում" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "Դատարկել աղբամանը" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Սահմանել օբյեկտների շփման մակարդակը (արժեքը` 0-ից մինչև 1, որտեղ 0 բացառում " -#~ "է շփումը, իսկ 1-ն` ուժեղ շփում է):" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Շարժելիս` Կրիան կնկարի:" -# Առաձգական մակերեսի շնորհիվ -#~ msgid "bounciness" -#~ msgstr "Ետցատկ" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Բեռնում..." -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Սահմանել օբյեկտի ետցանկի ուժգնությունը (արժեքը` 0-ից մինչև 1, որտեղ 0 " -#~ "բացառում է ետցատկը, իսկ 1-ը` շատ արագ ետցատկ է):" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Մատյանի Աուդիո օբյեկտ" -# Դինամիկ -#~ msgid "dynamic" -#~ msgstr "Շարժուն" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Կանգնեցնել Կրիային" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Եթե շարժունակությունը = 1, օբյեկտը կարող է շարժվել, եթե այն = 0` ապա անշարժ " -#~ "մնում է իր դիրքում:" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Կրիա" -# WeDo - LEGO ընկերության ռոբոտային արտադրանք է: -#~ msgid "Palette of WeDo blocks" -#~ msgstr "WeDo մասնիկների պահոց" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "Փոխում է մասնիկների պահոցի դիրքը" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "Թեքման սենսորի արդյունքը. (-1 == թեքում չկա, 0 == թեքում դեպի առաջ, 3 == " -#~ "թեքում դեպի ետ, 1 == թեքում դեպի ձախ, 2 == թեքում դեպի աջ)" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "պահել ... մեջ" -#~ msgid "distance sensor output" -#~ msgstr "Հեռավորության սենսորի արդյունքը:" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Թաքցնել մասնիկները" -#~ msgid "Motor A" -#~ msgstr "Շարժիչ A" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Ներբեռնել «Python» ծրագրի մասնիկները" -#~ msgid "returns the current value of Motor A" -#~ msgstr "Վերադարձնում է A շարժիչի ընթացիկ արժեքը:" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "գումարել" -#~ msgid "Motor B" -#~ msgstr "Շարժիչ B" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "կամ" -#~ msgid "returns the current value of Motor B" -#~ msgstr "Վերադարձնում է B շարժիչի ընթացիկ արժեքը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "Ներկայացման նմուշ.Կետերի ցանկ" -#~ msgid "set the value for Motor A" -#~ msgstr "Սահմանել A շարժիչի արժեքը:" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "Մասնիկներն ընդլայնելու համար կիրառվող ինքնության օպերատորը:" -#~ msgid "set the value for Motor B" -#~ msgstr "Սահմանել B շարժիչի արժեքը:" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Փոքրացնել մասնիկները" -# LEGO NXT - LEGO ընկերության ռոբոտային արտադրանք է: -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Շարժիչի LEGO NXT մասնիկների պահոց:" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "Սահմանում է կրիայի մուտքագրած տեքստի չափսը" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "LEGO NXT -ի սենսորների մասնիկների պահոց:" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"Պահում է կրիայի գլխի ուղղության առկա արժեքը (կարող է օգտագործվել թվային " +"արժեք պարունակող մասնիկի փոխարեն):" -#~ msgid "touch" -#~ msgstr "Հպման սենսոր" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "Պատկեր" -# Հեռավորության չափումը գերձայնային ալիքներով -#~ msgid "ultrasonic" -#~ msgstr "Գերձայնային" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"Վերադարձնում է նվազագույն (վերին) եւ առավելագույն(ստորին)արժեքների միջեւ " +"պատահական որևէ թիվ" -#~ msgid "light" -#~ msgstr "Լույս" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"Պահում է գրչի ընթացիկ գույնը (կարող է օգտագործվել թվային արժեք պարունակող " +"մասնիկների փոխարեն):" -#, fuzzy -#~ msgid "grey" -#~ msgstr "մոխրագույն" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Ցուցադրել պահոցը" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Ստուգել կապը NXT հսկման մասնիկի հետ:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "Նկարը պահում է Sugar-ի Մատյանում" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "Հզորության արժեքը պետք է լինի -127 և 127 -ի միջև:" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Պահպանել ճեպապատկերը" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "" -#~ "Վրիպում է տեղի ունեցել. խնդրեմ ստուգե՛ք բոլոր միացումներն ու փորձեք նորից " -#~ "միացնել:" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "Մեկնարկ" -#~ msgid "NXT not found" -#~ msgstr "NXT չի գտնվել" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "Վերականգնում է իրականը, եթե մասնիկների շարանը /կույտը/ դատարկ է:" -#~ msgid "refresh NXT" -#~ msgstr "Թարմացնել NXT-ը" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "Շարժում է կրիան առաջ" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Փնտրել NXT կառավարման միացված մասնիկը:" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "Առաջ" -#~ msgid "play tone" -#~ msgstr "Վերարտադրել հնչյունը" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "Իմ տուփը" -#~ msgid "frequency" -#~ msgstr "Հաճախականություն" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Հաշվի տիրոջ Ինքնությունը" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Նվագարկել հաճախականությամբ հնչյունը որոշակի ժամանակի ընթացքում:" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Ընտրել համատեղ օգտագործվելիք մասնիկները:" -#~ msgid "port" -#~ msgstr "Մուտք" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "Հետ" -#~ msgid "power" -#~ msgstr "Հզորություն" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "Սահմանում է ԶԼՄ միջոցների սանդղակը" -#~ msgid "rotations" -#~ msgstr "Պտույտներ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "պահում է ներկայիս սանդղակի արժեքը" -#~ msgid "turn a motor" -#~ msgstr "Պտտել շարժիչը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "Ներկայացում 1x1" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "Համաժամանակեցնել Մուտք B-ին և Մուտք C -ին միացված շարժիչները:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "Ներկայացում 1x2" -#~ msgid "PORT A" -#~ msgstr "Մուտք A" +# կույտի-ագուցված մասնիկների շարան +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "Անվանակոչվող գործողությունների կույտի ամենվերին մասը" -#~ msgid "PORT A of the brick" -#~ msgstr "Մուտք A-ի մասնիկը" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "Թվային արժեքը պահում է անվանակոչված փոփոխականում" -#~ msgid "PORT B" -#~ msgstr "Մուտք B" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "տրամաբանական OR /կամ/ օպերատոր" -#~ msgid "PORT B of the brick" -#~ msgstr "Մուտք B-ի մասնիկը" +#: 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 "Միկրոֆոնի մուտքի լարումը" -#~ msgid "PORT C" -#~ msgstr "Մուտք C" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "Կրկնել սահմանված անգամներ" -#~ msgid "PORT C of the brick" -#~ msgstr "Մուտք C-ի մասնիկը" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Պահպանել..." -#~ msgid "start motor" -#~ msgstr "Միացնե՛լ շարժիչը" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "Կանչում է Գործողություն 2 շարանը" -#~ msgid "Run a motor forever." -#~ msgstr "Աշխատեցնե՛լ շարժիչը մշտապես:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "Սահմանել xy" -#~ msgid "brake motor" -#~ msgstr "Արգելակել շարժիչը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "Վերնագրի y դիրքացույցը" -#~ msgid "Stop a specified motor." -#~ msgstr "Արգելակել որոշված շարժիչը" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "Վերնագրի x դիրքացույցը" -#~ msgid "reset motor" -#~ msgstr "Վերակարգավորել շարժիչը:" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "լցնել էկրանը" -#~ msgid "Reset the motor counter." -#~ msgstr "Վերակարգավորել շարժիչի հաշվիչը:" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Պահել որպես" -#~ msgid "motor position" -#~ msgstr "Շարժիչի դիրքը" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "Սահմանել xy" -#~ msgid "Get the motor position." -#~ msgstr "Պարզել շարժիչի դիրքը" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "Խոտան" -#~ msgid "PORT 1" -#~ msgstr "Մուտք 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "բևեռային" -#~ msgid "PORT 1 of the brick" -#~ msgstr "Մասնիկի Մուտք 1 -ը:" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "կրկնել" -#~ msgid "read" -#~ msgstr "Կարդալ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "Սպասեք մինչև ընթացիկ տեսա կամ ձայնագրությունն ավարտվի:" -#~ msgid "sensor" -#~ msgstr "Սենսոր" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Պահել որպես պատկեր" -#~ msgid "Read sensor output." -#~ msgstr "Կարդալ սենսորի ելքի տվյալները" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Խմբագրել" -#~ msgid "PORT 2" -#~ msgstr "Մուտք 2" +#: 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 "Միկրոֆոնի մուտքային դիմադրողականություն" -#~ msgid "PORT 2 of the brick" -#~ msgstr "Մասնիկի Մուտք 2 -ը:" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "2 գործողության մասնիկաշարանի վերին մասը" -#~ msgid "light sensor" -#~ msgstr "Լույսի սենսոր" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"բաժանում է վերին թվային արժեքը(համարիչը ) ստորին թվային արժեքի (հայտարարը )" +"վրա :" -#~ msgid "PORT 3" -#~ msgstr "Մուտք 3" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "առավելագույն" -#~ msgid "PORT 3 of the brick" -#~ msgstr "Մասնիկի Մուտք 3 -ը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "Արժեքը տպում է էկրանի ստորին մասում գտնվող կարգավիճակի բլոկում:" -#~ msgid "touch sensor" -#~ msgstr "Հպման սենսոր" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "Սկսել լցումը" -#~ msgid "distance sensor" -#~ msgstr "Հեռավորության սենսոր" +# ASCII - American Standard Code for Information Interchange /Տեղեկության Փոխանակման Ամերիկյան Ստանդարտ Կոդ +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "Պահում է ստեղնաշարի բլոկի հարցման արդյունքները որպես ASCII." -#~ msgid "PORT 4" -#~ msgstr "Մուտք 4" +#. #-#-#-#-# hy.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "հրում" -#~ msgid "PORT 4 of the brick" -#~ msgstr "Մասնիկի Մուտք 4 -ը:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"Ծրագրավորվող բլոկ. օգտագործվում է բարդ բազմակի փոփոխականներով մաթեմատիկական " +"հավասարումներ, օրինակ՝ sin(x+y+z),ավելացնելու համար" -#~ msgid "sound sensor" -#~ msgstr "Ձայնային սենսոր" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "Վերականգնել բոլորը" -#~ msgid "color sensor" -#~ msgstr "Գույնի սենսոր" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "Ողջույն" -#~ msgid "set light" -#~ msgstr "Կարգավորել լույսը" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "ԿրիայիԲլոկ" -#~ msgid "Set color sensor light." -#~ msgstr "Միացնել գունային սենսորի լույսը:" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"Լոգո-ոգեշնչված կրիա, որը նկարում է գունազարդ նկարներ \"snap-together\" " +"տեսողական ծրագրային բլոկերով" -#~ msgid "battery level" -#~ msgstr "մարտկոցի մակարդակը" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" +#: TurtleArtActivity.py:766 #, fuzzy -#~ msgid "Get battery level of the brick" -#~ msgstr "Ձեռք բերել ուղղանկյան մարտկոցի մակարդակը:" - -#~ msgid "HIGH" -#~ msgstr "ԲԱՐՁՐ" +msgid "Palettes" +msgstr "պահոց" -#~ msgid "LOW" -#~ msgstr "ՑԱԾՐ" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "INPUT" -#~ msgstr "ՄՈւՏՔ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#~ msgid "OUTPUT" -#~ msgstr "ԵԼՔ" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -# PWM - pulse width modulation, ԲԼՄ -բաբախյունի լայնքի մոդուլացիա -#~ msgid "PWM" -#~ msgstr "PWM" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -# SERVO - փոքր չափի ռոբոտների հեռակա ռադիոկառավարման սարք: -# -#~ msgid "SERVO" -#~ msgstr "SERVO" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ՍԽԱԼ. Ստուգել Arduino -ն և մուտքի համարը:" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ՍԽԱԼ. Արժեքը պետք է լինի 0-ից մինչև 255:" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ՍԽԱԼ. Արժեքը պետք է լինի կամ ԲԱՐՁՐ, կամ` ՑԱԾՐ:" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ՍԽԱԼ. պետք է լինի, ՄՈւՏՔ, ԵԼՔ, PWM կամ SERVO կերպով:" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" -#~ msgid "pin mode" -#~ msgstr "pin ռեժիմ" +#: turtleblocks.py:407 +msgid "About..." +msgstr "" -# Մոդուլ -#~ msgid "mode" -#~ msgstr "Կերպ" +#~ msgid "returns the battery charge as a number between 0 and 255" +#~ msgstr "Մարտկոցի լիցքավորումը վերածում է 0-ից 255-ի միջև ընկած թվի" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Ընտրել pin գործառույթը (INPUT, OUTPUT, PWM, SERVO)" +# ԼԱԴ - Լույս արձակող դիոդ +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "Կարգավորել ԼԱԴ ուժգնությունը 0 -ի և 255 - ի միջև:" -#~ msgid "analog write" -#~ msgstr "Գրել անալոգային տեսքով" +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "Կախված սենսորի թեքությունից` դարձնում է 0 կամ 1" -#~ msgid "Write analog value in specified port." -#~ msgstr "Գրել անալոգային արժեքը որոշակի Մուտքի վրա:" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "Տատանվում է 0 -ից 1, հաճախականությունը կախված է տատանումից" -#~ msgid "analog read" -#~ msgstr "Կարդալ անալոգային արդյունքը" +#~ msgid "grayscale" +#~ msgstr "Գորշ գույնի սանդղակ" -# վոլտ=((կարդալ)*5)/1024) -#~ 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 "" -#~ "Կարդալ արժեքն անալոգային Մուտքից: Արժեքը կարող է լինել 0 -ի և 1023-ի միջև. " -#~ "USB -ի համար` volt=((read)*5)/1024) մոտավորապես:" +#~ msgid "ambient light" +#~ msgstr "Սենյակային լույս" -#~ msgid "digital write" -#~ msgstr "Թվայնացված գրություն" +#~ msgid "magnetic induction" +#~ msgstr "մագնիսական ինդուկցիա" -#~ msgid "Write digital value to specified port." -#~ msgstr "Գրել թվայնացված արժեքը որոշակի Մուտքի համար:" +#~ msgid "vibration" +#~ msgstr "տատանում" -#~ msgid "digital read" -#~ msgstr "Թվայնացված ընթերցում" +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "Տեղափոխել Բութիա ռոբոտը առաջ` նախապես սահմանված հեռավորության վրա:" -#~ msgid "Read value from digital port." -#~ msgstr "Կարդալ արժեքը թվայնացված մուտքից" +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "Տեղափոխել Բութիա ռոբոտը ետ` նախապես սահմանված հեռավորության վրա" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Թվայնացված Մուտքի համար սահմանել ԲԱՐՁՐ արժեքը:" +#~ msgid "turn Butia" +#~ msgstr "Պտտել Բութիան" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Կարգավորել Arduino մուտքը թվային եղանակով ներմուծման համար:" +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "Շրջել Բութիա ռոբոտը x աստիճան" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Կարգավորել Arduino մուտքը servo -ի համար:" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "" +#~ "Միջավայրի լույսի մակարդակը դարձնում է 0 -ի և 1023- ի միջև ընկած թիվ:" -#~ msgid "Set LOW value for digital port." -#~ msgstr "ԹվայինՄուտքի համար սահմանել ՑԱԾՐ արժեքը:" +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "" +#~ "Միջավայրի լույսի մակարդակը դարձնում է 0 -ի և 1023- ի միջև ընկած թիվ:" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Կարգավորել Arduino մուտքը թվային արդյունքի համար:" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "Միջավայրի ջերմությունը դարձնում է թիվ` 0 -ի և 255- ի միջև:" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgstr "" -#~ "Կարգավորել Arduino մուտքը համար PWM համար (բաբախյուն- լայնության " -#~ "մոդուլյացիան)" +#~ "Սենսորի առջև եղած առարկայի հեռավորությունը դարձնում է թիվ` 0 -ի և 255- ի " +#~ "միջև" -# WeDo - LEGO ընկերության ռոբոտային արտադրանք է: #, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "WeDo մասնիկների պահոց" +#~ msgid "grey" +#~ msgstr "մոխրագույն" + +#, fuzzy +#~ msgid "Get battery level of the brick" +#~ msgstr "Ձեռք բերել ուղղանկյան մարտկոցի մակարդակը:" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" #~ "Բութիայի շարժիչի արագությունը ներկայացնել որպես 0-ից 1023-ի միջև ընկած " #~ "արժեք, որպես ֆունկցիայի արգումենտ:" diff --git a/po/id.po b/po/id.po index bc54885..64653a7 100644 --- a/po/id.po +++ b/po/id.po @@ -1,13 +1,50 @@ +# #-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# id.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,171 +59,872 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the gray level" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature" +msgstr "" + +#: taextras.py:71 +msgid "returns the distance from the object in front of the sensor" +msgstr "" + +#: taextras.py:72 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:73 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:74 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:75 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:76 +msgid "LED" +msgstr "" + +#: taextras.py:77 +msgid "button" +msgstr "" + +#: taextras.py:78 +msgid "grayscale" +msgstr "" + +#: taextras.py:79 +msgid "ambient light" +msgstr "" + +#: taextras.py:80 +msgid "temperature" +msgstr "" + +#: taextras.py:81 taextras.py:292 +msgid "distance" +msgstr "" + +#: taextras.py:82 taextras.py:289 +msgid "tilt" +msgstr "" + +#: taextras.py:83 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:84 +msgid "vibration" +msgstr "" + +#: taextras.py:85 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 "" + +#: taextras.py:86 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:87 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:88 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:90 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:91 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:93 +msgid "speed Butia" +msgstr "" + +#: taextras.py:94 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:95 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#: taextras.py:96 +msgid "move Butia" +msgstr "" + +#: taextras.py:97 +msgid "moves the Butia motors at the specified speed" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:99 +msgid "forward Butia" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:101 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:103 +msgid "left Butia" +msgstr "" + +#: taextras.py:104 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:106 +msgid "backward Butia" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:108 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:110 +msgid "right Butia" +msgstr "" + +#: taextras.py:111 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:112 +msgid "turn Butia" +msgstr "" + +#: taextras.py:113 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:114 +msgid "stop Butia" +msgstr "" + +#: taextras.py:115 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:116 +msgid "Butia" +msgstr "" + +#: taextras.py:120 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:121 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:122 +msgid "No camera was found" +msgstr "" + +#: taextras.py:123 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:124 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:126 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:127 +msgid "FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:129 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:131 +msgid "calibration" +msgstr "" + +#: taextras.py:132 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:134 +msgid "follow" +msgstr "" + +#: taextras.py:135 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:136 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 "" + +#: taextras.py:137 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:138 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:139 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:140 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:142 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:143 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:145 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:146 +msgid "get brightness" +msgstr "" + +#: taextras.py:147 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:148 +msgid "average color" +msgstr "" + +#: taextras.py:149 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"Kura-kura terinspirasi Logo yang melukis gambar berwarna-warni dengan blok-" -"blok pemrograman visual yang tergabung bersama" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palet perintah kura-kura" +#: taextras.py:150 +msgid "x position" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "maju" +#: taextras.py:151 +msgid "return x position" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "menggerakkan kura-kura maju" +#: taextras.py:152 +msgid "y position" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "mundur" +#: taextras.py:153 +msgid "return y position" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "menggerakkan kura-kura mundur" +#: taextras.py:154 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "bersihkan" +#: taextras.py:155 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "membersihkan layar dan mereset kura-kura" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:157 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "kiri" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:159 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:161 +msgid "set the color mode of the camera to HSV" msgstr "" -"membelokkan kura-kura berlawanan arah dengan jarum jam (sudut dalam derajat)" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "kanan" +#: taextras.py:162 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "membelokkan kura-kura searah dengan jarum jam (sudut dalam derajat)" +#: taextras.py:163 +msgid "error in string conversion" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "lengkung" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:168 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "sudut" +#: taextras.py:169 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "jari-jari" +#: taextras.py:170 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "memindahkan kura-kura mengikuti lengkungan" +#: taextras.py:171 +msgid "set the default speed for the movement commands" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "atur xy" +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:173 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:174 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:176 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:177 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:178 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:179 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:181 +msgid "left SumBot" +msgstr "" + +#: taextras.py:182 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:184 +msgid "right SumBot" +msgstr "" + +#: taextras.py:185 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:188 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:190 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:193 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:194 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:196 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:197 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:199 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:200 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:202 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:203 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:205 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:206 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:208 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:209 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:211 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:212 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:213 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:215 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:216 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:217 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:218 +msgid "update information" +msgstr "" + +#: taextras.py:219 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:224 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:225 +msgid "start polygon" +msgstr "" + +#: taextras.py:226 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:228 +msgid "add point" +msgstr "" + +#: taextras.py:229 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:231 +msgid "end polygon" +msgstr "" + +#: taextras.py:232 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:233 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:234 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:235 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:236 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:238 +msgid "base" +msgstr "" + +#: taextras.py:239 taextras.py:245 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:240 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:241 +msgid "circle" +msgstr "" + +#: taextras.py:242 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:243 +msgid "rectangle" +msgstr "" + +#: taextras.py:244 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:246 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:247 +msgid "reset" +msgstr "" + +#: taextras.py:248 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:249 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:251 +msgid "torque" +msgstr "" + +#: taextras.py:252 +msgid "speed" +msgstr "" + +#: taextras.py:253 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:255 taextras.py:418 +msgid "pin" +msgstr "" + +#: taextras.py:256 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:257 +msgid "joint" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:259 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:260 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "memindahkan kura-kura ke posisi xcor, ycor; (0, 0) ada di pusat layar." +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "atur arah" +#: taextras.py:262 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "mengatur arah gerak kura-kura (0 mengarah ke puncak layar.)" +#: taextras.py:263 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:265 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:266 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:267 +#, fuzzy +msgid "density" +msgstr "identitas" + +#: taextras.py:268 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -"menyimpan nilai koordinat x kura-kura saat ini (dapat dipakai menggantikan " -"blok angka)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:270 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:271 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"menyimpan nilai koordinat y kura-kura saat ini (dapat dipakai menggantikan " -"blok angka)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "arah" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:274 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:275 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -"menyimpan nilai arah gerak kura-kura saat ini (dapat dipakai menggantikan " -"blok angka)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palet perintah pena" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:278 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "penuhi layar" +#: taextras.py:279 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:285 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:286 +msgid "WeDo" +msgstr "" + +#: taextras.py:287 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:288 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:290 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:294 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:295 +msgid "Motor A" +msgstr "" + +#: taextras.py:296 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:297 +msgid "Motor B" +msgstr "" + +#: taextras.py:298 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:300 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:301 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:303 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:306 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:313 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:315 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:317 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:318 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "warna" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "gradasi" +#: taextras.py:319 +#, fuzzy +msgid "light" +msgstr "kanan" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "penuhi latar belakang dengan (warna, gradasi)" +#: taextras.py:320 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" #: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 @@ -194,330 +932,1211 @@ msgstr "penuhi latar belakang dengan (warna, gradasi)" msgid "gray" msgstr "kelabu" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "atur warna" +#. TRANS: The brick is the NXT controller +#: taextras.py:323 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "mengatur warna dari garis yang digambar oleh kura-kura" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "atur gradasi" +#: taextras.py:325 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "mengatur gradasi dari garis yang digambar oleh kura-kura" +#: taextras.py:326 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "atur kelabu" +#: taextras.py:327 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "mengatur level kelabu dari garis yang digambar oleh kura-kura" +#: taextras.py:328 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "memuat warna pena kini (dapat dipakai sebagai pengganti blok angka)" +#: taextras.py:329 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "memuat gradasi pena kini" +#: taextras.py:330 +msgid "NXT not found" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "memuat level kelabu kini (dapat dipakai sebagai pengganti blok angka)" +#: taextras.py:331 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pena mati" +#: taextras.py:332 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Kura-kura tak akan menggambar ketika dipindah." +#: taextras.py:333 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pena nyala" +#: taextras.py:334 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Kura-kura akan menggambar ketika dipindah." +#: taextras.py:335 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "atur ukuran pena" +#: taextras.py:336 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "mengatur ukuran garis yang digambar oleh kura-kura" +#: taextras.py:337 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "mulai memenuhi" +#: taextras.py:338 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "memulai poligon terisi (dipakai dengan blok isi akhir)" +#: taextras.py:339 +msgid "play tone" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "akhir memenuhi" +#: taextras.py:340 +msgid "frequency" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "melengkapi poligon terisi (dipakai dengan blok isi awal)" +#: taextras.py:341 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "ukuran pena" +#: taextras.py:342 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "memuat ukuran pena kini (dapat dipakai menggantikan blok angka)" +#. TRANS: turn is the action +#: taextras.py:344 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palet warna pena" +#: taextras.py:345 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" +#: taextras.py:346 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:348 +msgid "rotations" +msgstr "" + +#: taextras.py:349 +msgid "turn a motor" +msgstr "" + +#: taextras.py:350 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:351 +msgid "steering" +msgstr "" + +#: taextras.py:352 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:353 +msgid "PORT A" +msgstr "" + +#: taextras.py:354 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:355 +msgid "PORT B" +msgstr "" + +#: taextras.py:356 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:357 +msgid "PORT C" +msgstr "" + +#: taextras.py:358 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:359 +msgid "start motor" +msgstr "" + +#: taextras.py:360 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:361 +msgid "brake motor" +msgstr "" + +#: taextras.py:362 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:364 +msgid "reset motor" +msgstr "" + +#: taextras.py:365 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:366 +msgid "motor position" +msgstr "" + +#: taextras.py:367 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:368 +msgid "PORT 1" +msgstr "" + +#: taextras.py:369 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:370 +#, fuzzy +msgid "read" msgstr "merah" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "oranye" +#: taextras.py:371 +msgid "sensor" +msgstr "" + +#: taextras.py:372 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:373 +msgid "PORT 2" +msgstr "" + +#: taextras.py:374 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:375 +msgid "light sensor" +msgstr "" + +#: taextras.py:376 +msgid "gray sensor" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3" +msgstr "" + +#: taextras.py:378 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:379 +msgid "touch sensor" +msgstr "" + +#: taextras.py:380 +msgid "distance sensor" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4" +msgstr "" + +#: taextras.py:382 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:383 +msgid "sound sensor" +msgstr "" + +#: taextras.py:384 +msgid "color sensor" +msgstr "" + +#. 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:387 +msgid "set light" +msgstr "" + +#: taextras.py:388 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:390 +msgid "battery level" +msgstr "" + +#: taextras.py:391 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:396 +msgid "HIGH" +msgstr "" + +#: taextras.py:397 +msgid "LOW" +msgstr "" + +#: taextras.py:398 +msgid "INPUT" +msgstr "" + +#: taextras.py:399 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:401 +msgid "PWM" +msgstr "" + +#: taextras.py:402 +msgid "SERVO" +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:406 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:407 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:408 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:409 +msgid "Arduino" +msgstr "" + +#: taextras.py:410 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:412 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:413 +msgid "Arduino name" +msgstr "" + +#: taextras.py:414 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:417 +msgid "pin mode" +msgstr "" + +#: taextras.py:419 +#, fuzzy +msgid "mode" +msgstr "mod" + +#: taextras.py:420 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:421 +msgid "analog write" +msgstr "" + +#: taextras.py:422 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:423 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:424 +msgid "analog read" +msgstr "" + +#: taextras.py:425 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:427 +msgid "digital write" +msgstr "" + +#: taextras.py:428 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:429 +msgid "digital read" +msgstr "" + +#: taextras.py:430 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:431 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:433 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:434 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:436 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:441 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:443 +msgid "set PVS" +msgstr "" + +#: taextras.py:444 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:446 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:447 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:449 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:450 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:452 +msgid "set OD1" +msgstr "" + +#: taextras.py:453 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:455 +msgid "IN1 level" +msgstr "" + +#: taextras.py:456 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:459 +msgid "IN2 level" +msgstr "" + +#: taextras.py:460 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:463 +msgid "SEN level" +msgstr "" + +#: taextras.py:464 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:466 +msgid "capture" +msgstr "" + +#: taextras.py:467 +msgid "input" +msgstr "" + +#: taextras.py:468 +msgid "samples" +msgstr "" + +#: taextras.py:469 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:471 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:474 +msgid "A1" +msgstr "" + +#: taextras.py:475 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:477 +msgid "A2" +msgstr "" + +#: taextras.py:478 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:480 +msgid "IN1" +msgstr "" + +#: taextras.py:481 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:483 +msgid "IN2" +msgstr "" + +#: taextras.py:484 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:486 +msgid "SEN" +msgstr "" + +#: taextras.py:487 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:489 +msgid "SQR1" +msgstr "" + +#: taextras.py:490 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:492 +msgid "SQR2" +msgstr "" + +#: taextras.py:493 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:495 +msgid "PVS" +msgstr "" + +#: taextras.py:496 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:497 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "judul" #: TurtleArt/tabasics.py:446 msgid "yellow" msgstr "kuning" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "hijau" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "operator if-then yang menggunakan operator boolean dari palet Angka" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "mengalikan dua masukan numerik" #: TurtleArt/tabasics.py:449 msgid "cyan" msgstr "cyan" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "arah" + #: TurtleArt/tabasics.py:450 msgid "blue" msgstr "biru" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "ungu" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "operator modulus (sisa)" -#: TurtleArt/tabasics.py:453 -msgid "white" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pena nyala" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "tunggu" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "aksi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +#, fuzzy +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operator if-then-else yang menggunakan operator boolean dari palet Angka" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "bagi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#, fuzzy +msgid "while" msgstr "putih" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "hitam" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "teks" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "atur warna teks" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "jika maka" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "mengatur warna teks yang digambar oleh kura-kura" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "atur ukuran pena" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palet operator-operator aliran" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"operator if-then-else yang menggunakan operator boolean dari palet Angka" + +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "memuat gradasi pena kini" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "atur arah" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "spasi horizontal" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "nilai string" #: TurtleArt/tabasics.py:471 msgid "set text size" msgstr "atur ukuran teks" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "mengatur ukuran teks yang digambar oleh kura-kura" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "memulai poligon terisi (dipakai dengan blok isi akhir)" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palet operator numerik" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "mengatur level kelabu dari garis yang digambar oleh kura-kura" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "hentikan aksi" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "menambahkan dua masukan alfanumerik" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "hijau" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "minus" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "gradasi" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "mengurangkan masukan numerik bawah dari masukan numerik atas" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "penuhi latar belakang dengan (warna, gradasi)" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "kali" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pena mati" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "mengalikan dua masukan numerik" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "oranye" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "bagi" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "mengistirahatkan eksekusi program selama sekian detik yang dinyatakan" -#: TurtleArt/tabasics.py:604 +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "maka" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "bukan" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "hentikan aksi kini" + +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "membelokkan kura-kura searah dengan jarum jam (sudut dalam derajat)" + +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "memuat level kelabu kini (dapat dipakai sebagai pengganti blok angka)" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "operator logika kurang-dari" + +#: TurtleArt/tabasics.py:226 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"membagi masukan numerik atas (numerator) dengan masukan numerik bawah " -"(denominator)" +"menyimpan nilai koordinat x kura-kura saat ini (dapat dipakai menggantikan " +"blok angka)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identitas" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "mengatur warna dari garis yang digambar oleh kura-kura" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "operator identitas dipakai untuk memperluas blok" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "atur warna teks" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "nomor" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "operator modulus (sisa)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "atur gradasi" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "putih" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "akar kuadrat" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "sambungkan aksi dengan tombol-tombol run di toolbar" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "menghitung akar kuadrat" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "minus" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "acak" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "dan" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "memuat ukuran pena kini (dapat dipakai menggantikan blok angka)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "atur warna" #: TurtleArt/tabasics.py:646 msgid "min" msgstr "min" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palet perintah pena" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +#, fuzzy +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operator if-then-else yang menggunakan operator boolean dari palet Angka" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "operator logika NOT" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palet operator numerik" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "kali" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "selamanya" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "mengatur gradasi dari garis yang digambar oleh kura-kura" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "bersihkan" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "teks" + #: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "maks" +msgid "random" +msgstr "acak" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "operator logika lebih-dari" + +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" -"mengembalikan bilangan acak antara nilai minimum (atas) dan maksimum (bawah)" +"membelokkan kura-kura berlawanan arah dengan jarum jam (sudut dalam derajat)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "nomor" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "hitam" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "dipakai sebagai masukan numerik dalam operator matematis" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "menghitung akar kuadrat" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"menyimpan nilai koordinat y kura-kura saat ini (dapat dipakai menggantikan " +"blok angka)" #: TurtleArt/tabasics.py:671 msgid "greater than" msgstr "lebih dari" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "operator logika lebih-dari" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "kurang dari" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "mengatur warna teks yang digambar oleh kura-kura" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "operator logika kurang-dari" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "lengkung" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "jari-jari" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "atur gradasi" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "operator logika AND" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "mengatur arah gerak kura-kura (0 mengarah ke puncak layar.)" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Judul:" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palet dari blok variabel" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "dipakai sebagai masukan numerik dalam operator matematis" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "menambahkan dua masukan alfanumerik" #: TurtleArt/tabasics.py:695 msgid "equal" msgstr "sama dengan" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Kura-kura tak akan menggambar ketika dipindah." + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "ukuran pena" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "memindahkan kura-kura mengikuti lengkungan" + #: TurtleArt/tabasics.py:699 msgid "logical equal-to operator" msgstr "operator logika sama-dengan" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "bukan" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palet warna pena" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "operator logika NOT" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "menggerakkan kura-kura mundur" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "dan" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "mengatur ukuran garis yang digambar oleh kura-kura" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "operator logika AND" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "jika" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "memindahkan kura-kura ke posisi xcor, ycor; (0, 0) ada di pusat layar." + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#, fuzzy +msgid "action 2" +msgstr "aksi" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +#, fuzzy +msgid "action 1" +msgstr "aksi" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "akhir memenuhi" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Salin" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "bersihkan" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "sudut" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "kiri" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "mengurangkan masukan numerik bawah dari masukan numerik atas" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "membersihkan layar dan mereset kura-kura" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palet perintah kura-kura" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "pengulangan selamanya" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Seni Kura-kura" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "spasi vertikal" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "melengkapi poligon terisi (dipakai dengan blok isi awal)" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "kurang dari" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "akar kuadrat" + +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "atur kelabu" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "ungu" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Kura-kura akan menggambar ketika dipindah." + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" #: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 msgid "or" msgstr "atau" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "operator identitas dipakai untuk memperluas blok" + +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "mengatur ukuran teks yang digambar oleh kura-kura" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"menyimpan nilai arah gerak kura-kura saat ini (dapat dipakai menggantikan " +"blok angka)" + +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"mengembalikan bilangan acak antara nilai minimum (atas) dan maksimum (bawah)" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "memuat warna pena kini (dapat dipakai sebagai pengganti blok angka)" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "mulai" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "menggerakkan kura-kura maju" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "maju" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "mundur" + #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "operator logika OR" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palet operator-operator aliran" - -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "tunggu" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "mengulang sejumlah yang dinyatakan" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "mengistirahatkan eksekusi program selama sekian detik yang dinyatakan" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "atur xy" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "selamanya" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "penuhi layar" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "pengulangan selamanya" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "atur xy" #: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 msgid "repeat" msgstr "ulangi" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "mengulang sejumlah yang dinyatakan" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Sunting" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "jika" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"membagi masukan numerik atas (numerator) dengan masukan numerik bawah " +"(denominator)" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "maka" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "maks" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "jika maka" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "mulai memenuhi" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "operator if-then yang menggunakan operator boolean dari palet Angka" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"Kura-kura terinspirasi Logo yang melukis gambar berwarna-warni dengan blok-" +"blok pemrograman visual yang tergabung bersama" + +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "kanan" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "merah" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identitas" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" #: TurtleArt/tabasics.py:789 msgid "else" @@ -527,71 +2146,14 @@ msgstr "" msgid "if then else" msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "" -"operator if-then-else yang menggunakan operator boolean dari palet Angka" - -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "spasi horizontal" - #: TurtleArt/tabasics.py:812 msgid "jogs stack right" msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "spasi vertikal" - #: TurtleArt/tabasics.py:820 msgid "jogs stack down" msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "hentikan aksi" - -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "hentikan aksi kini" - -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palet dari blok variabel" - -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "mulai" - -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "sambungkan aksi dengan tombol-tombol run di toolbar" - -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "teks" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "nilai string" - -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "aksi" - #: TurtleArt/tabasics.py:865 msgid "top of nameable action stack" msgstr "" @@ -640,10 +2202,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -659,20 +2217,10 @@ msgstr "" msgid "named variable (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -#, fuzzy -msgid "action 1" -msgstr "aksi" - #: TurtleArt/tabasics.py:958 msgid "top of Action 1 stack" msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -#, fuzzy -msgid "action 2" -msgstr "aksi" - #: TurtleArt/tabasics.py:967 msgid "top of Action 2 stack" msgstr "" @@ -718,19 +2266,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "judul" - #: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 msgid "Stop turtle" @@ -786,11 +2321,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "teks" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -806,10 +2336,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Seni Kura-kura" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" @@ -858,11 +2384,6 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Sunting" - #: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 #: TurtleArtActivity.py:747 turtleblocks.py:382 msgid "View" @@ -877,10 +2398,6 @@ msgstr "" msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Salin" - #: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 msgid "Paste" msgstr "" @@ -919,11 +2436,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "bersihkan" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" @@ -1083,10 +2595,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Judul:" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1125,11 +2633,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1156,13 +2659,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1189,15 +2685,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1229,29 +2716,11 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#, fuzzy -msgid "while" -msgstr "putih" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -#, fuzzy -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operator if-then-else yang menggunakan operator boolean dari palet Angka" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 msgid "until" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#, fuzzy -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operator if-then-else yang menggunakan operator boolean dari palet Angka" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 @@ -1309,11 +2778,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "atur gradasi" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1469,10 +2933,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1637,11 +3097,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "atur xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1722,10 +3177,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1738,10 +3189,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1916,21 +3363,5 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "density" -#~ msgstr "identitas" - -#, fuzzy -#~ msgid "light" -#~ msgstr "kanan" - -#, fuzzy #~ msgid "grey" #~ msgstr "kelabu" - -#, fuzzy -#~ msgid "read" -#~ msgstr "merah" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" diff --git a/po/ig.po b/po/ig.po index 24d1389..f089031 100644 --- a/po/ig.po +++ b/po/ig.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ig.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ig.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ig.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ig.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/is.po b/po/is.po index 2dc7bf8..4c55b9e 100644 --- a/po/is.po +++ b/po/is.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# is.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# is.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# is.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# is.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/it.po b/po/it.po index 386cf6c..1d6e466 100644 --- a/po/it.po +++ b/po/it.po @@ -1,13 +1,50 @@ +# #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,520 +59,1742 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Pannello comandi tartaruga" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "avanti" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "muove tartaruga avanti" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "indietro" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "muove tartaruga indietro" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "pulisci" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "Pulisci lo schermo e riposiziona la tartaruga" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "sinistra" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "ruota tartaruga in senso antiorario (in gradi)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "destra" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "ruota tartaruga in senso orario (in gradi)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arco" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "angolo" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "raggio" +#: taextras.py:86 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 "resistenza" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "muove la tartaruga lungo un arco" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "seleziona xy" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "Paletta dei blocchi sensori" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "altezza" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "larghezza" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -"muove la tartaruga alle coordinate xcor, ycor; (0,0) è il centro dello " -"schermo." -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seleziona direzione" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "seleziona la direzione della tartaruga (0 è verso l'alto)" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "coordinata x" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "identità" + +#: taextras.py:267 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -"ricorda la coordinata x (ascissa) della tartaruga (può essere utilizzato in " -"alternativa ad un blocco variabile numerico)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "coordinata y" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:270 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"ricorda la coordinata y (ordinata) della tartaruga (può essere utilizzato in " -"alternativa ad un blocco variabile numerico)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "direzione" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:274 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -"ricorda la direzione della tartaruga (può essere utilizzato in alternativa " -"ad un blocco variabile numerico)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Pannello comandi penna" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "riempi schermo" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "Paletta dei blocchi sensori" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "colore" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "ombreggiatura" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "destra" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "riempi lo sfondo con (colore, ombreggiatura)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "suono" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:320 +#, fuzzy +msgid "grey" msgstr "grigio" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "seleziona colore" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "seleziona il colore della linea disegnata dalla tartaruga" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "seleziona ombreggiatura" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "seleziona l'ombreggiatura della linea disegnata dalla tartaruga" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "seleziona grigio" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "seleziona illivello di grigio della linea disegnata dalla tartaruga" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" msgstr "" -"ricorda il colore della penna (può essere utilizzato in alternativa ad un " -"blocco variabile numerico)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "mantiene l'ombreggiatura corrente della penna" +#: taextras.py:329 +msgid "NXT not found" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" msgstr "" -"ricorda il livello di grigio (può essere utilizzato in alternativa ad un " -"blocco numerico)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "penna su" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "La tartaruga non disegnerà quando mossa." +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "penna giù" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "la tartaruga disegnerà quando spostata." +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "seleziona dimensione penna" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "seleziona la larghezza della linea disegnata dalla tartaruga" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "avvia riempimento" +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:338 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "termina riempimento" +#: taextras.py:339 +msgid "frequency" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "dimensione penna" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" msgstr "" -"ricorda la dimensione della penna (può essere utilizzato in alternativa ad " -"un blocco variabile numerico)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Tavolozza per i colori della penna" +#: taextras.py:344 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +#, fuzzy +msgid "read" msgstr "rosso" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "arancio" +#: taextras.py:370 +#, fuzzy +msgid "sensor" +msgstr "" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"sensori" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "giallo" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "verde" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "ciano" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blu" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "porpora" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "bianco" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "nero" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "imposta colore del testo" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "seleziona il colore del testo disegnato dalla tartaruga" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "seleziona dimensione testo" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: TurtleArt/tabasics.py:474 +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 #, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "seleziona la dimensione del testo disegnato dalla tartaruga" +msgid "mode" +msgstr "mod" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Pannello degli operatori numerici" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "più" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "aggiunge due campi di inserimento numerici" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "valore" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "meno" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "sottrai il valore del campo numerico inferiore da quello superiore" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "moltiplica" +#: taextras.py:424 +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 "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "moltiplica fra loro i valori dei due campi" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "dividi" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "Paletta dei blocchi sensori" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" msgstr "" -"dividi il valore del campo numerico superiore (numeratore) per quello del " -"campo inferiore (denominatore)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identità" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "operatore identità utilizzato per i blocchi programmabili" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "operatore modulo (resto)" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" +#: taextras.py:465 +msgid "capture" msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "radice quadrata" +#: taextras.py:466 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "calcola la radice quadrata" +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-#\n" +"Esempi" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "casuale" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:474 +msgid "read analog input 1 voltage" msgstr "" -"ritorna un valore casuale compreso fra valori minimo (alto) e massimo " -"(basso)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "numero" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "Utilizza come valore di ingresso per operatori matematici" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "maggiore di" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "operatore logico maggiore di" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "minore di" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "operatore logico miniore di" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "uguale" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "operatore logico di uguaglianza" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "not" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "operatore logico NOT" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "and" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "operatore logico AND" +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "or" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "operatore logico OR" +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Pannello degli operatori di flusso" +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Titolo" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "giallo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "visualizza coordinate polari" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "vuota catasta FILO (first-in-last-out )" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"operatore if-then che utilizza operatori booleani del pannello dei Numeri" + +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "sposta la pila a destra" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "oggetto multimediale del Diario di Sugar" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "scatola 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "scatola 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Passo" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "moltiplica fra loro i valori dei due campi" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Mostra/Nascondi blocchi" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Nascondi pannello" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +#, fuzzy +msgid "Sugar Journal video object" +msgstr "oggetto audio del Diario di Sugar" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "ciano" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "ascissa (xcor) del bordo destro dello schermo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Pannello opzioni extra" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Impossibile scrivere nella directory di configurazione:%s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "direzione" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "salva i disegni della tartaruga come file SVG nel Diario" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "disegna un testo o mostra un contenuto multimediale dal Diario" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blu" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "visualizza le coordinate cartesiane" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Azione senza opzioni:" + +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "sposta la sequenza in basso" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "operatore modulo (resto)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "fondo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "salva SVG" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "esegui il codice scritto nel modulo tamyblock.py prelevato dal Diario" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "penna giù" #: TurtleArt/tabasics.py:743 msgid "wait" msgstr "aspetta" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "scatola" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "caricamento non riuscito" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "invoca la sequenza di azioni con nome" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "azione" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -"sospende l'esecuzzione del programma per il numero di secondi speceficato" +"operatore do-until-True che utilizza operatori booleani del pannello dei " +"Numeri" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "persempre" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "L'utilizzo è" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "ciclo infinito" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variabile 2 (valore numerico)" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "ripeti" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "dividi" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "ciclo ripetuto un numero dato di volte" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "nome Immagine" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "se" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "while" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "allora" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "larghezza canvas (sfondo)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "vuota heap" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "variabile con nome (valore numerico)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "prossimo" #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "se allora" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "seleziona dimensione penna" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" msgstr "" -"operatore if-then che utilizza operatori booleani del pannello dei Numeri" +"template di presentazione: selezione oggetto del Diario (senza descrizione)" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "altrimenti" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "finoa" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "se allora invece" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "Cancella definitivamente il contenuto del cestino" + +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "inizio dello Stack Azione 1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"blocco programmabile: utilizzato per aggiungere funzioni matematiche " +"avanzate a singola variabile, es. sin(x)" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Pannello degli operatori di flusso" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "apice di una catasta compressa" #: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 msgid "if-then-else operator that uses boolean operators from Numbers palette" @@ -543,42 +1802,406 @@ msgstr "" "operatore if-then-else (se-allora-altrimenti) che utilizza operatori " "booleani del pannello dei Numeri" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "mantiene l'ombreggiatura corrente della penna" + +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Login non riuscito" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seleziona direzione" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "il colore RGB sotto la tartaruga è inserito nello stack" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "svuota il canvas nascondendo i blocchi" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "D" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + #: TurtleArt/tabasics.py:811 msgid "horizontal space" msgstr "spazio orizzontale" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "sposta la pila a destra" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "valore stringa" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "spazio verticale" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +#, fuzzy +msgid "description" +msgstr "Descrizione" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "sposta la sequenza in basso" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Non so come fare a" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "seleziona dimensione testo" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Nome utente:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "template di presentazione: seleziona quattro oggetti del Diario" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Vista" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "seleziona illivello di grigio della linea disegnata dalla tartaruga" + +#: gnome_plugins/uploader_plugin.py:109 +#, fuzzy +msgid "Password:" +msgstr "Password:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "tartaruga vede" #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "ferma azione" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "verde" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "ombreggiatura" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "riempi lo sfondo con (colore, ombreggiatura)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "salva immagine" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "intonazione" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Ridimensiona le coordinate su" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "penna su" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "arancio" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "" +"sospende l'esecuzzione del programma per il numero di secondi speceficato" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "spingi un valore nella heap FILO (first-in last-out)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "allora" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "not" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "se allora invece" + #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "Ferma l'azione in corso" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Pannello dei blocchi variabili" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "ruota tartaruga in senso orario (in gradi)" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "avvia" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"ricorda il livello di grigio (può essere utilizzato in alternativa ad un " +"blocco numerico)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "ascissa (xcor) del bordo sinistro dello schermo" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Reset dimensione blocco" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "tartaruga" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "visualizza la prossima paletta" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "nascondi blocchi" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "operatore logico miniore di" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "recupera tutti i bloccchi dal cestino" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Salva" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "memorizza nella scatola 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "memorizza nella scatola 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "nasconde le barre di Sugar" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"ricorda la coordinata x (ascissa) della tartaruga (può essere utilizzato in " +"alternativa ad un blocco variabile numerico)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "stampa" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Salva come Logo" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "seleziona il colore della linea disegnata dalla tartaruga" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "imposta colore del testo" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "numero" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "interroga la tastiera" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "cima" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Invia al Web" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Coordinate Cartesiane" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "seleziona scala" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "bianco" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "connette l'azione al pulsante \"esegui\" della barra dei comandi" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Annulla" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "altezza canvas (sfondo)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "presentazione 2x1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "meno" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "and" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "apice di una catasta comprimibile" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "come ingresso" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"ricorda la dimensione della penna (può essere utilizzato in alternativa ad " +"un blocco variabile numerico)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "seleziona colore" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "carica i miei blocchi" + +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Pannello comandi penna" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "mostra un valore nella heap FILO (first-in last-out)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operatore do-while-True che utilizza operatori booleani del pannello dei " +"Numeri" + +#: turtleblocks.py:363 +msgid "File" +msgstr "File" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "operatore logico NOT" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ordinata (ycor) del bordo inferiore dello schermo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "" +"template di presentazione: selezione oggetto del Diario (con descrizione)" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Pannello degli operatori numerici" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "moltiplica" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "persempre" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "seleziona l'ombreggiatura della linea disegnata dalla tartaruga" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "istantanea" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "pulisci" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "template di presentazione: seleziona due oggetti del Diario" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Ingrandisci blocchi" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Schermo intero" + +#: turtleblocks.py:255 +msgid "File not found" +msgstr "File non trovato" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "mostra" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -590,70 +2213,593 @@ msgstr "connette l'azione al pulsante \"esegui\" della barra dei comandi" msgid "text" msgstr "testo" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "valore stringa" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "casuale" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "azione" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "operatore logico maggiore di" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "inizio della sequenza di azioni con nome" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "ruota tartaruga in senso antiorario (in gradi)" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "invoca la sequenza di azioni con nome" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "nero" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "memorizza nella scatola 1" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "calcola la radice quadrata" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"ricorda la coordinata y (ordinata) della tartaruga (può essere utilizzato in " +"alternativa ad un blocco variabile numerico)" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "cima" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "maggiore di" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "coordinata x" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Aiuto" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "Vuoi salvare il progetto?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "sceglie con quale tartaruga interagire" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "seleziona il colore del testo disegnato dalla tartaruga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "tastiera" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arco" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "raggio" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Coordinate Polari" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "seleziona ombreggiatura" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "operatore logico AND" + +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Devi avere un account presso http://turtleartsite.sugarlabs.org per poter " +"caricare il tuo progetto." + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Esegui" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "mostra heap" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "seleziona la direzione della tartaruga (0 è verso l'alto)" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "volume ingresso microfono" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Titolo:" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "recupera tutti i bloccchi dal cestino" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Pannello dei blocchi variabili" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "Utilizza come valore di ingresso per operatori matematici" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "presentazione 2x2" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variabile 1 (valore numerico)" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "aggiunge due campi di inserimento numerici" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "uguale" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "altrimenti" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "non piace" + +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Hai del lavoro non salvato: vuoi salvare le modifiche prima di uscire?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "recupera i blocchi nascosti" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "La tartaruga non disegnerà quando mossa." + +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "pop" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "dimensione penna" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "guscio tartaruga" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "muove la tartaruga lungo un arco" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "operatore logico di uguaglianza" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Tavolozza per i colori della penna" #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "memorizza il valore numerico nella Variabile 1" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "memorizza nella scatola 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "memorizza il valore numerico nella Variabile 2" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "scatola 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "metti un 'guscio' personalizzato alla tartaruga" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variabile 1 (valore numerico)" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "muove tartaruga indietro" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "scatola 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ordinata (ycor) del bordo superiore dello schermo" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variabile 2 (valore numerico)" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Mostra blocchi" + +#: pysamples/grecord.py:219 +#, fuzzy +msgid "save" +msgstr "Salva" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "colori" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "seleziona la larghezza della linea disegnata dalla tartaruga" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Apri" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientamento" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "coordinata y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"blocco programmabile: utilizzato per aggiungere funzioni matematiche multi-" +"variabili, es., sqrt(x*x+y*y)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "se" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"muove la tartaruga alle coordinate xcor, ycor; (0,0) è il centro dello " +"schermo." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stop" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "azione 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "azione 1" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "termina riempimento" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copia" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Incolla" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "non ho scritto su" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Esporta su web" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "vuota heap" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "estrai un valore dalla heap FILO (first-in last-out)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Pulisci" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Pannello strutture / template per presentazioni" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "angolo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Strumenti" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "sinistra" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "commento" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "sottrai il valore del campo numerico inferiore da quello superiore" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "interrogazione da tastiera (i risultati sono in blocco tastiera)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesiano" + +#: 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 "voltaggio" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "Pulisci lo schermo e riposiziona la tartaruga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "ritorna il colore che la tartaruga \"vede\"" + +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "invoca la sequenza Azione 1" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Pannello comandi tartaruga" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "ciclo infinito" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "mostra allineati" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Progetto" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debug" + +#: gnome_plugins/collaboration_plugin.py:300 +#, fuzzy +msgid "Password" +msgstr "Password" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "spazio verticale" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "minore di" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "radice quadrata" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Ridimensiona coordinate" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "mostra blocchi" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Esci" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "campo descrittivo del Diario di Sugar" + +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "seleziona grigio" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "lista per punti per presentazione" + +#: turtleblocks.py:354 +msgid "New" +msgstr "Nuovo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "mette un commento nel codice" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "leggi pixel" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "scala" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "fondo" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "porpora" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Ridimensiona le coordinate giù" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "click per aprire" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "intonazione ingresso microfono" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Descrizione:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "diario" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "svuota cestino" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "la tartaruga disegnerà quando spostata." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "oggetto audio del Diario di Sugar" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Ferma la tartaruga" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Tartaruga" + +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "Cambia l'orientamento del pannello dei blocchi" #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "memorizza in" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "scatola" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Nascondi blocchi" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "valore" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "più" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "or" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "template di presentazione: lista per punti" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "operatore identità utilizzato per i blocchi programmabili" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Rimpicciolisci blocchi" + +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "seleziona la dimensione del testo disegnato dalla tartaruga" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"ricorda la direzione della tartaruga (può essere utilizzato in alternativa " +"ad un blocco variabile numerico)" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "immagine" + +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"ritorna un valore casuale compreso fra valori minimo (alto) e massimo (basso)" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"ricorda il colore della penna (può essere utilizzato in alternativa ad un " +"blocco variabile numerico)" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "mostra pannello" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "Salva una immagine nel Diario di Sugar" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Salva snapshot" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "avvia" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "muove tartaruga avanti" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "avanti" #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 @@ -662,120 +2808,208 @@ msgstr "valore" msgid "my box" msgstr "mia scatola" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "memorizza il valore numerico nella variabile nominata" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "indietro" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "variabile con nome (valore numerico)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "seleziona la scala di visualizzazione del contributo" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "azione 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "mantiene il valore di scala corrente" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "inizio dello Stack Azione 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "presentazione 1x1" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "azione 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "presentazione 1x2" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "inizio dello Stack Azione 2" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "inizio della sequenza di azioni con nome" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "invoca la sequenza Azione 1" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "memorizza il valore numerico nella variabile nominata" + +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "operatore logico OR" + +#: 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 +#, fuzzy +msgid "microphone input voltage" +msgstr "volume ingresso microfono" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "ciclo ripetuto un numero dato di volte" #: TurtleArt/tabasics.py:987 msgid "invokes Action 2 stack" msgstr "invoca la sequenza Azione 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "seleziona xy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "titolo y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "titolo x" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "riempi schermo" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Salva come" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "seleziona xy" + #: TurtleArt/tabasics.py:995 msgid "trash" msgstr "spazzatura" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "svuota cestino" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polare" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "Cancella definitivamente il contenuto del cestino" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "ripeti" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Salva come immagine" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Modifica" + +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "inizio dello Stack Azione 2" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"dividi il valore del campo numerico superiore (numeratore) per quello del " +"campo inferiore (denominatore)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "stampa il valore nel blocco di stato in basso" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "avvia riempimento" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "conserva i risultati del blocco interrogazione da tastiera" + +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# it.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "spingi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"blocco programmabile: utilizzato per aggiungere funzioni matematiche " +"avanzate multi-variabile, es. sin(x+y+z)" #: TurtleArt/tabasics.py:1004 msgid "restore all" msgstr "ripristina tutti" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "recupera tutti i bloccchi dal cestino" - -#: TurtleArt/tabasics.py:1009 -msgid "clear all" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "destra" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Titolo" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "grigio" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Ferma la tartaruga" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Mostra blocchi" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Nascondi blocchi" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "rosso" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "non ho scritto su" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identità" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Non so come fare a" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "non piace" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "come ingresso" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "visualizza la prossima paletta" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "Cambia l'orientamento del pannello dei blocchi" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" #: TurtleArt/tautils.py:196 msgid "Load..." @@ -785,19 +3019,6 @@ msgstr "" msgid "Save..." msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "click per aprire" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientamento" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "prossimo" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -813,33 +3034,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "immagine" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Salva come Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Salva come immagine" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "istantanea" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Salva snapshot" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -849,104 +3043,20 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "mostra pannello" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Nascondi pannello" - -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Ridimensiona le coordinate giù" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Ridimensiona le coordinate su" - -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Modifica" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Vista" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Progetto" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copia" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Incolla" - -#: TurtleArtActivity.py:591 -#, fuzzy -msgid "Restore blocks from trash" -msgstr "recupera tutti i bloccchi dal cestino" - -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Schermo intero" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Coordinate Cartesiane" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Coordinate Polari" - #: TurtleArtActivity.py:601 TurtleArtActivity.py:753 msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Ingrandisci blocchi" - -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Rimpicciolisci blocchi" - #: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 #: TurtleArtActivity.py:832 msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Pulisci" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Esegui" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Passo" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Aiuto" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stop" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -967,26 +3077,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "D" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -1050,20 +3140,10 @@ msgstr "" msgid "Port" msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -#, fuzzy -msgid "Password" -msgstr "Password" - #: gnome_plugins/collaboration_plugin.py:302 msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "colori" - #: 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 @@ -1074,51 +3154,6 @@ msgstr "" msgid "Facebook wall post" msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Esporta su web" - -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"Devi avere un account presso http://turtleartsite.sugarlabs.org per poter " -"caricare il tuo progetto." - -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Nome utente:" - -#: gnome_plugins/uploader_plugin.py:109 -#, fuzzy -msgid "Password:" -msgstr "Password:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Titolo:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Descrizione:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Invia al Web" - -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Annulla" - -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Login non riuscito" - -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "caricamento non riuscito" - #: plugins/accelerometer/accelerometer.py:49 #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 @@ -1137,11 +3172,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "suono" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1152,29 +3182,6 @@ msgstr "" msgid "loudness" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "volume ingresso microfono" - -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "intonazione" - -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "intonazione ingresso microfono" - -#: 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 "resistenza" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1182,35 +3189,11 @@ msgstr "resistenza" msgid "microphone input resistance" msgstr "" -#: 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 "voltaggio" - -#: 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 -#, fuzzy -msgid "microphone input voltage" -msgstr "volume ingresso microfono" - #: plugins/camera_sensor/camera_sensor.py:67 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1242,124 +3225,10 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "while" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operatore do-while-True che utilizza operatori booleani del pannello dei " -"Numeri" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "finoa" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operatore do-until-True che utilizza operatori booleani del pannello dei " -"Numeri" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "cima" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "apice di una catasta comprimibile" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "diario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "oggetto multimediale del Diario di Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "oggetto audio del Diario di Sugar" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "oggetto audio del Diario di Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -#, fuzzy -msgid "description" -msgstr "Descrizione" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "campo descrittivo del Diario di Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "mostra" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "disegna un testo o mostra un contenuto multimediale dal Diario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "mostra allineati" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "seleziona scala" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "seleziona la scala di visualizzazione del contributo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "salva immagine" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "nome Immagine" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "Salva una immagine nel Diario di Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "salva SVG" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "salva i disegni della tartaruga come file SVG nel Diario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "scala" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "mantiene il valore di scala corrente" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 msgid "media wait" msgstr "" @@ -1450,113 +3319,15 @@ msgstr "" msgid "returns mouse y coordinate" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "interroga la tastiera" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "interrogazione da tastiera (i risultati sono in blocco tastiera)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "tastiera" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "conserva i risultati del blocco interrogazione da tastiera" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "leggi pixel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "il colore RGB sotto la tartaruga è inserito nello stack" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "tartaruga vede" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "ritorna il colore che la tartaruga \"vede\"" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Pannello opzioni extra" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "spingi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "spingi un valore nella heap FILO (first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "mostra heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "mostra un valore nella heap FILO (first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "vuota heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "vuota catasta FILO (first-in-last-out )" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "pop" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "estrai un valore dalla heap FILO (first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "vuota heap" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "commento" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "mette un commento nel codice" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "stampa" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "stampa il valore nel blocco di stato in basso" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 msgid "Python chr operator" msgstr "" @@ -1565,105 +3336,18 @@ msgstr "" msgid "Python int operator" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"blocco programmabile: utilizzato per aggiungere funzioni matematiche " -"avanzate a singola variabile, es. sin(x)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"blocco programmabile: utilizzato per aggiungere funzioni matematiche multi-" -"variabili, es., sqrt(x*x+y*y)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"blocco programmabile: utilizzato per aggiungere funzioni matematiche " -"avanzate multi-variabile, es. sin(x+y+z)" - #: 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:653 msgid "Python block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "esegui il codice scritto nel modulo tamyblock.py prelevato dal Diario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesiano" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "visualizza le coordinate cartesiane" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polare" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "visualizza coordinate polari" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "tartaruga" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "sceglie con quale tartaruga interagire" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "guscio tartaruga" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "metti un 'guscio' personalizzato alla tartaruga" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "apice di una catasta compressa" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "carica i miei blocchi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "seleziona xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1672,112 +3356,10 @@ msgstr "" msgid "selects a palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Pannello strutture / template per presentazioni" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "nascondi blocchi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "svuota il canvas nascondendo i blocchi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "mostra blocchi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "recupera i blocchi nascosti" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "nasconde le barre di Sugar" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 msgid "list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "lista per punti per presentazione" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "template di presentazione: lista per punti" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "" -"template di presentazione: selezione oggetto del Diario (senza descrizione)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "" -"template di presentazione: selezione oggetto del Diario (con descrizione)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "template di presentazione: seleziona quattro oggetti del Diario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "template di presentazione: seleziona due oggetti del Diario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "ascissa (xcor) del bordo sinistro dello schermo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "fondo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ordinata (ycor) del bordo inferiore dello schermo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "larghezza" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "larghezza canvas (sfondo)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "ascissa (xcor) del bordo destro dello schermo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ordinata (ycor) del bordo superiore dello schermo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "altezza" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "altezza canvas (sfondo)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "titolo x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "titolo y" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 msgid "left x" msgstr "" @@ -1790,28 +3372,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "fondo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "presentazione 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "presentazione 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "presentazione 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "presentazione 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1839,20 +3399,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "cima" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "Salva" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1865,124 +3415,10 @@ msgstr "" msgid "make a uturn" msgstr "" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "L'utilizzo è" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Azione senza opzioni:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "File non trovato" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Impossibile scrivere nella directory di configurazione:%s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Nuovo" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Apri" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Salva" - -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Salva come" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Esci" - -#: turtleblocks.py:363 -msgid "File" -msgstr "File" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Ridimensiona coordinate" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Reset dimensione blocco" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Mostra/Nascondi blocchi" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Strumenti" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debug" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Tartaruga" - #: turtleblocks.py:407 msgid "About..." msgstr "" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Hai del lavoro non salvato: vuoi salvare le modifiche prima di uscire?" - -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "Vuoi salvare il progetto?" - -#, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "Paletta dei blocchi sensori" - -#, fuzzy -#~ msgid "density" -#~ msgstr "identità" - -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Paletta dei blocchi sensori" - -#, fuzzy -#~ msgid "light" -#~ msgstr "destra" - -#, fuzzy -#~ msgid "grey" -#~ msgstr "grigio" - -#, fuzzy -#~ msgid "read" -#~ msgstr "rosso" - -#, fuzzy -#~ msgid "sensor" -#~ msgstr "sensori" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" - -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Paletta dei blocchi sensori" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Esempi" - #, fuzzy #~ msgid "Palette of Arduino blocks" #~ msgstr "Paletta dei blocchi sensori" @@ -2045,7 +3481,8 @@ msgstr "Vuoi salvare il progetto?" #~ msgid "restore last" #~ msgstr "ripristina ultimo" -#~ 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 "" #~ "blocco programmabile: utilizzato per aggiungere funzioni matematiche " #~ "avanzate, es., sin(x)" @@ -2108,8 +3545,8 @@ msgstr "Vuoi salvare il progetto?" #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "" -#~ "ricorda la dimensione del testo (può essere utilizzato in alternativa ad un " -#~ "blocco variabile numerico)" +#~ "ricorda la dimensione del testo (può essere utilizzato in alternativa ad " +#~ "un blocco variabile numerico)" #~ msgid "extras" #~ msgstr "extra" @@ -2146,14 +3583,15 @@ msgstr "Vuoi salvare il progetto?" #~ msgid "holds current pen shade (can be used in place of a number block)" #~ msgstr "" -#~ "ricorda l'ombreggiatura della penna (può essere utilizzato in alternativa ad " -#~ "un blocco variabile numerico)" +#~ "ricorda l'ombreggiatura della penna (può essere utilizzato in alternativa " +#~ "ad un blocco variabile numerico)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" -#~ "blocco programmabile: inserisci la tua equazione matematica nel blocco, es. " -#~ "sin(x)" +#~ "blocco programmabile: inserisci la tua equazione matematica nel blocco, " +#~ "es. sin(x)" #~ msgid "pop value off FILO" #~ msgstr "estrai un valore dalla heap FILO (first-in last-out)" diff --git a/po/ja.po b/po/ja.po index 9346b69..9eb9b28 100644 --- a/po/ja.po +++ b/po/ja.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,140 +43,1902 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -#, fuzzy -msgid "Palette of turtle commands" -msgstr "タートルについての命令のパレット" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" msgstr "" -#: TurtleArt/tabasics.py:132 -#, fuzzy -msgid "moves turtle forward" -msgstr "タートルを前に進める" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" +#: taextras.py:76 +msgid "returns the value of the resistance" msgstr "" -#: TurtleArt/tabasics.py:143 -#, fuzzy -msgid "moves turtle backward" -msgstr "タートルを後ろに進める" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "消去" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -#, fuzzy -msgid "clears the screen and reset the turtle" -msgstr "画面を消去してタートルをリセットする" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" +#: taextras.py:80 +msgid "ambient light" msgstr "" -#: TurtleArt/tabasics.py:166 -#, fuzzy -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "タートルを反時計周りに回す(度単位)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" +#: taextras.py:82 taextras.py:291 +msgid "distance" msgstr "" -#: TurtleArt/tabasics.py:178 -#, fuzzy -msgid "turns turtle clockwise (angle in degrees)" -msgstr "タートルを時計周りに回す(度単位)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" +#: taextras.py:84 +msgid "magnetic induction" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" +#: taextras.py:85 +msgid "vibration" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" +#: taextras.py:86 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 "" -#: TurtleArt/tabasics.py:190 -#, fuzzy -msgid "moves turtle along an arc" -msgstr "円弧に沿ってタートルを動かす" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" +#: taextras.py:88 +msgid "refresh Butia" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 #, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ja.po (PACKAGE VERSION) #-#-#-#-#\n" +"サンプル" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "タートルをx,y座標の場所に移動する; (0, 0)が画面の中心です" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:213 -msgid "set heading" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" msgstr "" -#: TurtleArt/tabasics.py:217 +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugarのジャーナル中のメディアオブジェクト" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "ステップ実行" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "2つの入力数値を掛け算します" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "パレットを非表示にする" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 #, fuzzy -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "タートルの頭の向きを設定する(0は画面の上方向)" +msgid "Sugar Journal video object" +msgstr "Sugarのジャーナル中の音声" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "画面右端のx座標値" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +#, fuzzy +msgid "Palette of extra options" +msgstr "追加オプションのパレット" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +#, fuzzy +msgid "draws text or show media from the Journal" +msgstr "テキストを描画するか、ジャーナルからメディアオブジェクトを表示する" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "剰余演算子" + +#: TurtleArt/tabasics.py:922 +#, fuzzy +msgid "Variable 2 (numeric value)" +msgstr "変数2 (数値)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "キャンバスの幅" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "名前つき変数(数値)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" msgstr "" +"プレゼンテーションテンプレート: ジャーナルのオブジェクトを選ぶ(説明なし)" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#, fuzzy +msgid "Palette of flow operators" +msgstr "処理の流れを制御するブロックのパレット" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#, fuzzy +msgid "declutters canvas by hiding blocks" +msgstr "ブロックを隠してキャンバスをすっきりさせます" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "文字列値" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを4つ選ぶ" + +#: TurtleArt/tabasics.py:340 +#, fuzzy +msgid "sets gray level of the line drawn by the turtle" +msgstr "タートルが描画する線の影を設定します" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "背景を(色、影)で塗りつぶします" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +#, fuzzy +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "FILO(先入れ後だし)のヒープに値を入れる" + +#: TurtleArt/tabasics.py:178 +#, fuzzy +msgid "turns turtle clockwise (angle in degrees)" +msgstr "タートルを時計周りに回す(度単位)" + +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" +msgstr "現在の表示倍率の値を保持します(数値ブロックの代わりに使えます)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "画面左端のx座標値" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +#, fuzzy +msgid "hide blocks" +msgstr "ブロックを非表示にする" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "「小なり」の比較演算子" #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" -msgstr "現在のタートルのx座標の値を保持します (数値ブロックの代わりに使えます)" +msgstr "" +"現在のタートルのx座標の値を保持します (数値ブロックの代わりに使えます)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "LOGOプログラムとして保存" + +#: TurtleArt/tabasics.py:317 +#, fuzzy +msgid "sets color of the line drawn by the turtle" +msgstr "タートルが描画する線の色を設定します" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "ステップ実行" + +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "アクションをツールバーの実行ボタンに結びつける" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "キャンバスの高さ" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "現在のペンの大きさを保持します(数値ブロックの代わりに使えます)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "私のブロックを読み込む" + +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "ペンについての命令のパレット" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +#, fuzzy +msgid "shows values in FILO (first-in last-out heap)" +msgstr "FILO(先入れ後だし)のヒープに値を入れる" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "論理否定演算子" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "画面下端のy座標値" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" msgstr "" +"プレゼンテーションテンプレート: ジャーナルオブジェクトを選ぶ(説明つき)" + +#: TurtleArt/tabasics.py:557 +#, fuzzy +msgid "Palette of numeric operators" +msgstr "数値演算子のパレット" + +#: TurtleArt/tabasics.py:329 +#, fuzzy +msgid "sets shade of the line drawn by the turtle" +msgstr "タートルが描画する線の影を設定します" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "消去" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを2つ選ぶ" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "ブロックを表示" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "全画面" + +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "「大なり」の比較演算子" + +#: TurtleArt/tabasics.py:166 +#, fuzzy +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "タートルを反時計周りに回す(度単位)" + +#: TurtleArt/tabasics.py:639 +#, fuzzy +msgid "calculates square root" +msgstr "平方根を計算します" #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" -msgstr "現在のタートルのy座標の値を保持します(数値ブロックの代わりに使えます)" - -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" msgstr "" +"現在のタートルのy座標の値を保持します(数値ブロックの代わりに使えます)" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "ステップ実行" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "ヘルプ" + +#: TurtleArt/tabasics.py:463 +#, fuzzy +msgid "sets color of text drawn by the turtle" +msgstr "タートルが描画する文字の色を設定します" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "論理積演算子" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "実行" + +#: TurtleArt/tabasics.py:217 +#, fuzzy +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "タートルの頭の向きを設定する(0は画面の上方向)" + +#: TurtleArt/tabasics.py:838 +#, fuzzy +msgid "Palette of variable blocks" +msgstr "変数ブロックのパレット" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "数値の入力に使います" + +#: TurtleArt/tabasics.py:912 +#, fuzzy +msgid "Variable 1 (numeric value)" +msgstr "変数1 (数値)" + +#: TurtleArt/tabasics.py:567 +#, fuzzy +msgid "adds two alphanumeric inputs" +msgstr "2つの入力数値を足し算します" + +#: TurtleArt/tabasics.py:379 +#, fuzzy +msgid "Turtle will not draw when moved." +msgstr "タートルが動いても描画されません" + +#: TurtleArt/tabasics.py:190 +#, fuzzy +msgid "moves turtle along an arc" +msgstr "円弧に沿ってタートルを動かす" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "「等しい」の比較演算子" + +#: TurtleArt/tabasics.py:441 +#, fuzzy +msgid "Palette of pen colors" +msgstr "ペンについての命令のパレット" + +#: TurtleArt/tabasics.py:888 +#, fuzzy +msgid "stores numeric value in Variable 1" +msgstr "変数1に数値を格納する" + +#: TurtleArt/tabasics.py:901 +#, fuzzy +msgid "stores numeric value in Variable 2" +msgstr "変数2に数値を格納する" + +#: TurtleArt/tabasics.py:143 +#, fuzzy +msgid "moves turtle backward" +msgstr "タートルを後ろに進める" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "画面上端のy座標値" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "ブロックを表示" + +#: TurtleArt/tabasics.py:398 +#, fuzzy +msgid "sets size of the line drawn by the turtle" +msgstr "タートルによって描かれる線のサイズを設定します" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#, fuzzy +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "タートルをx,y座標の場所に移動する; (0, 0)が画面の中心です" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +#, fuzzy +msgid "Stop" +msgstr "ステップ実行" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "コピー" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "貼り付け" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#, fuzzy +msgid "pops value off FILO (first-in last-out heap)" +msgstr "FILO(先入れ後だし)のヒープに値を入れる" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "消去" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +#, fuzzy +msgid "Palette of presentation templates" +msgstr "プレゼンテーションテンプレートのパレット" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "上側の入力数値から下側の入力数値を引き算します" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "キー入力を問い合わせます(結果はキーボードブロックに格納されます)" + +#: TurtleArt/tabasics.py:154 +#, fuzzy +msgid "clears the screen and reset the turtle" +msgstr "画面を消去してタートルをリセットする" + +#: TurtleArt/tabasics.py:123 +#, fuzzy +msgid "Palette of turtle commands" +msgstr "タートルについての命令のパレット" + +#: TurtleArt/tabasics.py:758 +#, fuzzy +msgid "loops forever" +msgstr "無限ループ" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "タートルアート" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "プロジェクト" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "デバッグ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "ブロックを表示" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugarのジャーナルの説明フィールド" + +#: TurtleArt/tabasics.py:388 +#, fuzzy +msgid "Turtle will draw when moved." +msgstr "タートルが動くと描画されます" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugarのジャーナル中の音声" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "タートルを停止" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "ブロックを非表示にする" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +#, fuzzy +msgid "presentation template: list of bullets" +msgstr "プレゼンテーションテンプレート: 7個の箇条書き" + +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "タートルが描画する文字のサイズを設定します" #: TurtleArt/tabasics.py:248 msgid "" @@ -159,20 +1946,141 @@ msgid "" "block)" msgstr "現在のタートルの向きを保持します(数値ブロックの代わりに使えます)" -#: TurtleArt/tabasics.py:282 +#: TurtleArt/tabasics.py:650 #, fuzzy -msgid "Palette of pen commands" -msgstr "ペンについての命令のパレット" +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "最小値(左)と最大値(右)の間の乱数を返します" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "現在のペンの色を保持します(数値ブロックの代わりに使えます)" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "パレットを表示" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "スナップショットを保存" + +#: TurtleArt/tabasics.py:132 +#, fuzzy +msgid "moves turtle forward" +msgstr "タートルを前に進める" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#, fuzzy +msgid "sets the scale of media" +msgstr "メディアの表示倍率を指定する" + +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +#, fuzzy +msgid "stores numeric value in named variable" +msgstr "名前つき変数に数値を格納する" + +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "論理和演算子" + +#: TurtleArt/tabasics.py:770 +#, fuzzy +msgid "loops specified number of times" +msgstr "指定回数のループ" #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #, fuzzy msgid "fill screen" msgstr "全画面" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "画像として保存" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "編集" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "上側の入力数値を下側の入力数値で割ります" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "画面下部の状態ブロックに値を表示します" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "query-kb(キー入力問い合わせ)ブロックの結果を保持します" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "" + +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" msgstr "" #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 @@ -182,10 +2090,6 @@ msgstr "" msgid "shade" msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "背景を(色、影)で塗りつぶします" - #: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 @@ -196,69 +2100,30 @@ msgstr "" msgid "set color" msgstr "" -#: TurtleArt/tabasics.py:317 -#, fuzzy -msgid "sets color of the line drawn by the turtle" -msgstr "タートルが描画する線の色を設定します" - #: TurtleArt/tabasics.py:325 msgid "set shade" msgstr "" -#: TurtleArt/tabasics.py:329 -#, fuzzy -msgid "sets shade of the line drawn by the turtle" -msgstr "タートルが描画する線の影を設定します" - #: TurtleArt/tabasics.py:337 msgid "set gray" msgstr "" -#: TurtleArt/tabasics.py:340 -#, fuzzy -msgid "sets gray level of the line drawn by the turtle" -msgstr "タートルが描画する線の影を設定します" - -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "現在のペンの色を保持します(数値ブロックの代わりに使えます)" - #: TurtleArt/tabasics.py:359 msgid "holds current pen shade" msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" -msgstr "現在の表示倍率の値を保持します(数値ブロックの代わりに使えます)" - #: TurtleArt/tabasics.py:376 msgid "pen up" msgstr "" -#: TurtleArt/tabasics.py:379 -#, fuzzy -msgid "Turtle will not draw when moved." -msgstr "タートルが動いても描画されません" - #: TurtleArt/tabasics.py:385 msgid "pen down" msgstr "" -#: TurtleArt/tabasics.py:388 -#, fuzzy -msgid "Turtle will draw when moved." -msgstr "タートルが動くと描画されます" - #: TurtleArt/tabasics.py:394 msgid "set pen size" msgstr "" -#: TurtleArt/tabasics.py:398 -#, fuzzy -msgid "sets size of the line drawn by the turtle" -msgstr "タートルによって描かれる線のサイズを設定します" - #: TurtleArt/tabasics.py:408 msgid "start fill" msgstr "" @@ -279,15 +2144,6 @@ msgstr "" msgid "pen size" msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "現在のペンの大きさを保持します(数値ブロックの代わりに使えます)" - -#: TurtleArt/tabasics.py:441 -#, fuzzy -msgid "Palette of pen colors" -msgstr "ペンについての命令のパレット" - #: TurtleArt/tabasics.py:443 msgid "red" msgstr "" @@ -328,59 +2184,26 @@ msgstr "" msgid "set text color" msgstr "" -#: TurtleArt/tabasics.py:463 -#, fuzzy -msgid "sets color of text drawn by the turtle" -msgstr "タートルが描画する文字の色を設定します" - #: TurtleArt/tabasics.py:471 msgid "set text size" msgstr "" -#: TurtleArt/tabasics.py:474 -#, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "タートルが描画する文字のサイズを設定します" - -#: TurtleArt/tabasics.py:557 -#, fuzzy -msgid "Palette of numeric operators" -msgstr "数値演算子のパレット" - #: TurtleArt/tabasics.py:563 msgid "plus" msgstr "" -#: TurtleArt/tabasics.py:567 -#, fuzzy -msgid "adds two alphanumeric inputs" -msgstr "2つの入力数値を足し算します" - #: TurtleArt/tabasics.py:575 msgid "minus" msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "上側の入力数値から下側の入力数値を引き算します" - #: TurtleArt/tabasics.py:589 msgid "multiply" msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "2つの入力数値を掛け算します" - #: TurtleArt/tabasics.py:601 msgid "divide" msgstr "" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "上側の入力数値を下側の入力数値で割ります" - #: TurtleArt/tabasics.py:614 msgid "identity" msgstr "" @@ -393,10 +2216,6 @@ msgstr "" msgid "mod" msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "剰余演算子" - #: TurtleArt/tabasics.py:635 msgid "√" msgstr "" @@ -405,11 +2224,6 @@ msgstr "" msgid "square root" msgstr "" -#: TurtleArt/tabasics.py:639 -#, fuzzy -msgid "calculates square root" -msgstr "平方根を計算します" - #: TurtleArt/tabasics.py:646 msgid "random" msgstr "" @@ -422,73 +2236,34 @@ msgstr "" msgid "max" msgstr "" -#: TurtleArt/tabasics.py:650 -#, fuzzy -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "最小値(左)と最大値(右)の間の乱数を返します" - #: TurtleArt/tabasics.py:662 msgid "number" msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "数値の入力に使います" - #: TurtleArt/tabasics.py:671 msgid "greater than" msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "「大なり」の比較演算子" - #: TurtleArt/tabasics.py:683 msgid "less than" msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "「小なり」の比較演算子" - #: TurtleArt/tabasics.py:695 msgid "equal" msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "「等しい」の比較演算子" - #: TurtleArt/tabasics.py:705 msgid "not" msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "論理否定演算子" - #: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 msgid "and" msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "論理積演算子" - #: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 msgid "or" msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "論理和演算子" - -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -#, fuzzy -msgid "Palette of flow operators" -msgstr "処理の流れを制御するブロックのパレット" - #: TurtleArt/tabasics.py:743 msgid "wait" msgstr "" @@ -501,20 +2276,10 @@ msgstr "" msgid "forever" msgstr "" -#: TurtleArt/tabasics.py:758 -#, fuzzy -msgid "loops forever" -msgstr "無限ループ" - #: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 msgid "repeat" msgstr "" -#: TurtleArt/tabasics.py:770 -#, fuzzy -msgid "loops specified number of times" -msgstr "指定回数のループ" - #: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 msgid "if" msgstr "" @@ -567,19 +2332,10 @@ msgstr "" msgid "stops current action" msgstr "" -#: TurtleArt/tabasics.py:838 -#, fuzzy -msgid "Palette of variable blocks" -msgstr "変数ブロックのパレット" - #: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 msgid "start" msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "アクションをツールバーの実行ボタンに結びつける" - #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -591,11 +2347,6 @@ msgstr "アクションをツールバーの実行ボタンに結びつける" msgid "text" msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "文字列値" - #: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 #: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 #: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 @@ -616,38 +2367,18 @@ msgstr "" msgid "store in box 1" msgstr "" -#: TurtleArt/tabasics.py:888 -#, fuzzy -msgid "stores numeric value in Variable 1" -msgstr "変数1に数値を格納する" - #: TurtleArt/tabasics.py:896 msgid "store in box 2" msgstr "" -#: TurtleArt/tabasics.py:901 -#, fuzzy -msgid "stores numeric value in Variable 2" -msgstr "変数2に数値を格納する" - #: TurtleArt/tabasics.py:909 msgid "box 1" msgstr "" -#: TurtleArt/tabasics.py:912 -#, fuzzy -msgid "Variable 1 (numeric value)" -msgstr "変数1 (数値)" - #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "" -#: TurtleArt/tabasics.py:922 -#, fuzzy -msgid "Variable 2 (numeric value)" -msgstr "変数2 (数値)" - #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "" @@ -656,10 +2387,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -667,15 +2394,6 @@ msgstr "" msgid "my box" msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -#, fuzzy -msgid "stores numeric value in named variable" -msgstr "名前つき変数に数値を格納する" - -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "名前つき変数(数値)" - #: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 msgid "action 1" msgstr "" @@ -745,20 +2463,6 @@ msgstr "" msgid "Title" msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "タートルを停止" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "ブロックを表示" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "ブロックを非表示にする" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -819,33 +2523,14 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "タートルアート" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "LOGOプログラムとして保存" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "画像として保存" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "スナップショットを保存" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -855,14 +2540,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "パレットを表示" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "パレットを非表示にする" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -871,42 +2548,20 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "編集" - #: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 #: TurtleArtActivity.py:747 turtleblocks.py:382 msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "プロジェクト" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "コピー" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "貼り付け" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "全画面" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -919,11 +2574,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "ブロックを表示" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -933,27 +2583,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "消去" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "実行" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "ステップ実行" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "ヘルプ" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -#, fuzzy -msgid "Stop" -msgstr "ステップ実行" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1139,11 +2768,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1170,13 +2794,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1203,15 +2820,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1261,13 +2869,6 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "ステップ実行" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1276,47 +2877,23 @@ msgstr "" msgid "journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugarのジャーナル中のメディアオブジェクト" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 msgid "audio" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugarのジャーナル中の音声" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "Sugarのジャーナル中の音声" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugarのジャーナルの説明フィールド" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 msgid "show" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -#, fuzzy -msgid "draws text or show media from the Journal" -msgstr "テキストを描画するか、ジャーナルからメディアオブジェクトを表示する" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 msgid "show aligned" msgstr "" @@ -1325,11 +2902,6 @@ msgstr "" msgid "set scale" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -#, fuzzy -msgid "sets the scale of media" -msgstr "メディアの表示倍率を指定する" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 msgid "save picture" msgstr "" @@ -1453,19 +3025,10 @@ msgstr "" msgid "query keyboard" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "キー入力を問い合わせます(結果はキーボードブロックに格納されます)" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 msgid "keyboard" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "query-kb(キー入力問い合わせ)ブロックの結果を保持します" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 msgid "read pixel" msgstr "" @@ -1482,38 +3045,19 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -#, fuzzy -msgid "Palette of extra options" -msgstr "追加オプションのパレット" - #. TRANS: push adds a new item to the program stack #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 msgid "push" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -#, fuzzy -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "FILO(先入れ後だし)のヒープに値を入れる" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 msgid "show heap" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -#, fuzzy -msgid "shows values in FILO (first-in last-out heap)" -msgstr "FILO(先入れ後だし)のヒープに値を入れる" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 msgid "empty heap" msgstr "" @@ -1527,11 +3071,6 @@ msgstr "" msgid "pop" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -#, fuzzy -msgid "pops value off FILO (first-in last-out heap)" -msgstr "FILO(先入れ後だし)のヒープに値を入れる" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 msgid "empty heap?" @@ -1555,10 +3094,6 @@ msgstr "" msgid "print" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "画面下部の状態ブロックに値を表示します" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 msgid "Python chr operator" msgstr "" @@ -1648,13 +3183,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "私のブロックを読み込む" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 msgid "setxy" msgstr "" @@ -1667,26 +3195,6 @@ msgstr "" msgid "selects a palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -#, fuzzy -msgid "Palette of presentation templates" -msgstr "プレゼンテーションテンプレートのパレット" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -#, fuzzy -msgid "hide blocks" -msgstr "ブロックを非表示にする" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -#, fuzzy -msgid "declutters canvas by hiding blocks" -msgstr "ブロックを隠してキャンバスをすっきりさせます" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "ブロックを表示" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1704,70 +3212,10 @@ msgstr "" msgid "presentation bulleted list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -#, fuzzy -msgid "presentation template: list of bullets" -msgstr "プレゼンテーションテンプレート: 7個の箇条書き" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを選ぶ(説明なし)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "プレゼンテーションテンプレート: ジャーナルオブジェクトを選ぶ(説明つき)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを4つ選ぶ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを2つ選ぶ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "画面左端のx座標値" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 msgid "bottom" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "画面下端のy座標値" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "キャンバスの幅" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "画面右端のx座標値" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "画面上端のy座標値" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "キャンバスの高さ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 msgid "title x" msgstr "" @@ -1836,11 +3284,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "ステップ実行" - #: pysamples/grecord.py:217 msgid "play" msgstr "" @@ -1918,10 +3361,6 @@ msgstr "" msgid "Tools" msgstr "" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "デバッグ" - #: turtleblocks.py:404 msgid "Turtle" msgstr "" @@ -1938,15 +3377,12 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "samples" -#~ msgstr "サンプル" - #~ msgid "Save as HTML" #~ msgstr "HTMLとして保存" #~ msgid "Move the cursor over the orange palette for help." -#~ msgstr "ヘルプを表示するには、オレンジ色のパレットの上でカーソルを動かしてください" +#~ msgstr "" +#~ "ヘルプを表示するには、オレンジ色のパレットの上でカーソルを動かしてください" #, fuzzy #~ msgid "full screen" @@ -1972,8 +3408,11 @@ msgstr "" #~ msgstr "現在のペンの影の値を保持します(数値ブロックの代わりに使えます)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" -#~ msgstr "プログラム可能なブロック: ブロックの中にあなたの独自の数値計算を追加してください" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" +#~ msgstr "" +#~ "プログラム可能なブロック: ブロックの中にあなたの独自の数値計算を追加してく" +#~ "ださい" #~ msgid "pop value off FILO" #~ msgstr "FILO(先入れ後だし)のヒープから値を取り出す" diff --git a/po/km.po b/po/km.po index 5bfdbd8..8f31983 100644 --- a/po/km.po +++ b/po/km.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,51 +43,2123 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +#, fuzzy +msgid "grayscale" +msgstr "" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"មាត្រដ្ឋាន​ប្រផេះ" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +#, fuzzy +msgid "distance" +msgstr "" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"ចម្ងាយ" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "ពន្លឺ" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +#, fuzzy +msgid "x position" +msgstr "" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"ទីតាំង" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +#, fuzzy +msgid "y position" +msgstr "" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"ទីតាំង" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "កម្ពស់" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "ទទឹង" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "អត្ដសញ្ញាណ" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "ពណ៌" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "ស្តាំ" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "សំឡេង" + +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "​ប្រផេះ" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "ពេល​វេលា" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "ច្រក" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. #-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +#, fuzzy +msgid "rotations" +msgstr "" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-#\n" +"ការ​បង្វិល" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" msgstr "" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "ក្រហម" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "ផ្លាស់ទី" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "តម្លៃ​" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "ចំណង​ជើង" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "​លឿង" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "ជំហាន" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "មិត្តជិតស្និទ្ធិ" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "ពណ៌​កាប់​ស្តាំង​" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "បញ្ជី" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +#, fuzzy +msgid "heading" +msgstr "ការអាន​ " + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "វីដេអូ" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "​​ខៀវ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "ខាង​ក្រោម" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "រង់​ចាំ" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "ប្រអប់​" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "សកម្មភាព" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "ចែក" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#, fuzzy +msgid "while" +msgstr "ស" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "បន្ទាប់" + +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "បាន​បរាជ័យ​ក្នុងការ​ចូល" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "តម្លៃ​ខ្សែអក្សរ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "ការពិពណ៌នា" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "ឈ្មោះអ្នក​ប្រើ ៖" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "ទិដ្ឋភាព" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "ពាក្យ​សម្ងាត់ ៖" + +#: TurtleArt/tabasics.py:826 +#, fuzzy +msgid "stop action" +msgstr "បង្ហាញ​រូបតំណាង​ក្នុង​ថាស​ប្រព័ន្ធ" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "​​បៃតង" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "ស្រមោល​" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "កម្ពស់សំឡេង" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "ពណ៌​ទឹក​ក្រូច​" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "ជម្រះ​ទាំង​អស់" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "នោះ" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "ចុះឈ្មោះ" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "មិន" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "អណ្ដើក" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "​រក្សា​ទុក" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "បោះពុម្ព" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +#, fuzzy +msgid "Save as Logo" +msgstr "บันทึกเป็น .ogg" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "ជ្រើស​ពណ៌​អត្ថបទ" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "ភាពឮ" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "លេខ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "កំពូល" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "សម្មតិនាម" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "ស" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "បោះបង់" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "ទិស" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "ដក" + +#: TurtleArt/tabasics.py:313 +#, fuzzy +msgid "set color" +msgstr "កំណត់​ពណ៌" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "នាទី" + +#: turtleblocks.py:363 +msgid "File" +msgstr "ឯកសារ" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "គុណ" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "ជារៀង​រហូត" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "រូបថត" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "ស្អាត" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "ពេញ​អេក្រង់" + +#: turtleblocks.py:255 +msgid "File not found" +msgstr "រក​មិន​ឃើញ​ឯកសារ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "បង្ហាញ" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "អត្ថបទ" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "ព្រាវ" + +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "ខ្មៅ" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "បញ្ឈប់" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "​ធំជាង" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "ตำแหน่ง x" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "ជំនួយ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "ក្ដារ​ចុច" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "ធ្នូ" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "កាំ" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "កូអរដោនេ​ប៉ូល" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "រត់" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +#, fuzzy +msgid "show heap" +msgstr "បង្ហាញ​ជំនួយ" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "ចំណងជើង ៖" + +#: 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 "ផ្ទុកឡើង" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "ម៉ាស៊ីន​បម្រើ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "ទិស" + +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "ភាព​ជិត​ខាង" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "ស្មើ" + +#. #-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "លេច​ឡើង" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "ចាក់" + +#: pysamples/grecord.py:219 +#, fuzzy +msgid "save" +msgstr "​រក្សា​ទុក" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "ពណ៌" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "បើក" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "ទិស" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ตำแหน่ง y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "ឈប់" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#, fuzzy +msgid "action 2" +msgstr "សកម្មភាព" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +#, fuzzy +msgid "action 1" +msgstr "សកម្មភាព" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "ចំលង" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "បិទភ្ជាប់​" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "សកម្មភាព" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "ស្អាត" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "មុំ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "សំលេង" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "ឧបករណ៍" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "ឆ្វេង" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "មតិ​យោបល់" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "គម្រោង" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "បំបាត់​កំហុស" + +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "ពាក្យ​សម្ងាត់" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "ចែករំលែក" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "​តូចជាង" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "ប្រភាគ" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "បោះបង់" + +#: turtleblocks.py:354 +msgid "New" +msgstr "ថ្មី" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "មាត្រដ្ឋាន" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "ខាង​ក្រោម" + +#: TurtleArt/tabasics.py:451 +#, fuzzy +msgid "purple" +msgstr "ស្វាយ" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "กดเปิด" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "ការ​កំណត់​រចនាសម្ព័ន្ធ" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "សេចក្ដី​ពិពណ៌នា ៖" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "ទានានុប្បវត្តិ" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "សម្អាត​ធុង​សំរាម" + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "ផ្ទុក..." + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "អណ្ដើក" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "បូក" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "ឬ" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "រូប​ភាព" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "រក្សាទុក​រូបថត" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "ចាប់ផ្ដើម" + #: TurtleArt/tabasics.py:128 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 msgid "forward" msgstr "បញ្ជូនបន្ត" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "លេខ​សម្គាល់​គណនី" #: TurtleArt/tabasics.py:139 msgid "back" msgstr "ថយ​ក្រោយ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "ទិស" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "ទិស" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "រក្សា​ទុក..." + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#, fuzzy +msgid "fill screen" +msgstr "អេក្រង់​ពេញ" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "រក្សាទុក​ជា" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "ធុង​សំរាម" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "ប៉ូល" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "ធ្វើម្តង​ទៀត​" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "កែសម្រួល" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "អតិ" + +#: TurtleArt/tabasics.py:408 +#, fuzzy +msgid "start fill" +msgstr "ចាប់ផ្ដើម​ទាំងអស់" + +#. #-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# km.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "ចុច" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "" + #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "ស្អាត" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "ឆ្វេង" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -76,18 +2173,6 @@ msgstr "ស្តាំ" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "ធ្នូ" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "មុំ" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "កាំ" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" @@ -96,14 +2181,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -117,34 +2194,18 @@ msgstr "" msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "ตำแหน่ง x" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ตำแหน่ง y" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -#, fuzzy -msgid "heading" -msgstr "ការអាន​ " - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -155,24 +2216,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#, fuzzy -msgid "fill screen" -msgstr "អេក្រង់​ពេញ" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "ពណ៌" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "ស្រមោល​" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -183,11 +2226,6 @@ msgstr "" msgid "gray" msgstr "​ប្រផេះ" -#: TurtleArt/tabasics.py:313 -#, fuzzy -msgid "set color" -msgstr "កំណត់​ពណ៌" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" @@ -244,11 +2282,6 @@ msgstr "" msgid "sets size of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:408 -#, fuzzy -msgid "start fill" -msgstr "ចាប់ផ្ដើម​ទាំងអស់" - #: TurtleArt/tabasics.py:410 msgid "starts filled polygon (used with end fill block)" msgstr "" @@ -277,43 +2310,6 @@ msgstr "" msgid "red" msgstr "ក្រហម" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "ពណ៌​ទឹក​ក្រូច​" - -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "​លឿង" - -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "​​បៃតង" - -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "ពណ៌​កាប់​ស្តាំង​" - -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "​​ខៀវ" - -#: TurtleArt/tabasics.py:451 -#, fuzzy -msgid "purple" -msgstr "ស្វាយ" - -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "ស" - -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "ខ្មៅ" - -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "ជ្រើស​ពណ៌​អត្ថបទ" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" @@ -330,34 +2326,18 @@ msgstr "" msgid "Palette of numeric operators" msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "បូក" - #: TurtleArt/tabasics.py:567 msgid "adds two alphanumeric inputs" msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "ដក" - #: TurtleArt/tabasics.py:578 msgid "subtracts bottom numeric input from top numeric input" msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "គុណ" - #: TurtleArt/tabasics.py:592 msgid "multiplies two numeric inputs" msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "ចែក" - #: TurtleArt/tabasics.py:604 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" @@ -384,66 +2364,30 @@ msgstr "" msgid "√" msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "ប្រភាគ" - #: TurtleArt/tabasics.py:639 msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "ព្រាវ" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "នាទី" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "អតិ" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "លេខ" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "​ធំជាង" - #: TurtleArt/tabasics.py:674 msgid "logical greater-than operator" msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "​តូចជាង" - #: TurtleArt/tabasics.py:687 msgid "logical less-than operator" msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "ស្មើ" - #: TurtleArt/tabasics.py:699 msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "មិន" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" @@ -456,10 +2400,6 @@ msgstr "" msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "ឬ" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -469,26 +2409,14 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "រង់​ចាំ" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "ជារៀង​រហូត" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "ធ្វើម្តង​ទៀត​" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" @@ -497,10 +2425,6 @@ msgstr "" msgid "if" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "នោះ" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -537,11 +2461,6 @@ msgstr "" msgid "jogs stack down" msgstr "" -#: TurtleArt/tabasics.py:826 -#, fuzzy -msgid "stop action" -msgstr "បង្ហាញ​រូបតំណាង​ក្នុង​ថាស​ប្រព័ន្ធ" - #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "" @@ -550,38 +2469,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "ចាប់ផ្ដើម" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "អត្ថបទ" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "តម្លៃ​ខ្សែអក្សរ" - -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "សកម្មភាព" - #: TurtleArt/tabasics.py:865 msgid "top of nameable action stack" msgstr "" @@ -626,14 +2517,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "ប្រអប់​" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "តម្លៃ​" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -649,20 +2532,10 @@ msgstr "" msgid "named variable (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -#, fuzzy -msgid "action 1" -msgstr "សកម្មភាព" - #: TurtleArt/tabasics.py:958 msgid "top of Action 1 stack" msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -#, fuzzy -msgid "action 2" -msgstr "សកម្មភាព" - #: TurtleArt/tabasics.py:967 msgid "top of Action 2 stack" msgstr "" @@ -675,14 +2548,6 @@ msgstr "" msgid "invokes Action 2 stack" msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "ធុង​សំរាម" - -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "សម្អាត​ធុង​សំរាម" - #: TurtleArt/tabasics.py:1000 msgid "permanently deletes items in trash" msgstr "" @@ -695,10 +2560,6 @@ msgstr "" msgid "restore all blocks from trash" msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "ជម្រះ​ទាំង​អស់" - #: TurtleArt/tabasics.py:1010 msgid "move all blocks to trash" msgstr "" @@ -708,18 +2569,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "ចំណង​ជើង" - #: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 msgid "Stop turtle" @@ -758,27 +2607,6 @@ msgstr "" msgid "changes the orientation of the palette of blocks" msgstr "" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "ផ្ទុក..." - -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "រក្សា​ទុក..." - -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "กดเปิด" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "ទិស" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "បន្ទាប់" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -798,30 +2626,11 @@ msgstr "" msgid "Turtle Art" msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "រូប​ភាព" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -#, fuzzy -msgid "Save as Logo" -msgstr "บันทึกเป็น .ogg" - #: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 #: TurtleArtActivity.py:850 turtleblocks.py:358 msgid "Save as image" msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "រូបថត" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "រក្សាទុក​រូបថត" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -847,50 +2656,19 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "កែសម្រួល" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "ទិដ្ឋភាព" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "គម្រោង" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "ចំលង" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "បិទភ្ជាប់​" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "ពេញ​អេក្រង់" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "កូអរដោនេ​ប៉ូល" - #: TurtleArtActivity.py:601 TurtleArtActivity.py:753 msgid "Metric coordinates" msgstr "" @@ -908,26 +2686,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "ស្អាត" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "រត់" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "ជំហាន" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "ជំនួយ" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "ឈប់" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -995,60 +2753,10 @@ msgstr "" msgid "Enable collaboration" msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "សកម្មភាព" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "មិត្តជិតស្និទ្ធិ" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "ចែករំលែក" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "ការ​កំណត់​រចនាសម្ព័ន្ធ" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "ភាព​ជិត​ខាង" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "សម្មតិនាម" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "លេខ​សម្គាល់​គណនី" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "ម៉ាស៊ីន​បម្រើ" - #: gnome_plugins/collaboration_plugin.py:298 msgid "Port" msgstr "ច្រក" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "ពាក្យ​សម្ងាត់" - -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "ចុះឈ្មោះ" - -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "ពណ៌" - -#: gnome_plugins/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 "ផ្ទុកឡើង" - #: gnome_plugins/fb_plugin.py:87 msgid "Facebook wall post" msgstr "" @@ -1063,34 +2771,10 @@ msgid "" "your project." msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "ឈ្មោះអ្នក​ប្រើ ៖" - -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "ពាក្យ​សម្ងាត់ ៖" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "ចំណងជើង ៖" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "សេចក្ដី​ពិពណ៌នា ៖" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "បោះបង់" - -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "បាន​បរាជ័យ​ក្នុងការ​ចូល" - #: gnome_plugins/uploader_plugin.py:203 msgid "Failed to upload!" msgstr "" @@ -1113,44 +2797,21 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "សំឡេង" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "ភាពឮ" - #: plugins/audio_sensors/audio_sensors.py:91 #: plugins/audio_sensors/audio_sensors.py:106 msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "កម្ពស់សំឡេង" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1177,15 +2838,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "ពន្លឺ" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1217,12 +2869,6 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#, fuzzy -msgid "while" -msgstr "ស" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" @@ -1236,53 +2882,26 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "កំពូល" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "ទានានុប្បវត្តិ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "សំលេង" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "វីដេអូ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "ការពិពណ៌នា" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 msgid "Sugar Journal description field" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "បង្ហាញ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 @@ -1322,10 +2941,6 @@ msgstr "" msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "មាត្រដ្ឋាន" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1428,10 +3043,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "ក្ដារ​ចុច" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1452,10 +3063,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "ពេល​វេលា" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1464,20 +3071,10 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "ចុច" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -#, fuzzy -msgid "show heap" -msgstr "បង្ហាញ​ជំនួយ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 msgid "shows values in FILO (first-in last-out heap)" msgstr "" @@ -1490,11 +3087,6 @@ msgstr "" msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "លេច​ឡើង" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" @@ -1509,19 +3101,10 @@ msgstr "" msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "មតិ​យោបល់" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "បោះពុម្ព" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1534,12 +3117,6 @@ msgstr "" msgid "Python int operator" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" "a programmable block: used to add advanced single-variable math equations, e." @@ -1578,19 +3155,10 @@ msgstr "" msgid "displays Cartesian coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "ប៉ូល" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "អណ្ដើក" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1657,10 +3225,6 @@ msgstr "" msgid "hides the Sugar toolbars" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "បញ្ជី" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" @@ -1697,18 +3261,10 @@ msgstr "" msgid "xcor of left of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "ខាង​ក្រោម" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "ទទឹង" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1721,10 +3277,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "កម្ពស់" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1749,32 +3301,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "ខាង​ក្រោម" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "ទិស" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "ទិស" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "ទិស" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "ទិស" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1802,19 +3328,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "បញ្ឈប់" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "ចាក់" - -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "​រក្សា​ទុក" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1835,39 +3348,11 @@ msgstr "" msgid "No option action:" msgstr "" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "រក​មិន​ឃើញ​ឯកសារ" - #: turtleblocks.py:279 #, python-format msgid "Configuration directory not writable: %s" msgstr "" -#: turtleblocks.py:354 -msgid "New" -msgstr "ថ្មី" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "បើក" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "​រក្សា​ទុក" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "រក្សាទុក​ជា" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "បោះបង់" - -#: turtleblocks.py:363 -msgid "File" -msgstr "ឯកសារ" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" @@ -1880,18 +3365,6 @@ msgstr "" msgid "Show/hide blocks" msgstr "" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "ឧបករណ៍" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "បំបាត់​កំហុស" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "អណ្ដើក" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1904,50 +3377,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "grayscale" -#~ msgstr "មាត្រដ្ឋាន​ប្រផេះ" - -#, fuzzy -#~ msgid "distance" -#~ msgstr "ចម្ងាយ" - -#, fuzzy -#~ msgid "x position" -#~ msgstr "ទីតាំង" - -#, fuzzy -#~ msgid "y position" -#~ msgstr "ទីតាំង" - -#, fuzzy -#~ msgid "density" -#~ msgstr "អត្ដសញ្ញាណ" - -#, fuzzy -#~ msgid "light" -#~ msgstr "ស្តាំ" - -#, fuzzy -#~ msgid "grey" -#~ msgstr "​ប្រផេះ" - -#, fuzzy -#~ msgid "port" -#~ msgstr "ច្រក" - -#, fuzzy -#~ msgid "rotations" -#~ msgstr "ការ​បង្វិល" - -#, fuzzy -#~ msgid "read" -#~ msgstr "ក្រហម" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "ផ្លាស់ទី" - #~ msgid "label" #~ msgstr "ស្លាក" diff --git a/po/ko.po b/po/ko.po index 32c3478..c507dbb 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1850 @@ msgstr "" "X-Generator: Pootle 1.2.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "저항" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "색" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "오른쪽" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "소리" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +#, fuzzy +msgid "sensor" +msgstr "" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"센서" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "나누기" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-#\n" +"예제" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "제목" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "상자 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "상자 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +#, fuzzy +msgid "Step" +msgstr "단계 실행" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +#, fuzzy +msgid "Hide palette" +msgstr "팔레트 숨기기" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "머리방향" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "펜 그리기" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "기다리기" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "상자" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "텍스트" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "펜 크기 지정" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "머리방향 지정하기" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "펜 크기 지정" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "명암" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "피치" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "펜 그리기 않기" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "이면" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "아니다" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "터틀" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "블록 숨기기" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "상자 1에 저장하기" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "상자 2에 저장하기" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "인쇄" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +#, fuzzy +msgid "Save as Logo" +msgstr "Logo로 저장" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "텍스트 색 지정" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "숫자" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "단계 실행" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "명암 지정" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "그리고" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "색 지정" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "최소" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "내 블록 불러오기" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "언제나" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "지우기" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "블록 보기" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +#, fuzzy +msgid "Fullscreen" +msgstr "전체 화면" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "텍스트" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "무작위" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "뒤" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "단계 실행" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +#, fuzzy +msgid "keyboard" +msgstr "키보드" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "라디우스" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "명암 지정" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "제목" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "아니면" + +#. #-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "빼기" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "펜 크기" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +#, fuzzy +msgid "Show blocks" +msgstr "블록 보기" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "색" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "만약" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +#, fuzzy +msgid "Stop" +msgstr "단계 실행" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "지우기" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "도" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "왼쪽" + +#: 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 "전압" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "터틀 아트" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "작품" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "블록 보기" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +#, fuzzy +msgid "Stop turtle" +msgstr "터틀 멈추기" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "터틀" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +#, fuzzy +msgid "Hide blocks" +msgstr "블록 숨기기" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "또는" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +#, fuzzy +msgid "Show palette" +msgstr "팔레트 보기" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "시작" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "전진" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "뒤" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "xy 지정하기" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "전체 화면" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "다른 이름으로 저장" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "xy 지정하기" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "반복" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "최대" + +#. #-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ko.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "넣기" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -32,37 +1901,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "전진" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "뒤" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "지우기" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "왼쪽" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -76,75 +1926,31 @@ msgstr "오른쪽" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "도" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "라디우스" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy 지정하기" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "머리방향 지정하기" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "머리방향" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -155,23 +1961,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "전체 화면" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "색" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "명암" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -182,18 +1971,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "색 지정" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "명암 지정" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -218,26 +1999,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "펜 그리기 않기" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "펜 그리기" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "펜 크기 지정" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -258,10 +2027,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "펜 크기" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -302,24 +2067,10 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "뒤" - -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "텍스트 색 지정" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "펜 크기 지정" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -389,26 +2140,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "무작위" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "최소" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "최대" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "숫자" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -437,26 +2172,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "아니다" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "그리고" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "또는" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -466,38 +2189,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "기다리기" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "언제나" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "반복" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "만약" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "이면" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -506,10 +2209,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "아니면" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -546,25 +2245,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "시작" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "텍스트" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -586,34 +2270,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "상자 1에 저장하기" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "상자 2에 저장하기" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "상자 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "상자 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -622,14 +2290,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "상자" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -702,36 +2362,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "제목" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -#, fuzzy -msgid "Stop turtle" -msgstr "터틀 멈추기" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -#, fuzzy -msgid "Show blocks" -msgstr "블록 보기" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -#, fuzzy -msgid "Hide blocks" -msgstr "블록 숨기기" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -773,11 +2403,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "텍스트" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -793,20 +2418,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "터틀 아트" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -#, fuzzy -msgid "Save as Logo" -msgstr "Logo로 저장" - #: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 #: TurtleArtActivity.py:850 turtleblocks.py:358 msgid "Save as image" @@ -830,16 +2445,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -#, fuzzy -msgid "Show palette" -msgstr "팔레트 보기" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -#, fuzzy -msgid "Hide palette" -msgstr "팔레트 숨기기" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -858,10 +2463,6 @@ msgstr "" msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "작품" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" @@ -879,12 +2480,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -#, fuzzy -msgid "Fullscreen" -msgstr "전체 화면" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -897,11 +2492,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "블록 보기" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -911,29 +2501,14 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "지우기" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -#, fuzzy -msgid "Step" -msgstr "단계 실행" - #: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 msgid "Help" msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -#, fuzzy -msgid "Stop" -msgstr "단계 실행" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1045,11 +2620,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "색" - #: 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 @@ -1078,11 +2648,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "제목" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1121,11 +2686,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "소리" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1141,24 +2701,11 @@ msgstr "" msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "피치" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "저항" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1166,13 +2713,6 @@ msgstr "저항" msgid "microphone input resistance" msgstr "" -#: 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 "전압" - #: plugins/audio_sensors/audio_sensors.py:158 #: plugins/audio_sensors/audio_sensors.py:172 #: plugins/audio_sensors/audio_sensors.py:186 @@ -1185,15 +2725,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1243,13 +2774,6 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "단계 실행" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1301,11 +2825,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "명암 지정" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1437,11 +2956,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -#, fuzzy -msgid "keyboard" -msgstr "키보드" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1462,10 +2976,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1474,11 +2984,6 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "넣기" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" @@ -1499,11 +3004,6 @@ msgstr "" msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "빼기" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" @@ -1527,10 +3027,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "인쇄" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1595,12 +3091,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "터틀" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1625,18 +3115,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "내 블록 불러오기" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "xy 지정하기" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1649,19 +3127,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "블록 숨기기" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "블록 보기" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1718,10 +3187,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1734,10 +3199,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1810,11 +3271,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "단계 실행" - #: pysamples/grecord.py:217 msgid "play" msgstr "" @@ -1864,11 +3320,6 @@ msgstr "" msgid "Save" msgstr "" -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "다른 이름으로 저장" - #: turtleblocks.py:362 msgid "Quit" msgstr "" @@ -1897,10 +3348,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "터틀" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1914,22 +3361,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "오른쪽" - -#, fuzzy -#~ msgid "sensor" -#~ msgstr "센서" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "나누기" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "예제" - -#, fuzzy #~ msgid "Save as HTML" #~ msgstr "HTML으로 저장" diff --git a/po/kos.po b/po/kos.po index 2ffab3e..b4dc9cc 100644 --- a/po/kos.po +++ b/po/kos.po @@ -1,13 +1,50 @@ +# #-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# kos.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,6 +59,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -100,14 +1592,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -162,12 +1646,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -627,10 +2105,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1107,11 +2581,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1138,13 +2607,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1171,15 +2633,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1445,10 +2898,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1697,10 +3146,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1713,10 +3158,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/mg.po b/po/mg.po index 736954e..4ecdee0 100644 --- a/po/mg.po +++ b/po/mg.po @@ -1,13 +1,50 @@ +# #-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,6 +59,2170 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "faharetana" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "haavo" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "loko" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "havanana" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "mena" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-#\n" +"Santionany" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Lohateny" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "mavo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "mampiseho kôrdône polera" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Zavatra fihaino sy fijery ao amin'ny Firaketana Sugar" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "boaty 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "boaty 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Dingana" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "mampitombo iditra nomerika roa" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Asehoy/Afeno ireo bolongana" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Afeno ny andiandoko" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +#, fuzzy +msgid "Sugar Journal video object" +msgstr "Zavatra fihaino amin'ny Firaketana Sugar" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyan" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor-n'ny faritra havanan'ny efijery" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Andian-tsafidy fanampiny" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Reperitoaram-panefena tsy azo anoratana: %s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "lohateny" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "" +"mitahiry ireo sarin-tsokatra ho rakitra SVG ao amin'ny Firaketana Sugar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "" +"misarika soratra na mampiseho haino aman-jery avy ao amin'ny Firaketana" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "manga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "mampiseho ireo kôrdône karteziana" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Tsy misy asa safidy:" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "operatera (mpampatsiahy) maodilera" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "fanambaniny" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "tehirizo SVG" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "ahidino ny penina" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "andraso" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "boaty" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Tsy nahatafakatra!" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "manambara avosan'asa nomena anarana" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "hetsika" + +#: turtleblocks.py:86 +msgid "usage is" +msgstr "ny fanao azy dia" + +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Ova 2 (lanja nomerika)" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "zarao" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "anaran-tsary" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "foana" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "ova nomena anarana (lanja nomerika)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "manaraka" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "raha izay dia" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "amboary ny haben'ny penina" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "" +"maodely fampisehoana: mifidiana zava-piraiketana (tsy misy mombamomba azy)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "mandrapaha" + +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "mamafa tanteraka ireo singa ao an-jaoridira" + +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "tampon'ny avosan'ny Hetsika 1" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Tsy fantatro ny fomba" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "amboary ny haben'ny penina" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Hijery" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "maitso" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "fahamatrohana" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "tehirizo ny sary" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Alehibiazo ireo kaordône" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "akaro ny penina" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "volomboasary" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "noho izany" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "tsy" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +#, fuzzy +msgid "if then else" +msgstr "raha tsy izay dia" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +#, fuzzy +msgid "xcor of left of screen" +msgstr "xcor-n'ny faritra havanan'ny efijery" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Ovao ny haben'ny bolongana" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "sokatra" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "afeno ireo bolongana" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Tehirizo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "pirinty" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Tehirizo ho logo" + +#: TurtleArt/tabasics.py:662 +#, fuzzy +msgid "number" +msgstr "isa" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "Ajanony" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Kaordône Karteziana" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "famelabelarana" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "sy" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "ho soratra" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "ambany indrindra" + +#: turtleblocks.py:363 +msgid "File" +msgstr "Rakitra" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +#, fuzzy +msgid "ycor of bottom of screen" +msgstr "xcor-n'ny faritra havanan'ny efijery" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +#, fuzzy +msgid "presentation template: select Journal object (with description)" +msgstr "" +"maodely fampisehoana: mifidiana zava-piraiketana (tsy misy mombamomba azy)" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "mandrakizay" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "sary nalaina" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "diovy" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Ampitomboy ireo bolongana" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Mameno efijery" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "asehoy" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "Lahatsoratra" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "kisendrasendra" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "miverina" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "Ajanony" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Fanampiana" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Kaordône pôlera" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Alefaso" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "Lohateny" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Andiandokom-bolongana miovaova" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "famelabelarana" + +#: TurtleArt/tabasics.py:912 +#, fuzzy +msgid "Variable 1 (numeric value)" +msgstr "Ova 2 (lanja nomerika)" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "raha tsy izany" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "tsy tia" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "haben'ny penina" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +#, fuzzy +msgid "ycor of top of screen" +msgstr "xcor-n'ny faritra havanan'ny efijery" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Asehoy ireo bolongana" + +#: pysamples/grecord.py:219 +#, fuzzy +msgid "save" +msgstr "Tehirizo" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "loko" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Sokafy" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "fitodika" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "raha" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Ajanony" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "hetsika 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "hetsika 1" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Adikao" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Apetaho" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "tsy namoaka mankao amin'ny" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "foana" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Diovy" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "zoro" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Fitaovana" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "havia" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "tsikera" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Karteziana" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Ara sokatra" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Sahanasa" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debageo" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Ovao refy ireo kaordône" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "asehoy ireo bolongana" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Saha fanoritsoritan'ny Firaketana Sugar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "akelezo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "fanambaniny" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "voloparasy" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Akelezo ireo kaordône" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "tsindrio raha hanokatra" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "diovy ny vatampako" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Zavatra fihaino amin'ny Firaketana Sugar" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Ajanony ny sokatra" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Sokatra" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Afeno ireo bolongana" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "na" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Silaho ireo bolongana" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "sary" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Asehoy ny andiandoko" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "mitahiry sary ao amin'ny Firaketana Sugar" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Tehirizo ny sary nalaina" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "atomboy" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "mandroso" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "miverina" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "famelabelarana" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "famelabelarana" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "ataovy feno efijery" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Tehirizo ho" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "avereno" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Tehirizo ho sary" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Ovao" + +#: TurtleArt/tabasics.py:967 +#, fuzzy +msgid "top of Action 2 stack" +msgstr "tampon'ny avosan'ny Hetsika 1" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "ambony indrindra" + +#. #-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mg.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "atoseho" + +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "avereno daholo" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -36,37 +2237,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "mandroso" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "miverina" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "diovy" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "havia" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -85,10 +2267,6 @@ msgid "arc" msgstr "" #: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "zoro" - -#: TurtleArt/tabasics.py:186 msgid "radius" msgstr "" @@ -100,14 +2278,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -121,33 +2291,18 @@ msgstr "" msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "lohateny" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -158,23 +2313,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "ataovy feno efijery" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "loko" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "fahamatrohana" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -221,26 +2359,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "akaro ny penina" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "ahidino ny penina" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "amboary ny haben'ny penina" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -261,10 +2387,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "haben'ny penina" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -277,39 +2399,10 @@ msgstr "" msgid "red" msgstr "mena" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "volomboasary" - -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "mavo" - -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "maitso" - -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyan" - -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "manga" - -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "voloparasy" - #: TurtleArt/tabasics.py:453 msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "miverina" - #: TurtleArt/tabasics.py:460 msgid "set text color" msgstr "" @@ -318,11 +2411,6 @@ msgstr "" msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "amboary ny haben'ny penina" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -351,14 +2439,6 @@ msgstr "" msgid "multiply" msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "mampitombo iditra nomerika roa" - -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "zarao" - #: TurtleArt/tabasics.py:604 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" @@ -376,10 +2456,6 @@ msgstr "" msgid "mod" msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "operatera (mpampatsiahy) maodilera" - #: TurtleArt/tabasics.py:635 msgid "√" msgstr "" @@ -392,27 +2468,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "kisendrasendra" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "ambany indrindra" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "ambony indrindra" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -#, fuzzy -msgid "number" -msgstr "isa" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -441,26 +2500,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "tsy" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "sy" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "na" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -470,55 +2517,22 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "andraso" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "mandrakizay" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "avereno" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "raha" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "noho izany" - -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "raha izay dia" - #: TurtleArt/tabasics.py:781 msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "raha tsy izany" - -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -#, fuzzy -msgid "if then else" -msgstr "raha tsy izay dia" - #: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "" @@ -547,50 +2561,19 @@ msgstr "" msgid "stops current action" msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Andiandokom-bolongana miovaova" - -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "atomboy" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "Lahatsoratra" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "hetsika" - #: TurtleArt/tabasics.py:865 msgid "top of nameable action stack" msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "manambara avosan'asa nomena anarana" - #: TurtleArt/tabasics.py:883 msgid "store in box 1" msgstr "" @@ -607,35 +2590,10 @@ msgstr "" msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "boaty 1" - -#: TurtleArt/tabasics.py:912 -#, fuzzy -msgid "Variable 1 (numeric value)" -msgstr "Ova 2 (lanja nomerika)" - -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "boaty 2" - -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Ova 2 (lanja nomerika)" - #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "boaty" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -647,27 +2605,6 @@ msgstr "" msgid "stores numeric value in named variable" msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "ova nomena anarana (lanja nomerika)" - -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "hetsika 1" - -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "tampon'ny avosan'ny Hetsika 1" - -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "hetsika 2" - -#: TurtleArt/tabasics.py:967 -#, fuzzy -msgid "top of Action 2 stack" -msgstr "tampon'ny avosan'ny Hetsika 1" - #: TurtleArt/tabasics.py:977 msgid "invokes Action 1 stack" msgstr "" @@ -680,18 +2617,6 @@ msgstr "" msgid "trash" msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "diovy ny vatampako" - -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "mamafa tanteraka ireo singa ao an-jaoridira" - -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "avereno daholo" - #: TurtleArt/tabasics.py:1005 msgid "restore all blocks from trash" msgstr "" @@ -709,48 +2634,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Lohateny" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Ajanony ny sokatra" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Asehoy ireo bolongana" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Afeno ireo bolongana" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "tsy namoaka mankao amin'ny" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Tsy fantatro ny fomba" - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "tsy tia" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "ho soratra" - #: TurtleArt/tapalette.py:97 msgid "displays next palette" msgstr "" @@ -767,19 +2650,6 @@ msgstr "" msgid "Save..." msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "tsindrio raha hanokatra" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "fitodika" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "manaraka" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -795,33 +2665,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Ara sokatra" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "sary" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Tehirizo ho logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Tehirizo ho sary" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "sary nalaina" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Tehirizo ny sary nalaina" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -831,103 +2674,24 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Asehoy ny andiandoko" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Afeno ny andiandoko" - -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Akelezo ireo kaordône" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Alehibiazo ireo kaordône" - -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Ovao" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Hijery" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Sahanasa" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Adikao" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Apetaho" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Mameno efijery" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Kaordône Karteziana" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Kaordône pôlera" - #: TurtleArtActivity.py:601 TurtleArtActivity.py:753 msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Ampitomboy ireo bolongana" - -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Silaho ireo bolongana" - #: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 #: TurtleArtActivity.py:832 msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Diovy" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Alefaso" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Dingana" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Fanampiana" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Ajanony" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -948,26 +2712,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -1039,11 +2783,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "loko" - #: 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 @@ -1072,11 +2811,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "Lohateny" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1093,10 +2827,6 @@ msgstr "" msgid "Login failed" msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Tsy nahatafakatra!" - #: plugins/accelerometer/accelerometer.py:49 #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 @@ -1115,11 +2845,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1146,13 +2871,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "faharetana" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1179,15 +2897,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1228,22 +2937,10 @@ msgstr "" msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "mandrapaha" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "Ajanony" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1252,46 +2949,18 @@ msgstr "" msgid "journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Zavatra fihaino sy fijery ao amin'ny Firaketana Sugar" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 msgid "audio" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Zavatra fihaino amin'ny Firaketana Sugar" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "Zavatra fihaino amin'ny Firaketana Sugar" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Saha fanoritsoritan'ny Firaketana Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "asehoy" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "misarika soratra na mampiseho haino aman-jery avy ao amin'ny Firaketana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 msgid "show aligned" msgstr "" @@ -1304,31 +2973,6 @@ msgstr "" msgid "sets the scale of media" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "tehirizo ny sary" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "anaran-tsary" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "mitahiry sary ao amin'ny Firaketana Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "tehirizo SVG" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "mitahiry ireo sarin-tsokatra ho rakitra SVG ao amin'ny Firaketana Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "akelezo" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1455,23 +3099,10 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Andian-tsafidy fanampiny" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "atoseho" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" @@ -1484,10 +3115,6 @@ msgstr "" msgid "shows values in FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "foana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" @@ -1501,30 +3128,15 @@ msgstr "" msgid "pops value off FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "foana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "tsikera" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "pirinty" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1573,27 +3185,10 @@ msgstr "" msgid "runs code found in the tamyblock.py module found in the Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Karteziana" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "mampiseho ireo kôrdône karteziana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 msgid "polar" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "mampiseho kôrdône polera" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "sokatra" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1640,18 +3235,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "afeno ireo bolongana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "asehoy ireo bolongana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1674,19 +3261,6 @@ msgstr "" msgid "presentation template: list of bullets" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "" -"maodely fampisehoana: mifidiana zava-piraiketana (tsy misy mombamomba azy)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -#, fuzzy -msgid "presentation template: select Journal object (with description)" -msgstr "" -"maodely fampisehoana: mifidiana zava-piraiketana (tsy misy mombamomba azy)" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 msgid "presentation template: select four Journal objects" @@ -1699,41 +3273,10 @@ msgstr "" msgid "presentation template: select two Journal objects" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -#, fuzzy -msgid "xcor of left of screen" -msgstr "xcor-n'ny faritra havanan'ny efijery" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "fanambaniny" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -#, fuzzy -msgid "ycor of bottom of screen" -msgstr "xcor-n'ny faritra havanan'ny efijery" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor-n'ny faritra havanan'ny efijery" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -#, fuzzy -msgid "ycor of top of screen" -msgstr "xcor-n'ny faritra havanan'ny efijery" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "haavo" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1758,32 +3301,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "fanambaniny" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "famelabelarana" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "famelabelarana" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "famelabelarana" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "famelabelarana" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1811,20 +3328,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "Ajanony" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "Tehirizo" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1837,72 +3344,18 @@ msgstr "" msgid "make a uturn" msgstr "" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "ny fanao azy dia" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Tsy misy asa safidy:" - #: turtleblocks.py:255 msgid "File not found" msgstr "" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Reperitoaram-panefena tsy azo anoratana: %s" - #: turtleblocks.py:354 msgid "New" msgstr "" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Sokafy" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Tehirizo" - -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Tehirizo ho" - #: turtleblocks.py:362 msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "Rakitra" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Ovao refy ireo kaordône" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Ovao ny haben'ny bolongana" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Asehoy/Afeno ireo bolongana" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Fitaovana" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debageo" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Sokatra" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1915,18 +3368,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "havanana" - -#, fuzzy -#~ msgid "read" -#~ msgstr "mena" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Santionany" - #~ msgid "then else" #~ msgstr "raha tsy izay dia" diff --git a/po/mi.po b/po/mi.po index 6a995d6..6c45bf9 100644 --- a/po/mi.po +++ b/po/mi.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,707 +43,1731 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "HonuKaretao" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Ngā tohutohu honu papatā" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "Toi Honu Ririki" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "whakamua" - -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "ka neke whakamua i te honu" - -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "whakamuri" - -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "ka neke whakamuri i te honu" - -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "horoia" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "Rangirua Honu" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "ka ūkui i te mata me te tautuhi i te honu" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "Tīpako wero" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "mauī" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "ka huri i te honu whakatemauī (koki tākiri)" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "Papatā o te pesos Mehikana" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "matau" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "Papatā o te pesos Kurumupia" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "ka huri i te honu whakatematau (koki tākiri)" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Papatā o te francs Rewanata" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "pewa" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "Papatā o te tāra Amerikana" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "koki" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "Papatā o te tāra Ahitereiria" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "pūtoro" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "Papatā o te guaranies Parakuaiana" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "ka neke i te honu ki te pewa" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Papatā o te soles Peruwhiana Nueto" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "tautuhi xy" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "Papatā o te pesos Urukuaiana" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "HonuKaretao" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "whakarite te kaha o te LED mai i te 0 ki te 255" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "ka neke i te honu ki te tūnga xcor, ycor; (0, 0) kei waenga i te mata." +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "ka whakahoki i te taumata hina ahanoa hei tau mai i te 0 ki te 1023" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "tautuhi panekōrero" +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "ka whakahoki i te 1 i te wā e pēhi ana i te pātene, ka 0 atu i tērā" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "ka tautuhi i te panekōrero o te honu (0 kei te taha runga o te mata.)" +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "ka whakahoki i te taumata rama ngāwari hei tau mai i te 0 ki te 1023" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "ka whakahoki i te paemahana ngāwari hei tau mai i te 0 ki te 255" -#: TurtleArt/tabasics.py:226 +#: taextras.py:71 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -"kei te pupuri i te uara x-ruruku o nāianei o te honu (ka taea te whakamahi " -"atu i te tau paraka)" +"ka whakahoki i te tawhititanga mai i te ahanoa i mua i te pūoko hei tau mai " +"i te 0 ki te 255" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "ka whakahoki i te 0, i te 1 rānei e ai ki te hiahiatanga pūoko" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" msgstr "" -"kei te pupuri i te uara y-coordinate o nāianei o te honu (ka taea te " -"whakamahi atu i te tau paraka)" +"ka whakahoki i te 1 i te wā ka kite ngā pūoko i tētahi papa autō, ka 0 atu i " +"tēnā" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "panekōrero" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "ka huri mai i te 0 ki te 1, ko te auautanga e ai ki te tōiri" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:76 +msgid "returns the value of the resistance" msgstr "" -"ka pupuri i te uara panekōrero o nāianei o te honu (ka taea te whakamahi atu " -"i te tau paraka)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Papatā o ngā tono pene" +#: taextras.py:77 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "mata whakakī" +#: taextras.py:78 +msgid "button" +msgstr "pātene" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "tae" +#: taextras.py:79 +msgid "grayscale" +msgstr "tauine hina" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "uriuri" +#: taextras.py:80 +msgid "ambient light" +msgstr "rama ngāwari" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "ka whakakī i te papamuri me te (tae, uriuri)" +#: taextras.py:81 +msgid "temperature" +msgstr "paemahana" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "hina" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "tawhiti" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "tautuhi tae" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "tītaha" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "ka tautuhi i te tae o te rārangi ka tuhia e te honu" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "whakauta autō" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "tautuhi uriuri" +#: taextras.py:85 +msgid "vibration" +msgstr "tōiri" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "ka tautuhi i te uriuri o te rārangi ka tuhia e te honu" +#: taextras.py:86 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 "parenga" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "tautuhi hina" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "Karetao Putia" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "tāmata Putia" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "tāmata te tūnga o ngā paraka me te papatā Putia" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "whakakaha pūkaha Putia" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "ka whakahoki i te whakakaha pūkaha hei tau mai i te 0 ki te 255" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "terenga Putia" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "ka tautuhi i te hinahina o te rārangi ka tuhia e te honu" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "whakamua Putia" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "neke whakamua te karetao Putia" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "neke whakamua te karetao Putia mā te tawhititanga kua whakaritea kē" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "mauī Putia" + +#: taextras.py:103 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "huri whakatematau te karetao Putia" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "whakamuri Putia" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "neke whakamuri te karetao Putia" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "neke whakamuri te karetao Putia mā te tawhititanga kua whakaritea kē" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "matau Putia" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "huri whakatematau te karetao Putia" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "huri Putia" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "hurihia te karetao Putia x tīkiri" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "whakatū Putia" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "whakatūria te karetao Putia" + +#: taextras.py:115 +msgid "Butia" +msgstr "Putia" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "" -"ka pupuri i te tae pene o nāianei (ka taea te whakamahi atu i te tau paraka)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "ka pupuri i te uriuri pene o nāianei" +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "He hapa i te arawhititanga o te kāmera" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:121 +#, fuzzy +msgid "No camera was found" +msgstr "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Kāore i kitea he kāmera" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "I hapa te whakatū kāmera" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "I hapa te tīmata kāmera" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" msgstr "" -"ka pupuri i te taumata hina o nāianei (ka taea te whakamahi atu i te tau " -"paraka)" - -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pene ki runga" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Ka kore te honu e tuhi mēnā ka neke." +#: taextras.py:126 +msgid "FollowMe" +msgstr "TauaruMai" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pene ki raro" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Ka tuhi te honu ina ka neke." +#: taextras.py:128 +#, fuzzy +msgid "Search for a connected camera." +msgstr "Rapu i tētahi pereki NXT kua hono." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "whakatauritetika" + +#: taextras.py:131 +#, fuzzy +msgid "store a personalized calibration" +msgstr "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"ka whakahoki i tētahi whakatauritetika whaiaronga\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"ka whakahoki i tētahi whakatauritetika whaiaronga\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"ka penapena i tētahi whakatauritetika whaiaronga" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "ka whakahoki i tētahi whakatauritetika whaiaronga" + +#: taextras.py:133 +msgid "follow" +msgstr "tauaru" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "tauaru i tētahi tae, whakatauritetika rānei" + +#: taextras.py:135 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 "tīahotanga" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "tautuhi rahinga pene" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "tautuhi rahinga o te rārangi ka tuhia e te honu" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "ngā pika mōkito" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "tautuhia te mōkito tau pika hei tauaru" + +#: taextras.py:139 +msgid "threshold" +msgstr "paepae" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "tautuhia he paepae mō tētahi tae RGB" + +#: taextras.py:142 +msgid "camera mode" +msgstr "aratau kāmera" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +#, fuzzy +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"tautuhia te aratau tae o te kāmera ki te HSV\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"tautuhia te aratau tae o te kāmera ki te HSV\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"tautuhia te aratau tae o te kāmera, RGB, YUV, HSV rānei" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "tīmata whakakī" +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:147 +msgid "average color" msgstr "" -"ka tīmata i te tapamaha whakakī (ka whakamahia me te paraka whakakī mutunga)" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "whakakī mutunga" +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "whakaoti tapamaha whakakī (ka whakamahia ki te paraka whakakī tīmata)" +#: taextras.py:149 +msgid "x position" +msgstr "tūnga x" + +#: taextras.py:150 +msgid "return x position" +msgstr "whakahoki tūnga x" + +#: taextras.py:151 +msgid "y position" +msgstr "tūnga y" + +#: taextras.py:152 +msgid "return y position" +msgstr "whakahoki tūnga y" + +#: taextras.py:153 +msgid "pixels" +msgstr "ngā pika" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "whakahoki te tau o ngā pika o te pukupuku nui" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "tautuhia te aratae tau o te kāmera ki te RGB" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "tautuhia te aratau tae o te kāmera ki te YUV" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "tautuhia te aratau tae o te kāmera ki te HSV" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "whakaputu whakatauritetika" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "he hapa ki te tahuringa aho" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "KaretaoTāpiri" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "terenga KaretaoTāpiri" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "tukuna te terenga ki te KaretaoTāpiri" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "tautuhia te terenga taunoa mō ngā tohutohu nekehanga" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "whakamua KaretaoTāpiri" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "neke whakamua KaretaoTāpiri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "whakamuri KaretaoTāpiri" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "neke whakamuri KaretaoTāpiri" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "whakatū KaretaoTāpiri" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "whakatū i te KaretaoTāpiri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "whakatemauī KaretaoTāpiri" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "whakaneke mauī i te KaretaoTāpiri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "whakatematau KaretaoTāpiri" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "whakaneke matau i te KaretaoTāpiri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.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:187 +msgid "angle to center" +msgstr "anga whakatewaenga" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "tīkina te koki ki waenga o te dohyo" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "anga ki Hoariri" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "tīkina te koki ki te Hoariri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "ruruku x. KaretaoTāpiri" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "tīkina te ruruku x o te KaretaoTāpiri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "ruruku y. KaretaoTāpiri" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "tīkina te ruruku y o te KaretaoTāpiri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "ruruku x. Hoariri" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "tīkina te ruruku x o te Hoariri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "ruruku y. Hoariri" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "tīkina te ruruku y o te Hoariri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "tītaka KaretaoTāpiri" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "tīkina te tītaka o te KaretaoTāpiri" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "tītaka Hoariri" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "tīkina te tītaka o te Hoariri" + +#: taextras.py:212 +msgid "distance to center" +msgstr "tawhiti ki te tauwaenga" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "tīkina te tawhititanga ki waenga o te dohyo" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "tawhititanga ki te Hoariri" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "tikina te tawhititanga ki te Hoariri" + +#: taextras.py:217 +msgid "update information" +msgstr "whakahōu mōhiohio" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "whakahōu mōhiohio mai i te tūmau" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "Papatā o ngā paraka ahupūngao" + +#: taextras.py:224 +msgid "start polygon" +msgstr "tīmata tapamaha" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" +"Tīmata te tautuhi i tētahi tapamaha hōu e ai ki te tūnga xy o te Honu o " +"nāianei." -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "rahinga pene" +#: taextras.py:227 +msgid "add point" +msgstr "tāpiri ira" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." msgstr "" -"ka pupuri i te rahinga pene o nāianei (ka taea te whakamahi atu i te tau " -"paraka)" +"Tāpiri i tētahi ira hōu ki te tapamaha o nāianei e ai ki te tūnga xy Honu o " +"nāianei." + +#: taextras.py:230 +msgid "end polygon" +msgstr "whakamutu tapamaha" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "Tautuhia he tapamaha hōu." + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "whakakī mutu tapamaha" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "Ehara i te tapamaha mataiti" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "Tautuhia he tapamaha whakakī hōu." + +#: taextras.py:235 +msgid "triangle" +msgstr "tapatoru" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "taketake" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "teitei" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Papatā o ngā tae pene" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "Tāpiri he ahanoa tapatoru ki te tūmahi." -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "whero" +#: taextras.py:240 +msgid "circle" +msgstr "porohita" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "karaka" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "Tāpiri i tētahi ahanoa porohita ki te tūmahi." -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "kōwhai" +#: taextras.py:242 +msgid "rectangle" +msgstr "tapawhā" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "kākāriki" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "whānui" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "kawariki" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "Tāpiri i tētahi ahanoa tapawhā ki te tūmahi." -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "kikorangi" +#: taextras.py:246 +msgid "reset" +msgstr "tautuhi anō" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "waiporoporo" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "Tautuhi anō i te tūmahi; ūkuia te rārangi ahanoa." -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "mā" +#: taextras.py:248 +msgid "motor" +msgstr "pūkaha" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "pango" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "autōhuri" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "tautuhi tae kupu" +#: taextras.py:251 +msgid "speed" +msgstr "tere" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "ka tautuhi i te tae o te kupu kua tuhia e te honu" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Te awhe pūkaha autōhuri me te tere mai i 0 (weto) ki te tau tōrunga; ka " +"tukuna te pūkaha ki runga i te ahanoa i waihanga muri tata nei." -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "tautuhi rahinga kupu" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "pine" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "ka tautuhi i te rahinga o te kupu kua tuhia e te honu" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "Pinea te ahanoa kia kore e taka." -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Papatā o ngā kaimahi tau" +#: taextras.py:256 +msgid "joint" +msgstr "hononga" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "tāpiri" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "ka tāpiri i ngā tāurunga namatau" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "tango" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Honoa ngā ahanoa e rua (te mea i waihanga muri tana nei, me te ahanoa kei te " +"tūnga x, y)." + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "tiaki hei hohe Ahupūngao" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Tiakina te tūmahi ki te Tuhitaka hei hohe Ahupūngao." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "utauta" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "Tāpiri he ahanoa utauta ki te tūmahi." + +#: taextras.py:266 +msgid "density" +msgstr "rōrahi" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" +"Tautuhia te āhuatanga mātōtoru mō ngā ahanoa (e āhei ana ngā tau tōrunga " +"katoa)." -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "ka tango i ngā tāurunga tau raro mai i te tāurunga tau runga" +#: taextras.py:269 +msgid "friction" +msgstr "waku" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "whakarau" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Tautuhia te āhuatanga waku mō ngā ahanoa (uara mai i te 0 ki te 1, ko te 0 " +"ka whakaweto i te waku ko te 1 he waku kaha)." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "hūpeketanga" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Tautuhia te āhuatanga hūpeketanga mō ngā ahanoa (uara mai i te 0 ki te 1, ko " +"te 0 kāore he hūpeketanga ko te 1 he hūpeketanga kaha)." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "hihiri" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Mēnā ko te hihiri = 1, ka taea e te ahanoa te neke; Mēnā ko te hihiri = 0, " +"kua mau ki te tūnga." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "Papatā o ngā paraka MahiMātou" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "ka whakarau i ngā tāurunga tau e rua" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "whakawehe" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:289 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"huaputa pūoko tītaka: (-1 == kore tītaka, 0 == tītaka whakamua, 3 == tītaka " +"whakamuri, 1 == tītaka mauī, 2 == tītaka matau)" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "huaputa pūoko tawhititanga" + +#: taextras.py:294 +msgid "Motor A" +msgstr "Pūkaha A" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "ka whakahoki i te uara o nāianei mō Pūkaha A" + +#: taextras.py:296 +msgid "Motor B" +msgstr "Pūkaha B" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "ka whakahoki i te uara o nāianei mō Pūkaha B" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "tautuhia te uara mō Pūkaha A" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "tautuhia te uara mō Pūkaha B" + +#: taextras.py:300 +msgid "WeDo is unavailable" msgstr "" -"ka whakawehengia te tāurunga tau runga (haurunga) e te tāurunga tau raro " -"(hauraro)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "tuakiri" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "kaimahi tuakiri kua whakamahia hei whakatoro paraka" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Papaptā o ngā paraka LEGO NXT o ngā pūkaha" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Papaptā o ngā paraka LEGO NXT o ngā pūoko" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "pā" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "pāorooro" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "tae" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "kaimahi whakakāwai (toenga)" +#: taextras.py:318 +msgid "light" +msgstr "rama" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "oro" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "Pūtake rua" +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "hina" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "ka tatauria te pūtake rua" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +#, fuzzy +msgid "Please check the connection with the brick" +msgstr "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Taki koa i te hononga me te pereki." -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "tupurangi" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "mōkito" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "mōrahi" +#: taextras.py:325 +#, fuzzy +msgid "The value of power must be between -127 to 127" +msgstr "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ko te uara hiko me noho i waenga i te -127 to 127." -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -"ka whakahoki tau tupurangi i waenga i ngā uara mōkito (runga) me ngā uara " -"mōrahi (raro)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "tau" +#: taextras.py:327 +#, fuzzy +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Kua puta tētahi hapa: taki i ngā hononga katoa ka ngana ki te hono anō." -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "kua whakamahia hei tāurunga tau i roto i ngā kaimahi pāngarau" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "rahi ake i" +#: taextras.py:329 +msgid "NXT not found" +msgstr "NXT kāore i kitea" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "arorau rahi-ake i te kaimahi" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "iti ake" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "tāmata NXT" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "arorau iti-ake i te kaimahi" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "Rapu i tētahi pereki NXT kua hono." -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "ōrite" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "arorau ōrite ki te kaimahi" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ehara" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "arorau EHARA i te kaimahi" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr " me " +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "arorau ME te kaimahi" +#: taextras.py:338 +msgid "play tone" +msgstr "whakatangi rangi" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "rānei" +#: taextras.py:339 +msgid "frequency" +msgstr "auautanga" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "arorau, kaimahi RĀNEI" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "wā" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Papaptā o ngā kaimahi rere" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "Whakatangi i tētahi rangi ki tētahi auautanga mō te wā kua whakaritea." -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "taihoa" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "tāria kawenga papatono, he tau hēkona kua whakaritea" +#: taextras.py:344 +msgid "port" +msgstr "tauranga" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "mō ake tonu" +#: taextras.py:345 +msgid "power" +msgstr "hiko" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "koromeke mō ake tonu" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "ngā takahuringa" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "tārua" +#: taextras.py:348 +msgid "turn a motor" +msgstr "takahuri i tētahi pūkaha" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "koromeke mo ngā wā kua whakaritea" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "mēnā" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "kātahi ka" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" +"Tukutahitia ngā pūkaha e rua kua hono ki te TAURANGA B me te TAURANGA C" + +#: taextras.py:352 +msgid "PORT A" +msgstr "TAURANGA A" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "TAURANGA A o te pereki" + +#: taextras.py:354 +msgid "PORT B" +msgstr "TAURANGA B" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "TAURANGA B o te pereki" + +#: taextras.py:356 +msgid "PORT C" +msgstr "TAURANGA C" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "TAURANGA C o te pereki" + +#: taextras.py:358 +msgid "start motor" +msgstr "tīmata pūkaha" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "Whakahaere i tētahi pūkaha mō ake tonu atu." + +#: taextras.py:360 +msgid "brake motor" +msgstr "whakatū pūkaha" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "Whakatū i tētahi pūkaha kua whakatauria." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "tautuhi anō i te pūkaha" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "Tautuhi anō i te kaitatau pūkaha." + +#: taextras.py:365 +msgid "motor position" +msgstr "tūnga pūkaha" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "Tiki i te tūnga pūkaha." + +#: taextras.py:367 +msgid "PORT 1" +msgstr "TAURANGA 1" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "TAURANGA 1 o te pereki" + +#: taextras.py:369 +msgid "read" +msgstr "pānui" + +#: taextras.py:370 +msgid "sensor" +msgstr "pūoko" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "Pānui huaputa pūoko." + +#: taextras.py:372 +msgid "PORT 2" +msgstr "TAURANGA 2" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "TAURANGA 2 o te pereki" + +#: taextras.py:374 +msgid "light sensor" +msgstr "pūoko rama" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "mēna...kātahi ka" +#: taextras.py:376 +msgid "PORT 3" +msgstr "TAURANGA 3" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "TAURANGA 3 o te pereki" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "pūoko pā" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "pūoko tawhiti" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "TAURANGA 4" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "TAURANGA 4 o te pereki" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "pūoko oro" + +#: taextras.py:383 +msgid "color sensor" +msgstr "pūoko tae" + +#. #-#-#-#-# mi.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) +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.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:386 +msgid "set light" +msgstr "tautuhi rama" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "Tautuhi rama pūoko tae." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "taumata pūkaha" + +#: taextras.py:390 +#, fuzzy +msgid "Get battery level of the brick" +msgstr "" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Tikina te taumata pūkaha o te paraka." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "TIKETIKE" + +#: taextras.py:396 +msgid "LOW" +msgstr "PĀPAKU" + +#: taextras.py:397 +msgid "INPUT" +msgstr "TĀURU" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "HUAPUTA" + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:401 +msgid "SERVO" +msgstr "TŪMAU" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "HAPA: Taki i te tau me te Aratuino o te tauranga." + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "HAPA: Me whai tau i waenga i te 0 ki te 255 e te uara." + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "HAPA: Me TEITEI, PĀPAKU rānei te uara." + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "HAPA: Me TĀURU, HUAPUTA, PWM, TŪMARU rānei te aratau." + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: taextras.py:407 +msgid "Search for connected Arduinos." msgstr "" -"ko te kaimahi mēnā-kātahi ka whakamahi i ngā kaimahi pūreiana mai i te " -"papatā Tau" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "kē atu" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "Mēna...Kātahi ka...kē atu" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:410 +msgid "number of Arduinos" msgstr "" -"kaimahi mēnā-kātahi ka-kē atu ka whakamahi i ngā kaimahi pūreiana mai i te " -"papatā Tau" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "mokowā whakapae" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "oma tāpe tika" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "mokowā poutū" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "oma tāpae raro" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.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:416 +msgid "pin mode" +msgstr "aratau pine" + +#: taextras.py:418 +msgid "mode" +msgstr "aratau" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Tīpakohia te taumahi pine (TĀURU, HUAPUTA, PWM, TŪMAU)." + +#: taextras.py:420 +msgid "analog write" +msgstr "tuhi tairitenga" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "uara" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "whakatū hohenga" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "Tuhi uara tairitenga ki te tauranga kua whakatauria." -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "whakatū hohenga o nāianei" +#: taextras.py:423 +msgid "analog read" +msgstr "pānui tairitenga" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Papatā o ngā paraka rerekē" +#: taextras.py:424 +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 "" +"Pānui uara mai i te tauranga tairitenga. E taea ana tētahi uara mai i te 0 " +"ki te 1023. Whakamahia te Vref hei whakatau ngaohiko. Mō USB, ngaohiko=" +"((read)*5)/1024) pātata." + +#: taextras.py:426 +msgid "digital write" +msgstr "tuhi mamati" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "Tuhi uara mamati ki te tauranga kua whakatauria." + +#: taextras.py:428 +msgid "digital read" +msgstr "pānui mamati" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "Pānui uara mai i te tauranga mamati." + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "Tautuhi uara TIKETIKE hei tauranga mamati." + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "Whirihora tauranga Atuino mō te tāurunga mamati." + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "Whirihora tauranga Atuino hei hautū tūmau." + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "Tautuhi uara PĀPAKU hei tauranga mamati." + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "Whirihora tauranga Atuino hei huaputa mamati." + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Whirihora tauranga Atuino hei PWM (pulse-width modulation)." + +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "Papatā o ngā paraka MahiMātou" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "tīmata" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "ka hono hohenga ki ngā pātene oma paeutauta" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "kupu" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "uara aho" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "hohenga" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "runga o te tāpae hohenga whai ingoa" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "ka whakaara tāpae hohenga whai ingoa" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "penapena ki pouaka 1" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "ka penapena uara tau ki Tāupe 1" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "penapena ki pouaka 2" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "ka penapena uara tau ki Tāupe 2" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "pouaka 1" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Tāupe 1 (uara tau)" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "pouaka 2" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Tāupe 2 (uara tau)" +#: taextras.py:465 +msgid "capture" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "penapena ki" +#: taextras.py:466 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "pouaka" +#: taextras.py:467 +msgid "samples" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "uara" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "taku pouaka" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "ka penapena uara tau ki te tāupe ingoa" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "tāupe whai ingoa (uara tau)" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "hohenga 1" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "runga o te tāpae Hohenga 1" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "hohenga 2" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "runga o te tāpae Hohenga 2" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "ka whakaara tāpae Hohenga 1" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "ka whakaara tāpae Hohenga 2" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "paraurehe" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "putu paraurehe" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "ka putu tūemi i te paraurehe mō ake tonu atu" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "whakaora te katoa" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "whakaora i ngā paraka katoa mai i te paraurehe" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "ūkui katoa" +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "nekehia ngā paraka katoa ki te paraurehe" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Tiri i ngā paraka kua tīpakohia" +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "haere anō te whakatangi ataata, ororongo rānei" #: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 #: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 @@ -732,855 +1781,714 @@ msgstr "Tiri i ngā paraka kua tīpakohia" msgid "Title" msgstr "Taitara" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Whakatū honu" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Whakaatu paraka" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Hunaia ngā paraka" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "kāore i huaputa ki" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "kāore au e mōhio ki te" - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "kāore e pai ki" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "hei tāuru" - -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "ka whakaatu i te papatā panuku" - -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "ka huri i te takotoranga o te papatā o ngā paraka" - -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Utaina..." +#: 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 "Tae RGB hea mai i te kāmera kua pēhia ki te tāpae" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Tiaki..." +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "kōwhai" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "pāwhiri ki te tuwhera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "ka whakaatu i ngā ruruku pitorua" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "takotoranga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "ka whakaputu i FILO (tāpae first-in-last-out)" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "panuku" +#: 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 "huaputa kāmera" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "neke" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "pēhi whakaterenga kei x, y, z ki te pūkai" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" +"ko te kaimahi mēnā-kātahi ka whakamahi i ngā kaimahi pūreiana mai i te " +"papatā Tau" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Tīpako paraka hei tiri" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Toi Honu" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "atahanga" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Tiaki hei Tapanga" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "oma tāpe tika" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Tiaki hei atahanga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "ahanoa pāpāho Tuhitaka Sugar" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "hopuāhua" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "pouaka 2" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Tiaki hopuāhua" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "pouaka 1" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Whakaweto āwhina topa" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Hipanga" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Whakakā āwhina topa" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "ka whakarau i ngā tāurunga tau e rua" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Whakaatu papatā" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Whakaatu/huna paraka" #: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 msgid "Hide palette" msgstr "Huna papatā" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Whakakē raro ngā ruruku" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Whakakē runga ngā ruruku" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Ngā Hoa" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Whakatika" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Taku wātū Toi Honu" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Tiro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "ahanoa ataata Tuhitaka Sugar" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Kaupapa" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "kawariki" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Tiaki/Utaina" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor whakatematau o te mata" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Tārua" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Papatā o ngā ētahi atu kōwhiringa" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Whakapiri" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Uta tauira" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Whakaora i ngā paraka katoa mai i te paraurehe" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "nekehia ngā paraka katoa ki te paraurehe" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Matakatoa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "rārangi" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Ruruku Cartesian" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Kāore te wharonga whirihora e āhei ana te tuhi: %s" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Ruruku Polar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "haere anō pāpāho" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Ruruku ā-Ngahuru" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "panekōrero" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Whakatipu paraka" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Kua monokia ngā paraka tiri" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Tīngongo paraka" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "ka tiaki whakairoiro honu hei kōnae SVG ki te Tuhitaka Sugar" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Uta tauira" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "tuhi kupu, whakaatu pāpāho rānei mai i te Tuhitaka" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Horoia" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Whakahaere" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "ataata" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Hipanga" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "kikorangi" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Āwhina" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "ka whakaatu ruruku Katihini" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Tū" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Hohe kōwhiringa kore:" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Uta kaupapa" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "oma tāpae raro" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Uta monomai" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "kaimahi whakakāwai (toenga)" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Uta paraka Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "raro y" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "papa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "tiaki SVG" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Kua monokia ngā paraka tiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "" +"ka whakahaere i te waehere ka kitea ki te kōwae tamyblock.py kei te Tuhitaka" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pene ki raro" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "taihoa" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "pouaka" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "I rahu te tukuatu!" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "neke" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Kāore i taea te tāutu monomai." +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "ka whakaara tāpae hohenga whai ingoa" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Tīmata anō i te Toi Honu kia taea te whakamahi i te monomai." +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "hohenga" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Kua tāuta kē te monomai %s." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"kaimahi mahi-tae-noa-Tūturu ka whamahi i ngā kaimahi pūreana mai i te papatā " +"Tau" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "E hiahia ana koe ki te tāuta anō i %s?" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "ko te whakamahinga" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Taku wātū Toi Honu" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Tāupe 2 (uara tau)" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Whakahohe ngātahitanga" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "whakawehe" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Ngā Hohe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "ingoa pikitia" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Ngā Hoa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "i te wā" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Tiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "te whānuitanga kānawehi" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Whirihoranga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "whakaputu tāpae?" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Takiwā" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "tāupe whai ingoa (uara tau)" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Ingoakāinga" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "panuku" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "ID Pūkete" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "mēna...kātahi ka" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Tūmau" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "tautuhi rahinga pene" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Tauranga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "" +"tātauira whakaaturanga: tīpako ahanoa Tuhitaka (kāore he whakaahuatanga)" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Kupuhipa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "hei te" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Rēhita" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "whakatū pāpāho" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Ngā Tae" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Whakakā āwhina topa" -#: 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 "Tukuatu" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "ka putu tūemi i te paraurehe mō ake tonu atu" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "huri whakamuri" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Tukuatu ki te Tukutuku" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "runga o te tāpae Hohenga 1" -#: gnome_plugins/uploader_plugin.py:90 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"Me whai pūkete koe ki http://turtleartsite.sugarlabs.org kia tukuatu i tō " -"kaupapa." +"he paraka e taea ana te whakapapatono: ka whakamahia hei tāpiri whārite " +"pāngarau tāupe takitahi ara atu anō, e.g sin(x)" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Ingoakaiwhakamahi:" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Papaptā o ngā kaimahi rere" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Kupuhipa:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "te runga o te tāpae kua tiango" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Taitara:" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"kaimahi mēnā-kātahi ka-kē atu ka whakamahi i ngā kaimahi pūreiana mai i te " +"papatā Tau" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Whakaaturanga:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "ka whakahoki i te ruruku kiore y" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Tuku ki te Tukutuku" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "ka pupuri i te uriuri pene o nāianei" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Whakakore" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "ngaruaho" #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "Kua rahu te takiuru" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "I rahu te tukuatu!" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "mauī x" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Papatā o ngā paraka pūoko" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "tautuhi panekōrero" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "whakaterenga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "kua peia te tae RGB ki raro i te honu ki te tāpae" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "pēhi whakaterenga kei x, y, z ki te pūkai" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "ka whakapaipai i te kānawehi mā te huna paraka" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "oro" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "tohu tāuru hopureo mata" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "hoihoi" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "rōrahi tāuru hopureo" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "rangi" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "rangi tāuru hopureo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Kaimahi Python chr" -#: 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 "parenga" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "mokowā whakapae" -#: 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 "parenga tāuru hopureo" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Ruruku ā-Ngahuru" -#: 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 "ngaohiko" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "uara aho" -#: 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 "ngaohiko tāuru hopureo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "whakaahuatanga" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Papatā o ngā ahanoa pāpāho" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "kāore au e mōhio ki te" -#: 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 "tīahotanga" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "tautuhi rahinga kupu" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "taumata rama ka haurapahia e te kāmera" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Ingoakaiwhakamahi:" -#: 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 "Tae RGB hea mai i te kāmera kua pēhia ki te tāpae" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"ka tīmata i te tapamaha whakakī (ka whakamahia me te paraka whakakī mutunga)" -#: 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 "huaputa kāmera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "tātauira whakaaturanga: tīpako ahanoa Tuhitaka e whā" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "taumata rama ka haurapahia e te pūoko rama" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Tiro" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "ka tautuhi i te hinahina o te rārangi ka tuhia e te honu" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "pānui uara mai i te pūrere RFID" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Kupuhipa:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "i te wā" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "ka kite te honu i" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"kaimahi mahi-i-te-wā-Tūturu ka whakamahi i ngā kaimahi pūreana mai i te " -"papatā Tau" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "whakatū hohenga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "hei te" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "kākāriki" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"kaimahi mahi-tae-noa-Tūturu ka whamahi i ngā kaimahi pūreana mai i te papatā " -"Tau" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "uriuri" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "runga" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "ka whakakī i te papamuri me te (tae, uriuri)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "te runga o te tāpae e taea ana te tiango" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "tiaki pikitia" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "tuhitaka" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "rangi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "ahanoa pāpāho Tuhitaka Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "ka whakahoki 1 mēnā ka pēhia te pātene kiore" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ororongo" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Whakakē runga ngā ruruku" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "ahanoa ororongo Tuhitaka Sugar" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pene ki runga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "ataata" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "karaka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "ahanoa ataata Tuhitaka Sugar" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "tāria kawenga papatono, he tau hēkona kua whakaritea" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "whakaahuatanga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "ka peia te uara ki runga i FILO (tāpae first-in last-out)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "āpure whakaahuatanga Tuhitaka Sugar" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "ūkui katoa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "whakaatu" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "kātahi ka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "tuhi kupu, whakaatu pāpāho rānei mai i te Tuhitaka" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Rēhita" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "whakaatu tīaroaro" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ehara" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "tautuhi tauine" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "Mēna...Kātahi ka...kē atu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "ka tautuhi i te tauine o te pāpāho" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "whakatū hohenga o nāianei" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "tiaki pikitia" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "ka huri i te honu whakatematau (koki tākiri)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "ingoa pikitia" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"ka pupuri i te taumata hina o nāianei (ka taea te whakamahi atu i te tau " +"paraka)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "tiaki pikitia ki te Tuhitaka Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor whakatemauī o te mata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "tiaki SVG" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Tautuhi anō i te rahinga paraka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "ka tiaki whakairoiro honu hei kōnae SVG ki te Tuhitaka Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "honu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "tauine" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "ka whakaatu i te papatā panuku" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "ka pupuri uara tauine o nāianei" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "huna paraka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "taihoa pāpāho" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "taumata rama ka haurapahia e te kāmera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "taihoa kia oti te ataata o nāianei, te ororongo rānei" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Kaimahi Python int" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "whakatū pāpāho" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "arorau iti-ake i te kaimahi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "whakatū ataata, ororongo rānei" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "whakaora i ngā paraka katoa mai i te paraurehe" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "tatari pāpāho" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Tiaki" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "tatari ataata, ororongo rānei" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "penapena ki pouaka 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "haere anō pāpāho" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "penapena ki pouaka 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "haere anō te whakatangi ataata, ororongo rānei" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "ka hunaia ngā paeutauta Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "whakahua" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"kei te pupuri i te uara x-ruruku o nāianei o te honu (ka taea te whakamahi " +"atu i te tau paraka)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "kia ora" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "tā" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "kōrero kupu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "ka whakahoki i te ruruku kiore x" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "ngaruaho" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "whero" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "pūrahi ngaru" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Tiaki hei Tapanga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "roanga" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "ka tautuhi i te tae o te rārangi ka tuhia e te honu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"ka whakatangi i tētahi sinewave auautanga, roanga, pūrahi ngaru hoki (ki ngā " -"hēkona)" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "tautuhi tae kupu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "pātene raro" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "hoihoi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "ka whakahoki 1 mēnā ka pēhia te pātene kiore" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Whakahohe ngātahitanga" + +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Papatā o ngā paraka pūoko" + +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Uta monomai" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "ka whakahoki Tika mēnā ka pēhia te pātene kiore" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "kiore x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "ka whakahoki i te ruruku kiore x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "kiore y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "ka whakahoki i te ruruku kiore y" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "tau" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "papapātuhi uiui" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "uiui mō te tāuru papapātuhi (hua kua penapena ki te paraka papapātuhi)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "runga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "papapātuhi" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Tuku ki te Tukutuku" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "pupuri i ngā hua o te paraka papapātuhi-uiui hei ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Ruruku Cartesian" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "pānui pika" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Ingoakāinga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "kua peia te tae RGB ki raro i te honu ki te tāpae" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "tautuhi tauine" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "ka kite te honu i" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Tiri i ngā paraka kua tīpakohia" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "ka whakahoki i te tae e \"kite\" nei te honu" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "mā" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "wā" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "ka hono hohenga ki ngā pātene oma paeutauta" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "wā hipa (ki ngā hēkona) mai i te wā i tīmata te papatono" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Papatā o ngā ētahi atu kōwhiringa" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "peia" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "ka peia te uara ki runga i FILO (tāpae first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "whakaatu tāpae" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "ka whakaatu i te uara ki runga i FILO (tāpae first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "putu tāpae" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "ka whakaputu i FILO (tāpae first-in-last-out)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "pahū" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "ka pahū i te uara mai i FILO (tāpae first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "whakaputu tāpae?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "ka whakahoki Tika mēnā kei te putu te tāpae" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "tākupu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "ka tuku tākupu ki tō waehere" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "tā" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "pūrahi ngaru" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "ka tā uara ki roto i ngā paraka tūnga kei raro o te mata" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Whakakore" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Kaimahi Python chr" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "te teiteitanga kānawehi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Kaimahi Python int" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "whakaaturanga 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "tango" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"he paraka e taea ana te whakapapatono: ka whakamahia hei tāpiri whārite " -"pāngarau tāupe takitahi ara atu anō, e.g sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr " me " -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"he paraka e taea ana te whakapapatono: ka whakamahia hei tāpiri whārite " -"pāngarau tāupe takitini arā atu anō, e.g., taupūrua(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "te runga o te tāpae e taea ana te tiango" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"he paraka e taea ana te whakapapatono: ka whakamahia hei tāpiri whārite " -"pāngarau tāupe takitini arā atu anō, e.g., sin(x*x+y*y)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "hei tāuru" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1588,57 +2496,28 @@ msgstr "" msgid "Python block" msgstr "Paraka python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "" -"ka whakahaere i te waehere ka kitea ki te kōwae tamyblock.py kei te Tuhitaka" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Katihini" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "ka whakaatu ruruku Katihini" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "pitorua" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "ka whakaatu i ngā ruruku pitorua" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "honu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "ka kōwhiri tēwhea honu hei tohutohu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "taihoa pāpāho" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "anga honu" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "whakaterenga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "meatia he 'anga' ritenga ki runga i te honu" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"ka pupuri i te rahinga pene o nāianei (ka taea te whakamahi atu i te tau " +"paraka)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "te runga o te tāpae kua tiango" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "tautuhi tae" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "uta" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "mōkito" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1646,71 +2525,69 @@ msgstr "uta" msgid "loads a block" msgstr "ka uta i tētahi paraka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "tautuhixy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Papatā o ngā tono pene" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "papa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "ka whakaatu i te uara ki runga i FILO (tāpae first-in last-out)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "ka tīpako papa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"kaimahi mahi-i-te-wā-Tūturu ka whakamahi i ngā kaimahi pūreana mai i te " +"papatā Tau" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Papatā o ngā tātauira whakaaturanga" +#: turtleblocks.py:363 +msgid "File" +msgstr "Kōnae" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "huna paraka" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "arorau EHARA i te kaimahi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "ka whakapaipai i te kānawehi mā te huna paraka" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor whakateraro o te mata" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "whakaatu paraka" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "tātauira whakaaturanga: tīpako ahanoa Tuhitaka (he whakaaturanga)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "ka whakaora i ngā paraka huna" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Papatā o ngā kaimahi tau" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "ka hunaia ngā paeutauta Sugar" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "whakarau" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "rārangi" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "mō ake tonu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "rārangi pere whakaaturanga" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Kua tāuta kē te monomai %s." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "tātauira whakaaturanga: rārangi pere" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "ka tautuhi i te uriuri o te rārangi ka tuhia e te honu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "" -"tātauira whakaaturanga: tīpako ahanoa Tuhitaka (kāore he whakaahuatanga)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "kōrero kupu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "tātauira whakaaturanga: tīpako ahanoa Tuhitaka (he whakaaturanga)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "hopuāhua" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "tātauira whakaaturanga: tīpako ahanoa Tuhitaka e whā" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "horoia" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1719,1004 +2596,1044 @@ msgstr "tātauira whakaaturanga: tīpako ahanoa Tuhitaka e whā" msgid "presentation template: select two Journal objects" msgstr "tātauira whakaaturanga: tīpako ahanoa Tuhitaka e rua" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor whakatemauī o te mata" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "raro" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor whakateraro o te mata" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "whānui" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "te whānuitanga kānawehi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor whakatematau o te mata" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor whakaterunga o te mata" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "teitei" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "te teiteitanga kānawehi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "taitara x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "taitara y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "mauī x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "runga y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "matau x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Whakatipu paraka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "raro y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Matakatoa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "whakaaturanga 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Kāore te kōnae i kitea" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "whakaaturanga 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "whakaatu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "whakaaturanga 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "kupu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "whakaaturanga 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "tupurangi" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "arorau rahi-ake i te kaimahi" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "ka huri i te honu whakatemauī (koki tākiri)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "pango" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "ka tatauria te pūtake rua" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" +"kei te pupuri i te uara y-coordinate o nāianei o te honu (ka taea te " +"whakamahi atu i te tau paraka)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "peia te taunga rgb ki te pūkai" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "kiore x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "kiore y" #: pysamples/grecord.py:215 msgid "stop" msgstr "tū" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "pūrei" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "tiaki" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "ētahi atu" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "huri whakamuri" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "huri whakamuri" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "ko te whakamahinga" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Hohe kōwhiringa kore:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Kāore te kōnae i kitea" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Kāore te wharonga whirihora e āhei ana te tuhi: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Hōu" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Whakatuwhera" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Tiaki" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Tiaki hei" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Waiho" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Kōnae" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Tauine anō i ngā ruruku" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Tautuhi anō i te rahinga paraka" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Whakaatu/huna paraka" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Ngā Utauta" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Patuiro" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Honu" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "rahi ake i" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Kei a koe he mahi kāore anō kia tiaki. Me tiaki i mua i te waihotanga?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Āwhina" #: turtleblocks.py:448 msgid "Save project?" msgstr "Tiaki tūmahi?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Toi Honu Ririki" - -#~ msgid "Turtle Confusion" -#~ msgstr "Rangirua Honu" - -#~ msgid "Select a challenge" -#~ msgstr "Tīpako wero" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Papatā o te pesos Mehikana" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Papatā o te pesos Kurumupia" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Papatā o te francs Rewanata" - -#~ msgid "Palette of US dollars" -#~ msgstr "Papatā o te tāra Amerikana" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Papatā o te tāra Ahitereiria" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Papatā o te guaranies Parakuaiana" - -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Papatā o te soles Peruwhiana Nueto" - -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Papatā o te pesos Urukuaiana" - -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "whakarite te kaha o te LED mai i te 0 ki te 255" - -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "ka whakahoki i te taumata hina ahanoa hei tau mai i te 0 ki te 1023" - -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "ka whakahoki i te 1 i te wā e pēhi ana i te pātene, ka 0 atu i tērā" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "ka kōwhiri tēwhea honu hei tohutohu" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "ka whakahoki i te taumata rama ngāwari hei tau mai i te 0 ki te 1023" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "matau x" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "ka whakahoki i te paemahana ngāwari hei tau mai i te 0 ki te 255" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "ka tautuhi i te tae o te kupu kua tuhia e te honu" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "ka whakahoki i te tawhititanga mai i te ahanoa i mua i te pūoko hei tau mai " -#~ "i te 0 ki te 255" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "taumata rama ka haurapahia e te pūoko rama" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "ka whakahoki i te 0, i te 1 rānei e ai ki te hiahiatanga pūoko" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Kāore i taea te tāutu monomai." -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "ka whakahoki i te 1 i te wā ka kite ngā pūoko i tētahi papa autō, ka 0 atu i " -#~ "tēnā" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "papapātuhi" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "ka huri mai i te 0 ki te 1, ko te auautanga e ai ki te tōiri" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "pewa" -#~ msgid "LED" -#~ msgstr "LED" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "pūtoro" -#~ msgid "button" -#~ msgstr "pātene" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Ruruku Polar" -#~ msgid "grayscale" -#~ msgstr "tauine hina" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "tautuhi uriuri" -#~ msgid "ambient light" -#~ msgstr "rama ngāwari" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "arorau ME te kaimahi" -#~ msgid "temperature" -#~ msgstr "paemahana" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Me whai pūkete koe ki http://turtleartsite.sugarlabs.org kia tukuatu i tō " +"kaupapa." -#~ msgid "distance" -#~ msgstr "tawhiti" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "papa" -#~ msgid "tilt" -#~ msgstr "tītaha" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Whakahaere" -#~ msgid "magnetic induction" -#~ msgstr "whakauta autō" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "whakaatu tāpae" -#~ msgid "vibration" -#~ msgstr "tōiri" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "ka tautuhi i te panekōrero o te honu (0 kei te taha runga o te mata.)" -#~ msgid "Butia Robot" -#~ msgstr "Karetao Putia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "ka tīpako papa" -#~ msgid "refresh Butia" -#~ msgstr "tāmata Putia" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "rōrahi tāuru hopureo" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "tāmata te tūnga o ngā paraka me te papatā Putia" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Taitara:" -#~ msgid "battery charge Butia" -#~ msgstr "whakakaha pūkaha Putia" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Papatā o ngā ahanoa pāpāho" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "ka whakahoki i te whakakaha pūkaha hei tau mai i te 0 ki te 255" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Whakaora i ngā paraka katoa mai i te paraurehe" -#~ msgid "speed Butia" -#~ msgstr "terenga Putia" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Papatā o ngā paraka rerekē" -#~ msgid "forward Butia" -#~ msgstr "whakamua Putia" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "kua whakamahia hei tāurunga tau i roto i ngā kaimahi pāngarau" -#~ msgid "move the Butia robot forward" -#~ msgstr "neke whakamua te karetao Putia" +#: 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 "Tukuatu" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "neke whakamua te karetao Putia mā te tawhititanga kua whakaritea kē" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Tūmau" -#~ msgid "left Butia" -#~ msgstr "mauī Putia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "whakaaturanga 2x2" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "huri whakatematau te karetao Putia" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Tāupe 1 (uara tau)" -#~ msgid "backward Butia" -#~ msgstr "whakamuri Putia" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Takiwā" -#~ msgid "move the Butia robot backward" -#~ msgstr "neke whakamuri te karetao Putia" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "ka tāpiri i ngā tāurunga namatau" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "neke whakamuri te karetao Putia mā te tawhititanga kua whakaritea kē" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "ōrite" -#~ msgid "right Butia" -#~ msgstr "matau Putia" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "kē atu" -#~ msgid "turn the Butia robot at right" -#~ msgstr "huri whakatematau te karetao Putia" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "kāore e pai ki" -#~ msgid "turn Butia" -#~ msgstr "huri Putia" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Kei a koe he mahi kāore anō kia tiaki. Me tiaki i mua i te waihotanga?" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "hurihia te karetao Putia x tīkiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "ka whakaora i ngā paraka huna" -#~ msgid "stop Butia" -#~ msgstr "whakatū Putia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "uta" -#~ msgid "stop the Butia robot" -#~ msgstr "whakatūria te karetao Putia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "whakatū ataata, ororongo rānei" -#~ msgid "Butia" -#~ msgstr "Putia" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Ka kore te honu e tuhi mēnā ka neke." -#~ msgid "Error on initialization of the camera" -#~ msgstr "He hapa i te arawhititanga o te kāmera" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "pahū" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Kāore i kitea he kāmera" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "rahinga pene" -#~ msgid "Error stopping camera" -#~ msgstr "I hapa te whakatū kāmera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "anga honu" -#~ msgid "Error starting camera" -#~ msgstr "I hapa te tīmata kāmera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"ka whakatangi i tētahi sinewave auautanga, roanga, pūrahi ngaru hoki (ki ngā " +"hēkona)" -#~ msgid "FollowMe" -#~ msgstr "TauaruMai" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Rapu i tētahi pereki NXT kua hono." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "whakahua" -#~ msgid "calibration" -#~ msgstr "whakatauritetika" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "pānui uara mai i te pūrere RFID" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "ka penapena i tētahi whakatauritetika whaiaronga" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "ka neke i te honu ki te pewa" -#~ msgid "return a personalized calibration" -#~ msgstr "ka whakahoki i tētahi whakatauritetika whaiaronga" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "huri whakamuri" -#~ msgid "follow" -#~ msgstr "tauaru" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "arorau ōrite ki te kaimahi" -#~ msgid "follow a color or calibration" -#~ msgstr "tauaru i tētahi tae, whakatauritetika rānei" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Papatā o ngā tae pene" -#~ msgid "minimum pixels" -#~ msgstr "ngā pika mōkito" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "tatari ataata, ororongo rānei" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "tautuhia te mōkito tau pika hei tauaru" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "ka penapena uara tau ki Tāupe 1" -#~ msgid "threshold" -#~ msgstr "paepae" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "ka penapena uara tau ki Tāupe 2" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "tautuhia he paepae mō tētahi tae RGB" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "meatia he 'anga' ritenga ki runga i te honu" -#~ msgid "camera mode" -#~ msgstr "aratau kāmera" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "pātene raro" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "tautuhia te aratau tae o te kāmera, RGB, YUV, HSV rānei" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "ka neke whakamuri i te honu" -#~ msgid "x position" -#~ msgstr "tūnga x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor whakaterunga o te mata" -#~ msgid "return x position" -#~ msgstr "whakahoki tūnga x" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Whakaatu paraka" -#~ msgid "y position" -#~ msgstr "tūnga y" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "pūrei" -#~ msgid "return y position" -#~ msgstr "whakahoki tūnga y" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "tiaki" -#~ msgid "pixels" -#~ msgstr "ngā pika" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Ngā Tae" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "whakahoki te tau o ngā pika o te pukupuku nui" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "tautuhi rahinga o te rārangi ka tuhia e te honu" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "tautuhia te aratae tau o te kāmera ki te RGB" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Whakatuwhera" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "tautuhia te aratau tae o te kāmera ki te YUV" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "takotoranga" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "tautuhia te aratau tae o te kāmera ki te HSV" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "empty calibration" -#~ msgstr "whakaputu whakatauritetika" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"he paraka e taea ana te whakapapatono: ka whakamahia hei tāpiri whārite " +"pāngarau tāupe takitini arā atu anō, e.g., taupūrua(x*x+y*y)" -#~ msgid "error in string conversion" -#~ msgstr "he hapa ki te tahuringa aho" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "mēnā" -#~ msgid "SumBot" -#~ msgstr "KaretaoTāpiri" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "ka neke i te honu ki te tūnga xcor, ycor; (0, 0) kei waenga i te mata." -#~ msgid "speed SumBot" -#~ msgstr "terenga KaretaoTāpiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "tukuna te terenga ki te KaretaoTāpiri" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Tū" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "tautuhia te terenga taunoa mō ngā tohutohu nekehanga" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "hohenga 2" -#~ msgid "forward SumBot" -#~ msgstr "whakamua KaretaoTāpiri" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "hohenga 1" -#~ msgid "move SumBot forward" -#~ msgstr "neke whakamua KaretaoTāpiri" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "whakakī mutunga" -#~ msgid "backward SumBot" -#~ msgstr "whakamuri KaretaoTāpiri" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Tārua" -#~ msgid "move SumBot backward" -#~ msgstr "neke whakamuri KaretaoTāpiri" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Whakapiri" -#~ msgid "stop SumBot" -#~ msgstr "whakatū KaretaoTāpiri" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "kāore i huaputa ki" -#~ msgid "stop the SumBot" -#~ msgstr "whakatū i te KaretaoTāpiri" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Ngā Hohe" -#~ msgid "left SumBot" -#~ msgstr "whakatemauī KaretaoTāpiri" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Tukuatu ki te Tukutuku" -#~ msgid "turn left the SumBot" -#~ msgstr "whakaneke mauī i te KaretaoTāpiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "putu tāpae" -#~ msgid "right SumBot" -#~ msgstr "whakatematau KaretaoTāpiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "ka pahū i te uara mai i FILO (tāpae first-in last-out)" -#~ msgid "turn right the SumBot" -#~ msgstr "whakaneke matau i te KaretaoTāpiri" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Horoia" -#~ msgid "angle to center" -#~ msgstr "anga whakatewaenga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Papatā o ngā tātauira whakaaturanga" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "tīkina te koki ki waenga o te dohyo" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "koki" -#~ msgid "angle to Enemy" -#~ msgstr "anga ki Hoariri" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "tuakiri" -#~ msgid "get the angle to the Enemy" -#~ msgstr "tīkina te koki ki te Hoariri" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Tiaki/Utaina" -#~ msgid "x coor. SumBot" -#~ msgstr "ruruku x. KaretaoTāpiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "runga y" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "tīkina te ruruku x o te KaretaoTāpiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ororongo" -#~ msgid "y coor. SumBot" -#~ msgstr "ruruku y. KaretaoTāpiri" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Ngā Utauta" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "tīkina te ruruku y o te KaretaoTāpiri" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Tauranga" -#~ msgid "x coor. Enemy" -#~ msgstr "ruruku x. Hoariri" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "mauī" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "tīkina te ruruku x o te Hoariri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "tākupu" -#~ msgid "y coor. Enemy" -#~ msgstr "ruruku y. Hoariri" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "ka tango i ngā tāurunga tau raro mai i te tāurunga tau runga" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "tīkina te ruruku y o te Hoariri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "tatari pāpāho" -#~ msgid "rotation SumBot" -#~ msgstr "tītaka KaretaoTāpiri" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "peia te taunga rgb ki te pūkai" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "tīkina te tītaka o te KaretaoTāpiri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "uiui mō te tāuru papapātuhi (hua kua penapena ki te paraka papapātuhi)" -#~ msgid "rotation Enemy" -#~ msgstr "tītaka Hoariri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Katihini" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "tīkina te tītaka o te Hoariri" +#: 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 "ngaohiko" -#~ msgid "distance to center" -#~ msgstr "tawhiti ki te tauwaenga" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "ka ūkui i te mata me te tautuhi i te honu" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "tīkina te tawhititanga ki waenga o te dohyo" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "tohu tāuru hopureo mata" -#~ msgid "distance to Enemy" -#~ msgstr "tawhititanga ki te Hoariri" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "ka whakahoki i te tae e \"kite\" nei te honu" -#~ msgid "get the distance to the Enemy" -#~ msgstr "tikina te tawhititanga ki te Hoariri" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "ka whakaara tāpae Hohenga 1" -#~ msgid "update information" -#~ msgstr "whakahōu mōhiohio" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Ngā tohutohu honu papatā" -#~ msgid "update information from the server" -#~ msgstr "whakahōu mōhiohio mai i te tūmau" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "koromeke mō ake tonu" -#~ msgid "Palette of physics blocks" -#~ msgstr "Papatā o ngā paraka ahupūngao" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "whakaatu tīaroaro" -#~ msgid "start polygon" -#~ msgstr "tīmata tapamaha" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Toi Honu" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Tīmata te tautuhi i tētahi tapamaha hōu e ai ki te tūnga xy o te Honu o " -#~ "nāianei." +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "E hiahia ana koe ki te tāuta anō i %s?" -#~ msgid "add point" -#~ msgstr "tāpiri ira" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Uta kaupapa" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Tāpiri i tētahi ira hōu ki te tapamaha o nāianei e ai ki te tūnga xy Honu o " -#~ "nāianei." +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Kaupapa" -#~ msgid "end polygon" -#~ msgstr "whakamutu tapamaha" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Patuiro" -#~ msgid "Define a new polygon." -#~ msgstr "Tautuhia he tapamaha hōu." +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Whakaweto āwhina topa" -#~ msgid "end filled polygon" -#~ msgstr "whakakī mutu tapamaha" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "Not a simple polygon" -#~ msgstr "Ehara i te tapamaha mataiti" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Kupuhipa" -#~ msgid "Define a new filled polygon." -#~ msgstr "Tautuhia he tapamaha whakakī hōu." +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "mokowā poutū" -#~ msgid "triangle" -#~ msgstr "tapatoru" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Tīmata anō i te Toi Honu kia taea te whakamahi i te monomai." -#~ msgid "base" -#~ msgstr "taketake" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "whakaoti tapamaha whakakī (ka whakamahia ki te paraka whakakī tīmata)" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Tāpiri he ahanoa tapatoru ki te tūmahi." +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Tiri" -#~ msgid "circle" -#~ msgstr "porohita" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "iti ake" -#~ msgid "Add a circle object to the project." -#~ msgstr "Tāpiri i tētahi ahanoa porohita ki te tūmahi." +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "Pūtake rua" -#~ msgid "rectangle" -#~ msgstr "tapawhā" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Tauine anō i ngā ruruku" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Tāpiri i tētahi ahanoa tapawhā ki te tūmahi." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "whakaatu paraka" -#~ msgid "reset" -#~ msgstr "tautuhi anō" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Waiho" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Tautuhi anō i te tūmahi; ūkuia te rārangi ahanoa." +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "matau" -#~ msgid "motor" -#~ msgstr "pūkaha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "āpure whakaahuatanga Tuhitaka Sugar" -#~ msgid "torque" -#~ msgstr "autōhuri" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "tautuhi hina" -#~ msgid "speed" -#~ msgstr "tere" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "rārangi pere whakaaturanga" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Te awhe pūkaha autōhuri me te tere mai i 0 (weto) ki te tau tōrunga; ka " -#~ "tukuna te pūkaha ki runga i te ahanoa i waihanga muri tata nei." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "roanga" -#~ msgid "pin" -#~ msgstr "pine" +#: turtleblocks.py:354 +msgid "New" +msgstr "Hōu" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Pinea te ahanoa kia kore e taka." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "ka tuku tākupu ki tō waehere" -#~ msgid "joint" -#~ msgstr "hononga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "pānui pika" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Honoa ngā ahanoa e rua (te mea i waihanga muri tana nei, me te ahanoa kei te " -#~ "tūnga x, y)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "tauine" -#~ msgid "save as Physics activity" -#~ msgstr "tiaki hei hohe Ahupūngao" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "raro" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Tiakina te tūmahi ki te Tuhitaka hei hohe Ahupūngao." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "waiporoporo" -#~ msgid "gear" -#~ msgstr "utauta" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Whakakē raro ngā ruruku" -#~ msgid "Add a gear object to the project." -#~ msgstr "Tāpiri he ahanoa utauta ki te tūmahi." +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "pāwhiri ki te tuwhera" -#~ msgid "density" -#~ msgstr "rōrahi" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "rangi tāuru hopureo" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "Tautuhia te āhuatanga mātōtoru mō ngā ahanoa (e āhei ana ngā tau tōrunga " -#~ "katoa)." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Whirihoranga" -#~ msgid "friction" -#~ msgstr "waku" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Whakaaturanga:" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Tautuhia te āhuatanga waku mō ngā ahanoa (uara mai i te 0 ki te 1, ko te 0 " -#~ "ka whakaweto i te waku ko te 1 he waku kaha)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "tuhitaka" -#~ msgid "bounciness" -#~ msgstr "hūpeketanga" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "putu paraurehe" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Tautuhia te āhuatanga hūpeketanga mō ngā ahanoa (uara mai i te 0 ki te 1, ko " -#~ "te 0 kāore he hūpeketanga ko te 1 he hūpeketanga kaha)." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Ka tuhi te honu ina ka neke." -#~ msgid "dynamic" -#~ msgstr "hihiri" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Utaina..." -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Mēnā ko te hihiri = 1, ka taea e te ahanoa te neke; Mēnā ko te hihiri = 0, " -#~ "kua mau ki te tūnga." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "ahanoa ororongo Tuhitaka Sugar" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Papatā o ngā paraka MahiMātou" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Whakatū honu" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "huaputa pūoko tītaka: (-1 == kore tītaka, 0 == tītaka whakamua, 3 == tītaka " -#~ "whakamuri, 1 == tītaka mauī, 2 == tītaka matau)" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Honu" -#~ msgid "distance sensor output" -#~ msgstr "huaputa pūoko tawhititanga" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "ka huri i te takotoranga o te papatā o ngā paraka" -#~ msgid "Motor A" -#~ msgstr "Pūkaha A" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "penapena ki" -#~ msgid "returns the current value of Motor A" -#~ msgstr "ka whakahoki i te uara o nāianei mō Pūkaha A" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Hunaia ngā paraka" -#~ msgid "Motor B" -#~ msgstr "Pūkaha B" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Uta paraka Python" -#~ msgid "returns the current value of Motor B" -#~ msgstr "ka whakahoki i te uara o nāianei mō Pūkaha B" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "tāpiri" -#~ msgid "set the value for Motor A" -#~ msgstr "tautuhia te uara mō Pūkaha A" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "rānei" -#~ msgid "set the value for Motor B" -#~ msgstr "tautuhia te uara mō Pūkaha B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "tātauira whakaaturanga: rārangi pere" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Papaptā o ngā paraka LEGO NXT o ngā pūkaha" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "kaimahi tuakiri kua whakamahia hei whakatoro paraka" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Papaptā o ngā paraka LEGO NXT o ngā pūoko" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Tīngongo paraka" -#~ msgid "touch" -#~ msgstr "pā" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "ka tautuhi i te rahinga o te kupu kua tuhia e te honu" -#~ msgid "ultrasonic" -#~ msgstr "pāorooro" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"ka pupuri i te uara panekōrero o nāianei o te honu (ka taea te whakamahi atu " +"i te tau paraka)" -#~ msgid "light" -#~ msgstr "rama" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "atahanga" -#, fuzzy -#~ msgid "grey" -#~ msgstr "hina" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"ka whakahoki tau tupurangi i waenga i ngā uara mōkito (runga) me ngā uara " +"mōrahi (raro)" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Taki koa i te hononga me te pereki." +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"ka pupuri i te tae pene o nāianei (ka taea te whakamahi atu i te tau paraka)" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "Ko te uara hiko me noho i waenga i te -127 to 127." +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Whakaatu papatā" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "Kua puta tētahi hapa: taki i ngā hononga katoa ka ngana ki te hono anō." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "tiaki pikitia ki te Tuhitaka Sugar" -#~ msgid "NXT not found" -#~ msgstr "NXT kāore i kitea" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Tiaki hopuāhua" -#~ msgid "refresh NXT" -#~ msgstr "tāmata NXT" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "tīmata" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Rapu i tētahi pereki NXT kua hono." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "ka whakahoki Tika mēnā kei te putu te tāpae" -#~ msgid "play tone" -#~ msgstr "whakatangi rangi" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "ka neke whakamua i te honu" -#~ msgid "frequency" -#~ msgstr "auautanga" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "whakamua" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Whakatangi i tētahi rangi ki tētahi auautanga mō te wā kua whakaritea." +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "taku pouaka" -#~ msgid "port" -#~ msgstr "tauranga" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "ID Pūkete" -#~ msgid "power" -#~ msgstr "hiko" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Tīpako paraka hei tiri" -#~ msgid "rotations" -#~ msgstr "ngā takahuringa" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "whakamuri" -#~ msgid "turn a motor" -#~ msgstr "takahuri i tētahi pūkaha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "ka tautuhi i te tauine o te pāpāho" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "Tukutahitia ngā pūkaha e rua kua hono ki te TAURANGA B me te TAURANGA C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "ka pupuri uara tauine o nāianei" -#~ msgid "PORT A" -#~ msgstr "TAURANGA A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "whakaaturanga 1x1" -#~ msgid "PORT A of the brick" -#~ msgstr "TAURANGA A o te pereki" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "whakaaturanga 1x2" -#~ msgid "PORT B" -#~ msgstr "TAURANGA B" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "runga o te tāpae hohenga whai ingoa" -#~ msgid "PORT B of the brick" -#~ msgstr "TAURANGA B o te pereki" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "ka penapena uara tau ki te tāupe ingoa" -#~ msgid "PORT C" -#~ msgstr "TAURANGA C" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "arorau, kaimahi RĀNEI" -#~ msgid "PORT C of the brick" -#~ msgstr "TAURANGA C o te pereki" +#: 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 "ngaohiko tāuru hopureo" -#~ msgid "start motor" -#~ msgstr "tīmata pūkaha" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "koromeke mo ngā wā kua whakaritea" -#~ msgid "Run a motor forever." -#~ msgstr "Whakahaere i tētahi pūkaha mō ake tonu atu." +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Tiaki..." -#~ msgid "brake motor" -#~ msgstr "whakatū pūkaha" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "ka whakaara tāpae Hohenga 2" -#~ msgid "Stop a specified motor." -#~ msgstr "Whakatū i tētahi pūkaha kua whakatauria." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "tautuhixy" -#~ msgid "reset motor" -#~ msgstr "tautuhi anō i te pūkaha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "taitara y" -#~ msgid "Reset the motor counter." -#~ msgstr "Tautuhi anō i te kaitatau pūkaha." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "taitara x" -#~ msgid "motor position" -#~ msgstr "tūnga pūkaha" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "mata whakakī" -#~ msgid "Get the motor position." -#~ msgstr "Tiki i te tūnga pūkaha." +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "ētahi atu" -#~ msgid "PORT 1" -#~ msgstr "TAURANGA 1" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Tiaki hei" -#~ msgid "PORT 1 of the brick" -#~ msgstr "TAURANGA 1 o te pereki" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "tautuhi xy" -#~ msgid "read" -#~ msgstr "pānui" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "paraurehe" -#~ msgid "sensor" -#~ msgstr "pūoko" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "pitorua" -#~ msgid "Read sensor output." -#~ msgstr "Pānui huaputa pūoko." +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "tārua" -#~ msgid "PORT 2" -#~ msgstr "TAURANGA 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "taihoa kia oti te ataata o nāianei, te ororongo rānei" -#~ msgid "PORT 2 of the brick" -#~ msgstr "TAURANGA 2 o te pereki" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Tiaki hei atahanga" -#~ msgid "light sensor" -#~ msgstr "pūoko rama" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Whakatika" -#~ msgid "PORT 3" -#~ msgstr "TAURANGA 3" +#: 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 "parenga tāuru hopureo" -#~ msgid "PORT 3 of the brick" -#~ msgstr "TAURANGA 3 o te pereki" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "runga o te tāpae Hohenga 2" -#~ msgid "touch sensor" -#~ msgstr "pūoko pā" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"ka whakawehengia te tāurunga tau runga (haurunga) e te tāurunga tau raro " +"(hauraro)" -#~ msgid "distance sensor" -#~ msgstr "pūoko tawhiti" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "mōrahi" -#~ msgid "PORT 4" -#~ msgstr "TAURANGA 4" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "ka tā uara ki roto i ngā paraka tūnga kei raro o te mata" -#~ msgid "PORT 4 of the brick" -#~ msgstr "TAURANGA 4 o te pereki" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "tīmata whakakī" -#~ msgid "sound sensor" -#~ msgstr "pūoko oro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "pupuri i ngā hua o te paraka papapātuhi-uiui hei ASCII" -#~ msgid "color sensor" -#~ msgstr "pūoko tae" +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "peia" -#~ msgid "set light" -#~ msgstr "tautuhi rama" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"he paraka e taea ana te whakapapatono: ka whakamahia hei tāpiri whārite " +"pāngarau tāupe takitini arā atu anō, e.g., sin(x*x+y*y)" -#~ msgid "Set color sensor light." -#~ msgstr "Tautuhi rama pūoko tae." +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "whakaora te katoa" -#~ msgid "battery level" -#~ msgstr "taumata pūkaha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "kia ora" +#. TRANS: "name" option from activity.info file #, fuzzy -#~ msgid "Get battery level of the brick" -#~ msgstr "Tikina te taumata pūkaha o te paraka." - -#~ msgid "HIGH" -#~ msgstr "TIKETIKE" - -#~ msgid "LOW" -#~ msgstr "PĀPAKU" - -#~ msgid "INPUT" -#~ msgstr "TĀURU" - -#~ msgid "OUTPUT" -#~ msgstr "HUAPUTA" - -#~ msgid "PWM" -#~ msgstr "PWM" - -#~ msgid "SERVO" -#~ msgstr "TŪMAU" - -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "HAPA: Taki i te tau me te Aratuino o te tauranga." - -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "HAPA: Me whai tau i waenga i te 0 ki te 255 e te uara." - -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "HAPA: Me TEITEI, PĀPAKU rānei te uara." - -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "HAPA: Me TĀURU, HUAPUTA, PWM, TŪMARU rānei te aratau." - -#~ msgid "pin mode" -#~ msgstr "aratau pine" - -#~ msgid "mode" -#~ msgstr "aratau" - -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Tīpakohia te taumahi pine (TĀURU, HUAPUTA, PWM, TŪMAU)." - -#~ msgid "analog write" -#~ msgstr "tuhi tairitenga" - -#~ msgid "Write analog value in specified port." -#~ msgstr "Tuhi uara tairitenga ki te tauranga kua whakatauria." - -#~ msgid "analog read" -#~ msgstr "pānui tairitenga" - -#~ 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 "" -#~ "Pānui uara mai i te tauranga tairitenga. E taea ana tētahi uara mai i te 0 " -#~ "ki te 1023. Whakamahia te Vref hei whakatau ngaohiko. Mō USB, " -#~ "ngaohiko=((read)*5)/1024) pātata." +msgid "TurtleBlocks" +msgstr "HonuKaretao" -#~ msgid "digital write" -#~ msgstr "tuhi mamati" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#~ msgid "Write digital value to specified port." -#~ msgstr "Tuhi uara mamati ki te tauranga kua whakatauria." +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "hina" -#~ msgid "digital read" -#~ msgstr "pānui mamati" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#~ msgid "Read value from digital port." -#~ msgstr "Pānui uara mai i te tauranga mamati." +#: TurtleArtActivity.py:766 +#, fuzzy +msgid "Palettes" +msgstr "papa" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Tautuhi uara TIKETIKE hei tauranga mamati." +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Whirihora tauranga Atuino mō te tāurunga mamati." +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Whirihora tauranga Atuino hei hautū tūmau." +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#~ msgid "Set LOW value for digital port." -#~ msgstr "Tautuhi uara PĀPAKU hei tauranga mamati." +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Whirihora tauranga Atuino hei huaputa mamati." +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Whirihora tauranga Atuino hei PWM (pulse-width modulation)." +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Papatā o ngā paraka MahiMātou" +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "tautuhia te terenga o ngā pūkaha Putia hei uara mai i te 0 ki te 1023, kua " -#~ "whakaaetia e tētahi tohe" +#~ "tautuhia te terenga o ngā pūkaha Putia hei uara mai i te 0 ki te 1023, " +#~ "kua whakaaetia e tētahi tohe" #~ msgid "turn the Butia robot to the left" #~ msgstr "huri whakatemauī te karetao Putia" diff --git a/po/mk.po b/po/mk.po index 9e113c5..e8b3357 100644 --- a/po/mk.po +++ b/po/mk.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# mk.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mk.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mk.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mk.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/ml.po b/po/ml.po index 51cae0e..af54a5b 100644 --- a/po/ml.po +++ b/po/ml.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ml.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ml.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ml.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ml.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/mn.po b/po/mn.po index 4739092..56cfbca 100644 --- a/po/mn.po +++ b/po/mn.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,51 +43,2149 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "температур" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "хоорондын зай" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "эсэргүүцэл" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" msgstr "" +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "өндөр" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "өргөн" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "ѳнгѳ" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "баруун" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "дуу чимээ" + +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "саарал" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "цаг" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "Порт" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "улаан" + +#: taextras.py:370 +#, fuzzy +msgid "sensor" +msgstr "" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"Мэдрэхүй" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "үлдэгдэл" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "утга" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-#\n" +"Жишээ" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Гарчиг" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "шар" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "богц 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "богц 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Алхам" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Хавтан нуу" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "хөх ногоон" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Жишээ ачаалах" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "жагсаалт" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "чиг" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "видео" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "хөх" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "зур" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "хүлээ" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "богц" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "үйлдэл" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "хуваах" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "зураг нэр" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#, fuzzy +msgid "while" +msgstr "цагаан" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "дараах" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "үзэгний хэмжээ өг" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "чиглэл" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "тайлбар" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "үгсэнд хэмжээ өг" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Хэрэглэгчийн нэр:" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Харах" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Нууц үг:" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "ногоон" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "сүүдэр" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "зураг хадгалах" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "өндөр" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "бүү зур" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "улбар шар" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "бүгдийг арилгах" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "бол" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Бүртгүүлэх" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "үгүйсгэ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "яст мэлхий" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "Блок нуу" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Хадгалах" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "богц 1-д хадгал" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "богц 2-д хадгал" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "үзүүл" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "Үсгэнд өнгө өг" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "тоо" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "дээд" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "масштаб тогтоох" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "цагаан" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Болих" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "үзүүлэн" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "хасах" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "ба" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "өнгө" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "МИН" + +#: turtleblocks.py:363 +msgid "File" +msgstr "Файл" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "үржүүлэх" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "үүрд" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "арилгах" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Блокыг харуул" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Дзлгзц дүүргэх" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "үзүүлэх" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "бичвэр" + +# тохиолдлын аль нь ч болноо +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "санаандгүй" + +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "ухар" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "зогсоох" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "энэ нь арай их" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x тэнхлэг" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Тусламж" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "гар" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "нум" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "радиус" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "сүүдэр" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Эхэл" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Гарчиг:" + +#: 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 "Ачаалах" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Сервер" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "үзүүлэн" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "хоёр тоо нэмэх" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "тэнцүү" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "эсвэл" + +#. #-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "ав" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "үзэг хэмжээ" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Блокыг харуул" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "тоглуулах" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "хадгалах" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Өнгѳ" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Нээх" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "Чиглэл" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y тэнхлэг" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "xэpэв" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Зогсоох" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#, fuzzy +msgid "action 2" +msgstr "үйлдэл" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +#, fuzzy +msgid "action 1" +msgstr "үйлдэл" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Хуулах" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Тавих" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Арилга" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "ѳнцѳг" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "дуу бичлэг" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Хэрэгсэл" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "зүүн" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "тайлбар" + +#: 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 "цахилгаан хүчдэл" + +# Зураач барималчдын ажлын өрөөг урлан гэдэгтэй адилаар Яст мэлхийн Урлан болгоё оо +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Яст мэлхий Урлан" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Төсөл" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Оношилгоо" + +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Нууц үг" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Хуваалцах" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "энэ нь арай бага" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "дөрвөлжин үндэс" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "Блокыг харуул" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Гарах" + +#: turtleblocks.py:354 +msgid "New" +msgstr "Шинэ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "масштаб" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "час улаан" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Тайлбар:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "журнал" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "хогийн сав хоослох" + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Ачаалла..." + +# яст мэлхийг зогсоох эсвэл яст мэлхий зогс 2-н нэгийг аваарай +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Яст мэлхий зогс" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Яст Мэлхий" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Блок нуу" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "нэмэх" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "эсвэл" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Блокыг нуу" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "дүрслэл" + +# Зураачийн зураг хольж өнгө гаргадаг ХАВТАН тай ижил агуулгатай шүү +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Хавтанг харуул" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "эхэл" + #: TurtleArt/tabasics.py:128 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 msgid "forward" msgstr "урагшаа" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "яст мэлхийг урагшлуулах" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "миний богц" #: TurtleArt/tabasics.py:139 msgid "back" msgstr "ухар" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "үзүүлэн" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "үзүүлэн" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Хадгалах..." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "тэнхлэг ХУ" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "дзлгзц дүүргэх" + +# Нэрнээс гадна төрлөө сольж хадгалдаг тул Өөрөөр хадгалах гэдэг нь зүгээр болов уу? мөн Scratch дээр ингэж орчуулсан байгаа. +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Өөрөөр хадгалах" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "тэнхлэг ХУ" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "хогийн сав" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "дaвтax" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Дүрслэлээр хадгалах" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Засварлах" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "МАКС" + +#. #-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mn.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "өг" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "яст мэлхийг урагшлуулах" + #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "яст мэлхийг ухраах" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "арилгах" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "дэлгэцийг цэвэрлэн яст мэлхийг анхны байрлалд оруулах" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "зүүн" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "яст мэлхийг цагийн зүүний эсрэг эргүүл(өнцөг градусаар)" @@ -76,74 +2199,31 @@ msgstr "баруун" msgid "turns turtle clockwise (angle in degrees)" msgstr "яст мэлхийг цагийн зүүний дагуу эргүүл(өнцөг градусаар)" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "нум" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "ѳнцѳг" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "радиус" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "яст мэлхийг нумаар хөдөлгө" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "тэнхлэг ХУ" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "яст мэлхийг х(0) y(0) тэнхлэгийн ба дэлгэцийн төв рүү зөө" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "чиглэл" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "яст мэлхийн анхны чиглэл рүү харуул(0 буюу дэлгэцийн дээд тал)" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x тэнхлэг" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y тэнхлэг" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "чиг" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -154,23 +2234,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "дзлгзц дүүргэх" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "ѳнгѳ" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "сүүдэр" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -181,18 +2244,10 @@ msgstr "" msgid "gray" msgstr "саарал" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "өнгө" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "сүүдэр" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -217,26 +2272,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "бүү зур" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "зур" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "үзэгний хэмжээ өг" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -257,10 +2300,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "үзэг хэмжээ" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -273,50 +2312,10 @@ msgstr "" msgid "red" msgstr "улаан" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "улбар шар" - -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "шар" - -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "ногоон" - -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "хөх ногоон" - -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "хөх" - -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "час улаан" - -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "цагаан" - -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "ухар" - -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "Үсгэнд өнгө өг" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "үгсэнд хэмжээ өг" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -325,34 +2324,14 @@ msgstr "" msgid "Palette of numeric operators" msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "нэмэх" - -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "хоёр тоо нэмэх" - -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "хасах" - #: TurtleArt/tabasics.py:578 msgid "subtracts bottom numeric input from top numeric input" msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "үржүүлэх" - #: TurtleArt/tabasics.py:592 msgid "multiplies two numeric inputs" msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "хуваах" - #: TurtleArt/tabasics.py:604 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" @@ -378,83 +2357,38 @@ msgstr "" msgid "√" msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "дөрвөлжин үндэс" - #: TurtleArt/tabasics.py:639 msgid "calculates square root" msgstr "" -# тохиолдлын аль нь ч болноо -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "санаандгүй" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "МИН" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "МАКС" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "тоо" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "энэ нь арай их" - #: TurtleArt/tabasics.py:674 msgid "logical greater-than operator" msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "энэ нь арай бага" - #: TurtleArt/tabasics.py:687 msgid "logical less-than operator" msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "тэнцүү" - #: TurtleArt/tabasics.py:699 msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "үгүйсгэ" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "ба" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "эсвэл" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -464,38 +2398,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "хүлээ" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "үүрд" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "дaвтax" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "xэpэв" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "бол" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -504,10 +2418,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "эсвэл" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -544,38 +2454,15 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "эхэл" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "бичвэр" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "үйлдэл" - #: TurtleArt/tabasics.py:865 msgid "top of nameable action stack" msgstr "" @@ -584,34 +2471,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "богц 1-д хадгал" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "богц 2-д хадгал" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "богц 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "богц 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -620,21 +2491,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "богц" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "утга" - -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "миний богц" - #: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 msgid "stores numeric value in named variable" msgstr "" @@ -643,20 +2499,10 @@ msgstr "" msgid "named variable (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -#, fuzzy -msgid "action 1" -msgstr "үйлдэл" - #: TurtleArt/tabasics.py:958 msgid "top of Action 1 stack" msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -#, fuzzy -msgid "action 2" -msgstr "үйлдэл" - #: TurtleArt/tabasics.py:967 msgid "top of Action 2 stack" msgstr "" @@ -669,14 +2515,6 @@ msgstr "" msgid "invokes Action 2 stack" msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "хогийн сав" - -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "хогийн сав хоослох" - #: TurtleArt/tabasics.py:1000 msgid "permanently deletes items in trash" msgstr "" @@ -689,10 +2527,6 @@ msgstr "" msgid "restore all blocks from trash" msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "бүгдийг арилгах" - #: TurtleArt/tabasics.py:1010 msgid "move all blocks to trash" msgstr "" @@ -702,33 +2536,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Гарчиг" - -# яст мэлхийг зогсоох эсвэл яст мэлхий зогс 2-н нэгийг аваарай -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Яст мэлхий зогс" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Блокыг харуул" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Блок нуу" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -753,27 +2560,11 @@ msgstr "" msgid "changes the orientation of the palette of blocks" msgstr "" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Ачаалла..." - -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Хадгалах..." - #: TurtleArt/tautils.py:483 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 msgid "click to open" msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "Чиглэл" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "дараах" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -789,25 +2580,11 @@ msgstr "" msgid "Select blocks to share" msgstr "" -# Зураач барималчдын ажлын өрөөг урлан гэдэгтэй адилаар Яст мэлхийн Урлан болгоё оо -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Яст мэлхий Урлан" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "дүрслэл" - #: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 #: TurtleArtActivity.py:853 turtleblocks.py:360 msgid "Save as Logo" msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Дүрслэлээр хадгалах" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" @@ -826,15 +2603,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -# Зураачийн зураг хольж өнгө гаргадаг ХАВТАН тай ижил агуулгатай шүү -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Хавтанг харуул" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Хавтан нуу" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -843,42 +2611,15 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Засварлах" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Харах" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Төсөл" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Хуулах" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Тавих" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Дзлгзц дүүргэх" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -891,39 +2632,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Блокыг харуул" - -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Блокыг нуу" - -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Жишээ ачаалах" - -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Арилга" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Эхэл" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Алхам" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Тусламж" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Зогсоох" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -999,10 +2707,6 @@ msgstr "" msgid "Buddies" msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Хуваалцах" - #: gnome_plugins/collaboration_plugin.py:129 msgid "Configuration" msgstr "" @@ -1019,32 +2723,10 @@ msgstr "" msgid "Account ID" msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Сервер" - #: gnome_plugins/collaboration_plugin.py:298 msgid "Port" msgstr "Порт" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Нууц үг" - -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Бүртгүүлэх" - -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Өнгѳ" - -#: gnome_plugins/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 "Ачаалах" - #: gnome_plugins/fb_plugin.py:87 msgid "Facebook wall post" msgstr "" @@ -1059,30 +2741,10 @@ msgid "" "your project." msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Хэрэглэгчийн нэр:" - -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Нууц үг:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Гарчиг:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Тайлбар:" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Болих" - #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "" @@ -1109,11 +2771,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "дуу чимээ" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1129,24 +2786,11 @@ msgstr "" msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "өндөр" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "эсэргүүцэл" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1154,13 +2798,6 @@ msgstr "эсэргүүцэл" msgid "microphone input resistance" msgstr "" -#: 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 "цахилгаан хүчдэл" - #: plugins/audio_sensors/audio_sensors.py:158 #: plugins/audio_sensors/audio_sensors.py:172 #: plugins/audio_sensors/audio_sensors.py:186 @@ -1173,15 +2810,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1213,12 +2841,6 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#, fuzzy -msgid "while" -msgstr "цагаан" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" @@ -1232,53 +2854,26 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "дээд" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "журнал" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "дуу бичлэг" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "видео" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "тайлбар" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 msgid "Sugar Journal description field" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "үзүүлэх" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 @@ -1289,23 +2884,10 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "масштаб тогтоох" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "зураг хадгалах" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "зураг нэр" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "saves a picture to the Sugar Journal" msgstr "" @@ -1318,10 +2900,6 @@ msgstr "" msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "масштаб" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1424,10 +3002,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "гар" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1448,10 +3022,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "цаг" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1460,11 +3030,6 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "өг" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" @@ -1485,11 +3050,6 @@ msgstr "" msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "ав" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" @@ -1504,19 +3064,10 @@ msgstr "" msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "тайлбар" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "үзүүл" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1581,11 +3132,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "яст мэлхий" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1616,11 +3162,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "тэнхлэг ХУ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1633,18 +3174,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "Блок нуу" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "Блокыг харуул" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1653,10 +3186,6 @@ msgstr "" msgid "hides the Sugar toolbars" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "жагсаалт" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" @@ -1701,10 +3230,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "өргөн" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1717,10 +3242,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "өндөр" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1749,27 +3270,6 @@ msgstr "" msgid "bottom y" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "үзүүлэн" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "үзүүлэн" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "үзүүлэн" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "үзүүлэн" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1797,18 +3297,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "зогсоох" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "тоглуулах" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "хадгалах" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1838,32 +3326,6 @@ msgstr "" msgid "Configuration directory not writable: %s" msgstr "" -#: turtleblocks.py:354 -msgid "New" -msgstr "Шинэ" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Нээх" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Хадгалах" - -# Нэрнээс гадна төрлөө сольж хадгалдаг тул Өөрөөр хадгалах гэдэг нь зүгээр болов уу? мөн Scratch дээр ингэж орчуулсан байгаа. -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Өөрөөр хадгалах" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Гарах" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Файл" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" @@ -1876,18 +3338,6 @@ msgstr "" msgid "Show/hide blocks" msgstr "" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Хэрэгсэл" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Оношилгоо" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Яст Мэлхий" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1900,40 +3350,6 @@ msgstr "" msgid "Save project?" msgstr "" -#~ msgid "temperature" -#~ msgstr "температур" - -#~ msgid "distance" -#~ msgstr "хоорондын зай" - -#, fuzzy -#~ msgid "light" -#~ msgstr "баруун" - -#, fuzzy -#~ msgid "grey" -#~ msgstr "саарал" - -#, fuzzy -#~ msgid "port" -#~ msgstr "Порт" - -#, fuzzy -#~ msgid "read" -#~ msgstr "улаан" - -#, fuzzy -#~ msgid "sensor" -#~ msgstr "Мэдрэхүй" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "үлдэгдэл" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Жишээ" - #~ msgid "Save as HTML" #~ msgstr "HTML-аар хадгалах" diff --git a/po/mr.po b/po/mr.po index dd99be3..fe1cbdb 100644 --- a/po/mr.po +++ b/po/mr.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,2111 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "प्रकाशमान" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "सेन्सर ब्लॉक्सची पट्टी" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "सेन्सर ब्लॉक्सची पट्टी" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "आवाज" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "पोर्ट" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# mr.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "सेन्सर ब्लॉक्सची पट्टी" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "शिर्षक" + +#: 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 "Average RGB color from camera is pushed to the stack" + +#: 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 "कॅमे-याचे आऊटपुट" + +#: TurtleArt/tabasics.py:781 +#, fuzzy +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"do-while-True operator that uses boolean operators from Numbers palette" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "शुगर जर्नल मिडिया साधन" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "पायरी" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "ब्लॉक दाखवा/लपवा" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "पट्टी लपवा" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "मित्र" + +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "माझा टर्टलआर्टचा सत्र" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "शुगर जर्नल व्हिडीयो साधन" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "उदाहरण दाखवा" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Configuration directory not writable: %s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "शिर्षक" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "शुगर जर्नलमध्ये टर्टल चित्रे SVG फाईल म्हणून जतन करा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "जर्नलमधून मजकूर किंवा मिडीया दाखवते" + +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "व्हिडीयो" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "अपर्यायी अॅक्शन" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "SVG जतन करा" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "दाखल अयशस्वी" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +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:86 +msgid "usage is" +msgstr "असा वापर करा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "चित्राचे नाव" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "ज्यावेळी" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "पुढिल" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "जोपर्यंत" + +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "युटर्न घ्या" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "फ्लो अॉपरेटरची पट्टी" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +#, fuzzy +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"do-while-True operator that uses boolean operators from Numbers palette" + +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "प्रवेश अयशस्वी" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "मेट्रीक निर्देशक" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "स्ट्रींग किंमत" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "वर्णन" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "वापरासाठी नाव:" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "दृश्य" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "परवलीचा शब्द (पासवर्ड):" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "चित्र जतन करा" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "निर्देशकांचे परिमाण वाढवा" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "नोंदणी करा" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "ब्लॉकची साईझ पुर्ववत करा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "कासव" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "ब्लॉक्स लपवा" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "कॅमे-याने प्रकाशाची पातळी तपासली" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "साठवा" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "लोगो मध्ये जतन करा" + +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "सहयोग कार्यान्वित करा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "शंका किबोर्ड" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "वरचा" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "संकेतस्थळावर दाखल करा" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "कार्टेशियन निर्देशक" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "टोपणनाव" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "प्रमाण निश्चित करा" + +#: TurtleArt/tabasics.py:453 +#, fuzzy +msgid "white" +msgstr "ज्यावेळी" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "रद्द करा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "प्रस्तुतीकरण 2x1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "मिडीया विश्रांती" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +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:363 +msgid "File" +msgstr "फाईल" + +#: TurtleArt/tabasics.py:557 +#, fuzzy +msgid "Palette of numeric operators" +msgstr "फ्लो अॉपरेटरची पट्टी" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "फोटो" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "साफ" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "ब्लॉक मोठे करा" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "मोठी स्क्रीन" + +#: turtleblocks.py:255 +msgid "File not found" +msgstr "फाईल मिळाली नाही" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "दाखवा" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "मजकूर" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "थांबा" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "क्ष निर्देशक" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "मदत" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "प्रकल्प जतन करायचा का?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "किबोर्ड" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "पोलार निर्देशक" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "रंगाचा दर्जा निश्चीत करा" + +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"तुमचा प्रकल्प दाखल करण्यासाठी http://turtleartsite.sugarlabs.org या संकेतस्थळावर " +"तुमचे खाते असणे आवश्यक आहे." + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "धावा" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "शिर्षक:" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "मिडिया साधनांची पट्टी" + +#: 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 "दाखल करा" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "सर्वर" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "प्रस्तुतीकरण 2x2" + +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "प्रांगण (नेबरहूड)" + +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "तुमचे काम जतन झालेले नाही. बंद करण्याआधी ते जतन करायचे का?" + +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "RFID उपकरणातून किंमत वाचा" + +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "एक युटर्न बनवा" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "ब्लॉक्स दाखवा" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "खेळा" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "जतन करा" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "रंग" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "उघडा" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "अनुस्थापन" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "य निर्देशक" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "थांबा" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "कॉपी" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "पेस्ट" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "कृती" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "इंटरनेटवर दाखल करा" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "साफ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ध्वनी" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "साधने" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +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:207 +msgid "show aligned" +msgstr "रांगेतले दाखवा" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "टर्टलआर्ट" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "प्रकल्प" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "चूक शोधा" + +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "परवलीचा शब्द (पासवर्ड)" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "सामायिक करा" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "निर्देशकांचे परिमाण बदला" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "ब्लॉक्स दाखवा" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "बंद" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "शुगर जर्नल वर्णन क्षेत्र" + +#: turtleblocks.py:354 +msgid "New" +msgstr "नवीन" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "प्रमाण" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "निर्देशकांचे परिमाण कमी करा" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "संरचना (कॉन्फिगरेशन)" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "वर्णन:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "जर्नल" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "शुगर जर्नल ध्वनी साधन" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "कासव थांबवा" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "कासव" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "ब्लॉक्स लपवा" + +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "पायथन ब्लॉक दाखवा" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "ब्लॉक लहान करा" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "पट्टी दाखवा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "शुगर जर्नलमध्ये चित्र जतन करा" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "फोटो जतन करा" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "सुरूवात" + +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "खाते क्रमांक" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "मिडीयाचे प्रमाण निश्चित करा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "चालू प्रमाणाची किंमत दाखवते" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "प्रस्तुतीकरण 1x1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "प्रस्तुतीकरण 1x2" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "स्क्रीन भरा" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "यानावे जतन करा" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "चालू चित्रफित किंवा ध्वनीफित संपेपर्यंत थांबा" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "चित्र म्हणून जतन करा" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "बदल करा" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -50,10 +2180,6 @@ msgstr "" msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "साफ" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" @@ -96,55 +2222,27 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "क्ष निर्देशक" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "य निर्देशक" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "शिर्षक" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -155,16 +2253,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "स्क्रीन भरा" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -190,10 +2278,6 @@ msgstr "" msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "रंगाचा दर्जा निश्चीत करा" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -298,11 +2382,6 @@ msgstr "" msgid "purple" msgstr "" -#: TurtleArt/tabasics.py:453 -#, fuzzy -msgid "white" -msgstr "ज्यावेळी" - #: TurtleArt/tabasics.py:454 msgid "black" msgstr "" @@ -323,11 +2402,6 @@ msgstr "" msgid "sets size of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:557 -#, fuzzy -msgid "Palette of numeric operators" -msgstr "फ्लो अॉपरेटरची पट्टी" - #: TurtleArt/tabasics.py:563 msgid "plus" msgstr "" @@ -461,11 +2535,6 @@ msgstr "" msgid "logical OR operator" msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "फ्लो अॉपरेटरची पट्टी" - #: TurtleArt/tabasics.py:743 msgid "wait" msgstr "" @@ -502,11 +2571,6 @@ msgstr "" msgid "if then" msgstr "" -#: TurtleArt/tabasics.py:781 -#, fuzzy -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "do-while-True operator that uses boolean operators from Numbers palette" - #: TurtleArt/tabasics.py:789 msgid "else" msgstr "" @@ -515,11 +2579,6 @@ msgstr "" msgid "if then else" msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -#, fuzzy -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "do-while-True operator that uses boolean operators from Numbers palette" - #: TurtleArt/tabasics.py:811 msgid "horizontal space" msgstr "" @@ -548,30 +2607,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "सुरूवात" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "मजकूर" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "स्ट्रींग किंमत" - #: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 #: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 #: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 @@ -628,10 +2667,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -704,32 +2739,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "शिर्षक" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "कासव थांबवा" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "ब्लॉक्स दाखवा" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "ब्लॉक्स लपवा" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -767,14 +2776,6 @@ msgstr "" msgid "click to open" msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "अनुस्थापन" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "पुढिल" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -790,33 +2791,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "टर्टलआर्ट" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "लोगो मध्ये जतन करा" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "चित्र म्हणून जतन करा" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "फोटो" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "फोटो जतन करा" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -826,103 +2804,15 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "पट्टी दाखवा" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "पट्टी लपवा" - -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "निर्देशकांचे परिमाण कमी करा" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "निर्देशकांचे परिमाण वाढवा" - -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "बदल करा" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "दृश्य" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "प्रकल्प" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "कॉपी" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "पेस्ट" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "मोठी स्क्रीन" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "कार्टेशियन निर्देशक" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "पोलार निर्देशक" - -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "मेट्रीक निर्देशक" - -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "ब्लॉक मोठे करा" - -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "ब्लॉक लहान करा" - -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "उदाहरण दाखवा" - -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "साफ" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "धावा" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "पायरी" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "मदत" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "थांबा" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -931,10 +2821,6 @@ msgstr "" msgid "Load plugin" msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "पायथन ब्लॉक दाखवा" - #: TurtleArtActivity.py:766 msgid "Palettes" msgstr "" @@ -943,26 +2829,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -982,116 +2848,14 @@ msgstr "" msgid "Do you want to reinstall %s?" msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "माझा टर्टलआर्टचा सत्र" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "सहयोग कार्यान्वित करा" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "कृती" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "मित्र" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "सामायिक करा" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "संरचना (कॉन्फिगरेशन)" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "प्रांगण (नेबरहूड)" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "टोपणनाव" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "खाते क्रमांक" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "सर्वर" - #: gnome_plugins/collaboration_plugin.py:298 msgid "Port" msgstr "पोर्ट" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "परवलीचा शब्द (पासवर्ड)" - -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "नोंदणी करा" - -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "रंग" - -#: gnome_plugins/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 "दाखल करा" - #: gnome_plugins/fb_plugin.py:87 msgid "Facebook wall post" msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "इंटरनेटवर दाखल करा" - -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"तुमचा प्रकल्प दाखल करण्यासाठी http://turtleartsite.sugarlabs.org या " -"संकेतस्थळावर तुमचे खाते असणे आवश्यक आहे." - -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "वापरासाठी नाव:" - -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "परवलीचा शब्द (पासवर्ड):" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "शिर्षक:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "वर्णन:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "संकेतस्थळावर दाखल करा" - -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "रद्द करा" - -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "प्रवेश अयशस्वी" - -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "दाखल अयशस्वी" - #: plugins/accelerometer/accelerometer.py:49 #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 @@ -1110,11 +2874,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "आवाज" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1141,13 +2900,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1169,171 +2921,15 @@ msgstr "" msgid "microphone input voltage" msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "मिडिया साधनांची पट्टी" - -#: 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 "प्रकाशमान" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "कॅमे-याने प्रकाशाची पातळी तपासली" - -#: 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 "Average RGB color from camera is pushed to the stack" - -#: 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 "कॅमे-याचे आऊटपुट" - #: plugins/light_sensor/light_sensor.py:58 #: plugins/light_sensor/light_sensor.py:65 msgid "light level detected by light sensor" msgstr "" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "RFID उपकरणातून किंमत वाचा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "ज्यावेळी" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "do-while-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "जोपर्यंत" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "do-until-True operator that uses boolean operators from Numbers palette" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "वरचा" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "जर्नल" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "शुगर जर्नल मिडिया साधन" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ध्वनी" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "शुगर जर्नल ध्वनी साधन" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "व्हिडीयो" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "शुगर जर्नल व्हिडीयो साधन" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "वर्णन" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "शुगर जर्नल वर्णन क्षेत्र" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "दाखवा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "जर्नलमधून मजकूर किंवा मिडीया दाखवते" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "रांगेतले दाखवा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "प्रमाण निश्चित करा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "मिडीयाचे प्रमाण निश्चित करा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "चित्र जतन करा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "चित्राचे नाव" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "शुगर जर्नलमध्ये चित्र जतन करा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG जतन करा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "शुगर जर्नलमध्ये टर्टल चित्रे SVG फाईल म्हणून जतन करा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "प्रमाण" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "चालू प्रमाणाची किंमत दाखवते" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "मिडीया विश्रांती" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "चालू चित्रफित किंवा ध्वनीफित संपेपर्यंत थांबा" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 msgid "media stop" msgstr "" @@ -1416,18 +3012,6 @@ msgstr "" msgid "returns mouse y coordinate" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "शंका किबोर्ड" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -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:388 -msgid "keyboard" -msgstr "किबोर्ड" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1448,10 +3032,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1581,11 +3161,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "कासव" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1632,18 +3207,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "ब्लॉक्स लपवा" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "ब्लॉक्स दाखवा" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1700,10 +3267,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1716,10 +3279,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1748,23 +3307,6 @@ msgstr "" msgid "bottom y" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "प्रस्तुतीकरण 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "प्रस्तुतीकरण 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "प्रस्तुतीकरण 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "प्रस्तुतीकरण 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1792,123 +3334,14 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "थांबा" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "खेळा" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "जतन करा" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "युटर्न घ्या" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "एक युटर्न बनवा" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "असा वापर करा" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "अपर्यायी अॅक्शन" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "फाईल मिळाली नाही" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Configuration directory not writable: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "नवीन" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "उघडा" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "साठवा" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "यानावे जतन करा" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "बंद" - -#: turtleblocks.py:363 -msgid "File" -msgstr "फाईल" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "निर्देशकांचे परिमाण बदला" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "ब्लॉकची साईझ पुर्ववत करा" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "ब्लॉक दाखवा/लपवा" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "साधने" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "चूक शोधा" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "कासव" - #: turtleblocks.py:407 msgid "About..." msgstr "" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "तुमचे काम जतन झालेले नाही. बंद करण्याआधी ते जतन करायचे का?" - -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "प्रकल्प जतन करायचा का?" - -#, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "सेन्सर ब्लॉक्सची पट्टी" - -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "सेन्सर ब्लॉक्सची पट्टी" - -#, fuzzy -#~ msgid "port" -#~ msgstr "पोर्ट" - -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "सेन्सर ब्लॉक्सची पट्टी" - #, fuzzy #~ msgid "Palette of Arduino blocks" #~ msgstr "सेन्सर ब्लॉक्सची पट्टी" diff --git a/po/ms.po b/po/ms.po index 6f78740..13867c9 100644 --- a/po/ms.po +++ b/po/ms.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ms.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ms.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ms.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ms.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -17,6 +42,1461 @@ msgstr "" "X-Generator: Pootle 1.1.0rc2\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -95,14 +1575,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -158,12 +1630,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -623,10 +2089,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1103,11 +2565,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,13 +2591,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1167,15 +2617,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1441,10 +2882,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1693,10 +3130,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1709,10 +3142,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/mvo.po b/po/mvo.po index c433add..d00da87 100644 --- a/po/mvo.po +++ b/po/mvo.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# mvo.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mvo.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# mvo.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# mvo.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/nb.po b/po/nb.po index 4ced03e..40efb67 100644 --- a/po/nb.po +++ b/po/nb.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -17,6 +42,1776 @@ msgstr "" "X-Generator: Pootle 1.2.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "høyde" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "bredde" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "farge" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "høyre" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "lyd" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "modulo" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-#\n" +"eksempler" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "tittel" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "boks 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "boks 1" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +#, fuzzy +msgid "Hide palette" +msgstr "skjul verktøykasse" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "retning" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "trykk ned penn" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "vent" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "boks" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "tekst" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "sett størrelse" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "sett størrelse" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "tone" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "løft penn" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "så" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ikke" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "Skilpadde" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "skjul blokker" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "lagre i boks 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "lagre i boks 2" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +#, fuzzy +msgid "Save as Logo" +msgstr "lagre som Logo" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "sett tekstfarge" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "sett tone" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "og" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "sett farge" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "last inn blokken min" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "for evig" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "vis blokker" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +#, fuzzy +msgid "Fullscreen" +msgstr "fyll skjerm" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "tekst" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "tilfeldig" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x-koordinat" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "tastatur" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "kurve" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radius" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "sett tone" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "tittel" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "ellers" + +#. #-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nb.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "ta av" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "størrelse" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +#, fuzzy +msgid "Show blocks" +msgstr "vis blokker" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "farge" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y-koordinat" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "hvis" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "vinkel" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "venstre" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Skilpaddetegner" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Prosjekt" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "vis blokker" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +#, fuzzy +msgid "Stop turtle" +msgstr "stopp skilpadde" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Skilpadde" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +#, fuzzy +msgid "Hide blocks" +msgstr "skjul blokker" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "eller" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +#, fuzzy +msgid "Show palette" +msgstr "vis verktøykasse" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "fremover" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "sett xy" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "fyll skjerm" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Lagre som" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "sett xy" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "gjenta" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +#, fuzzy +msgid "Save as image" +msgstr "lagre som bilde" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "maks" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -31,12 +1826,6 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "fremover" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" @@ -57,11 +1846,6 @@ msgstr "" msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "venstre" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -75,34 +1859,10 @@ msgstr "høyre" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "kurve" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "vinkel" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radius" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "sett xy" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -116,33 +1876,18 @@ msgstr "" msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x-koordinat" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y-koordinat" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "retning" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -153,23 +1898,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "fyll skjerm" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "farge" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "tone" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -180,18 +1908,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "sett farge" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "sett tone" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -216,26 +1936,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "løft penn" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "trykk ned penn" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "sett størrelse" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -256,10 +1964,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "størrelse" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -304,19 +2008,10 @@ msgstr "" msgid "black" msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "sett tekstfarge" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "sett størrelse" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -386,18 +2081,6 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "tilfeldig" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "maks" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" @@ -434,26 +2117,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ikke" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "og" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "eller" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -463,38 +2134,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "vent" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "for evig" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "gjenta" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "hvis" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "så" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -503,10 +2154,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "ellers" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -543,25 +2190,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "tekst" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -583,34 +2215,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "lagre i boks 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "lagre i boks 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "boks 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "boks 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -619,14 +2235,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "boks" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -699,36 +2307,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "tittel" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -#, fuzzy -msgid "Stop turtle" -msgstr "stopp skilpadde" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -#, fuzzy -msgid "Show blocks" -msgstr "vis blokker" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -#, fuzzy -msgid "Hide blocks" -msgstr "skjul blokker" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -770,11 +2348,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "tekst" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -790,26 +2363,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Skilpaddetegner" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -#, fuzzy -msgid "Save as Logo" -msgstr "lagre som Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -#, fuzzy -msgid "Save as image" -msgstr "lagre som bilde" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" @@ -828,16 +2385,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -#, fuzzy -msgid "Show palette" -msgstr "vis verktøykasse" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -#, fuzzy -msgid "Hide palette" -msgstr "skjul verktøykasse" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -856,10 +2403,6 @@ msgstr "" msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Prosjekt" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" @@ -877,12 +2420,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -#, fuzzy -msgid "Fullscreen" -msgstr "fyll skjerm" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -895,11 +2432,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "vis blokker" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -1040,11 +2572,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "farge" - #: 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 @@ -1073,11 +2600,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "tittel" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1116,11 +2638,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "lyd" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1147,13 +2664,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1180,15 +2690,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1295,11 +2796,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "sett tone" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1431,10 +2927,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "tastatur" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1455,10 +2947,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1492,11 +2980,6 @@ msgstr "" msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "ta av" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" @@ -1588,12 +3071,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "Skilpadde" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1618,18 +3095,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "last inn blokken min" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "sett xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1642,19 +3107,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "skjul blokker" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "vis blokker" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1711,10 +3167,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "bredde" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1727,10 +3179,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "høyde" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1856,11 +3304,6 @@ msgstr "" msgid "Save" msgstr "" -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Lagre som" - #: turtleblocks.py:362 msgid "Quit" msgstr "" @@ -1889,10 +3332,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Skilpadde" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1906,18 +3345,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "høyre" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "modulo" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "eksempler" - -#, fuzzy #~ msgid "Save as HTML" #~ msgstr "lagre som HTML" diff --git a/po/ne.po b/po/ne.po index 6fff743..ca986b9 100644 --- a/po/ne.po +++ b/po/ne.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,696 +43,1704 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "टर्टल खण्डहरू" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "टर्टलको आदेशहरूको प्यालेट" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "टर्टल आर्ट मिनि" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "अगाडि" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "टर्टल स्तब्घ" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "टर्टललाई अगाडि सार्छ" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "एउटा मुकाब्ला छान" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "पछाडि" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "टर्टललाई पछाडि सार्छ" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "मेक्सिकन पेसोको प्यालेट" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "सफा" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "कोल्म्बियन पेसोको प्यालेट" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "स्क्रिन खाली गर्छ र टर्टललाई रिसेट गर्छ" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "रूआण्डान फ्रेकंको प्यालेट" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "बायाँ" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "अमेरिकी डलरको प्यालेट" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "कछुवालाई घडिको उल्टो दिशामा घुमाउँछ (कोण ढिग्रीमा)" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "अस्ट्रेलियन डलरको प्यालेट" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "दायाँ" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "कछुवालाई घडिको दिशामा घुमाउँछ(कोण ढिग्रीमा)" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "वृत्तखण्ड" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "उरुगुएन पेसोको प्यालेट" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "टर्टलबोट्स" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "LEDको प्रकाश-तीव्रता ० देखि २५५ भित्र समायोजित गर।" + +#: taextras.py:67 +msgid "returns the gray level" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "कोण" +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "बटन थिच्दा १ फर्काउँछ अथवा ० फर्काउँछ।" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "त्रिज्या" +#: taextras.py:69 +msgid "returns the ambient light level" +msgstr "" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "टर्टल चाप को वरिपरी सार्छ" +#: taextras.py:70 +msgid "returns the ambient temperature" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy राख" +#: taextras.py:71 +msgid "returns the distance from the object in front of the sensor" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:72 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "सेंसर झुकावमा निर्भर भई ० वा १ फिर्ता गर्छ" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:73 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "सेंसरले चुंबकीय क्षेत्र पता लगाउँदा १ फिर्ता गर्छ, अथवा ० फिर्ता गर्छ।" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "टर्टललाई xcor, ycor को ठाँउमा सार्छ ; (0, 0) स्क्रिनको बिच हो." +#: taextras.py:74 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "० देखि १ मा बदल्नछ, आवृत्ति कंपनमा निर्भर हुन्छ" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "शीर्षक राख" +#: taextras.py:75 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "टर्टलको शिर्षक निर्धारण गर्छ (0 स्क्रिनको माथिल्लो भागमा छ।)" +#: taextras.py:76 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:77 +msgid "button" +msgstr "बटन" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:78 +msgid "grayscale" +msgstr "ग्रेस्केल" + +#: taextras.py:79 +msgid "ambient light" +msgstr "अ्यामबीअन्ट प्रकाश" + +#: taextras.py:80 +msgid "temperature" +msgstr "तापमान" + +#: taextras.py:81 taextras.py:292 +msgid "distance" +msgstr "दुरी" + +#: taextras.py:82 taextras.py:289 +msgid "tilt" +msgstr "झुकाव" + +#: taextras.py:83 +msgid "magnetic induction" +msgstr "चुंबकीय प्रेरण" + +#: taextras.py:84 +msgid "vibration" +msgstr "कंपन" + +#: taextras.py:85 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 "प्रतिबन्ध" + +#: taextras.py:86 +msgid "Butia Robot" +msgstr "बुटिया रोबट" + +#: taextras.py:87 +msgid "refresh Butia" msgstr "" -"टर्टलको तत्काल x-निर्देशांक मान बचाइराख्छ (संख्या खण्डको सट्टामा प्रयोग गर्न " -"सकिन्छ)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:88 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:90 +msgid "battery charge Butia" +msgstr "बुटियाको बैटरी चार्ज" + +#: taextras.py:91 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "ब्याटरी चार्ज ० देखि २५५ सम्म अंकको रुपमा फिर्ता गर्छ" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:93 +msgid "speed Butia" +msgstr "बुटियाको गति बढाऊ" + +#: taextras.py:94 +msgid "set the speed of the Butia motors" msgstr "" -"टर्टलको तत्काल y- निर्देशांक मान बचाइराख्छ(संख्या खण्डको सट्टामा प्रयोग गर्न " -"सकिन्छ)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "शीर्षक" +#: taextras.py:95 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:96 +msgid "move Butia" msgstr "" -"र्टटलको हालको शीर्षक मान राख्छ (संख्या खण्डको सट्टामा प्रयोग गर्न सकिन्छ)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "कलम आदेशको प्यालेट" +#: taextras.py:97 +msgid "moves the Butia motors at the specified speed" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "स्क्रिन भर" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:99 +msgid "forward Butia" +msgstr "बुटियालाई अगाडि लग" + +#: taextras.py:100 +msgid "move the Butia robot forward" +msgstr "बुटिया रोबटलाई अगाडि सार" + +#: taextras.py:101 +msgid "move the Butia robot forward a predefined distance" +msgstr "बुटिया रोबटलाई पूर्वनिर्धारित दुरीमा अगाडि सार" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:103 +msgid "left Butia" +msgstr "बायाँ बुटिया" + +#: taextras.py:104 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "बुटिया रोबटलाई दायाँ मोड़" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:106 +msgid "backward Butia" +msgstr "बुटियालाई पछाडि सार" + +#: taextras.py:107 +msgid "move the Butia robot backward" +msgstr "बुटिया रोबटलाई पछाडि सार" + +#: taextras.py:108 +msgid "move the Butia robot backward a predefined distance" +msgstr "बुटिया रोबटलाई पूर्वनिर्धारित दुरीमा पछाडि सार" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:110 +msgid "right Butia" +msgstr "दायाँ बुटिया" + +#: taextras.py:111 +msgid "turn the Butia robot at right" +msgstr "बुटिया रोबटलाई दायाँ मोड़" + +#: taextras.py:112 +msgid "turn Butia" +msgstr "बुटियालाई मोड़" + +#: taextras.py:113 +msgid "turn the Butia robot x degrees" +msgstr "बुटिया रोबटलाई x डिग्री मोड़" + +#: taextras.py:114 +msgid "stop Butia" +msgstr "बुटियालाई रोक" + +#: taextras.py:115 +msgid "stop the Butia robot" +msgstr "बुटिया रोबटलाई रोक" + +#: taextras.py:116 +msgid "Butia" +msgstr "बुटिया" + +#: taextras.py:120 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "रंग" +#: taextras.py:121 +#, fuzzy +msgid "Error on initialization of the camera" +msgstr "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"क्यामेराको आरंभीकरणमा त्रुटि" + +#: taextras.py:122 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "छाया" +#: taextras.py:123 +msgid "Error stopping camera" +msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "पृष्ठभुमि (रंग, सेड) ले भरिन्छ" +#: taextras.py:124 +msgid "Error starting camera" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "खरानी रङ" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:126 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "रंङ राख" +#: taextras.py:127 +msgid "FollowMe" +msgstr "मलाई अनुगमन गर" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "कछुवाले बनाएको रेखाको रंग सेट गर्छ" +#: taextras.py:128 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "छाया राख" +#: taextras.py:129 +#, fuzzy +msgid "Search for a connected camera." +msgstr "जडान भएको NXT ब्रिकलाई खोज।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:131 +msgid "calibration" +msgstr "व्यासमापन" + +#: taextras.py:132 +#, fuzzy +msgid "store a personalized calibration" +msgstr "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"व्यक्तिगत व्यासमापन फिर्ता गर\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"व्यक्तिगत व्यासमापन फिर्ता गर\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"व्यक्तिगत व्यासमापन भण्डार गर" + +#: taextras.py:133 +msgid "return a personalized calibration" +msgstr "व्यक्तिगत व्यासमापन फिर्ता गर" + +#: taextras.py:134 +msgid "follow" +msgstr "अनुगमन" + +#: taextras.py:135 +msgid "follow a color or calibration" +msgstr "रंग वा व्यासमापन अनुकरण गर" + +#: taextras.py:136 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 "चम्किलोपन" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "कछुवाले बनाएको रेखाको सेड निर्धारण गर्छ" +#: taextras.py:137 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "खरानी रङ्ग रख।" +#: taextras.py:138 +msgid "minimum pixels" +msgstr "न्युनत्तम पिक्सेल" + +#: taextras.py:139 +msgid "set the minimal number of pixels to follow" +msgstr "परिणाम हेर्न न्यूनतम संख्या सेट गर" + +#: taextras.py:140 +msgid "threshold" +msgstr "सीमा" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:142 +msgid "set a threshold for a RGB color" +msgstr "RGB रंगको लागि सीमा रेखा सेट गर" + +#: taextras.py:143 +msgid "camera mode" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "कछुवाले बनाएको धर्कोको छाँया निर्धारित गर्छ" +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:145 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "पेनको हाल रंग राख्छ (अंक ब्लको सट्टामा पनि प्रयोग हुन्छ)" +#: taextras.py:146 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "अहिलेको कलमको रंग बचत गर्छ" +#: taextras.py:147 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "खरानी रङ हालमा प्रयोग (यो अंक बल्क गर्न पनि प्रयोग गर्न सक्नु हुन्छ)" +#: taextras.py:148 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "कलमले लेख" +#: taextras.py:149 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "कछुवालाई सारेमा कोर्दैन" +#: taextras.py:150 +msgid "x position" +msgstr "x स्थान" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "कलमले नलेख" +#: taextras.py:151 +msgid "return x position" +msgstr "x स्थान फिर्ता गर" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "चित्र बनाउन कछुवालाई हल्लाऊ" +#: taextras.py:152 +msgid "y position" +msgstr "y स्थान" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "कलमको परिमाण मिलाऊ" +#: taextras.py:153 +msgid "return y position" +msgstr "y स्थान फिर्ता गर" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "टर्टलले बनाएको रेखा को साइज सेट गर्छ" +#: taextras.py:154 +msgid "pixels" +msgstr "पिक्सेलहरु" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "भर्न सुरु गर" +#: taextras.py:155 +msgid "return the number of pixels of the biggest blob" +msgstr "सबैभन्दा ठुलो बल्बको पिक्सेलहरुको सङ्ख्या फर्काउँछ" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "भरिएको बहुभुज सुरु गर्छ (अन्त्य भर्ने खण्डसगँ प्रयोग गरिने)" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:157 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "अन्त्यमा भर" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:159 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "भरिएको बहुभुज सुरु गर्छ ( पहिलो भरिएको खण्डसँग प्रयोग गरिने)" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:161 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "कलमको आकार" +#: taextras.py:162 +msgid "empty calibration" +msgstr "खाली व्यासमापन" + +#: taextras.py:163 +msgid "error in string conversion" +msgstr "स्ट्रिंग सम्परिवर्तनमा त्रुटि छ" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:168 +msgid "SumBot" +msgstr "समबोट्" + +#: taextras.py:169 +msgid "speed SumBot" +msgstr "सम्बोट्को गति बढाऊ" + +#: taextras.py:170 +msgid "submit the speed to the SumBot" +msgstr "सम्बोट्लाई गति देऊ" + +#: taextras.py:171 +msgid "set the default speed for the movement commands" +msgstr "चाल आदेशहरुको लागि पूर्वनिर्धारित गति सेट गर।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:173 +msgid "forward SumBot" +msgstr "सम्बोट्लाई अगाडि लग" + +#: taextras.py:174 +msgid "move SumBot forward" +msgstr "सम्बोट्लाई अगाडि सार" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:176 +msgid "backward SumBot" +msgstr "सम्बोट्लाई पछाडि लग" + +#: taextras.py:177 +msgid "move SumBot backward" +msgstr "सम्बोट्लाई पछाडि सार" + +#: taextras.py:178 +msgid "stop SumBot" +msgstr "सम्बोट्लाई रोक" + +#: taextras.py:179 +msgid "stop the SumBot" +msgstr "सम्बोट्लाई रोक" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:181 +msgid "left SumBot" +msgstr "सम्बोट्लाई बायाँ मोड़" + +#: taextras.py:182 +msgid "turn left the SumBot" +msgstr "सम्बोट्लाई बायाँ मोड़" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:184 +msgid "right SumBot" +msgstr "सम्बोट्लाई दायाँ मोड़" + +#: taextras.py:185 +msgid "turn right the SumBot" +msgstr "सम्बोट्लाई दायाँ मोड़" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.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:188 +msgid "angle to center" +msgstr "केंद्र तर्फ कोण गर" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:190 +msgid "get the angle to the center of the dohyo" +msgstr "डोजोको केंद्र तर्फ कोण मिलाऊ" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:193 +msgid "angle to Enemy" +msgstr "शत्रु तर्फ कोण राख" + +#: taextras.py:194 +msgid "get the angle to the Enemy" +msgstr "शत्रु तर्फ कोण मिलाऊ" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:196 +msgid "x coor. SumBot" +msgstr "सम्बोट्को x निर्देशांक" + +#: taextras.py:197 +msgid "get the x coordinate of the SumBot" +msgstr "सम्बोट्को x निर्देशांक लिऊ ।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:199 +msgid "y coor. SumBot" +msgstr "सम्बोट्को y निर्देशांक" + +#: taextras.py:200 +msgid "get the y coordinate of the SumBot" +msgstr "सम्बोट्को य निर्देशांक लिऊ ।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:202 +msgid "x coor. Enemy" +msgstr "सम्बोट्को शत्रुको x निर्देशांक" + +#: taextras.py:203 +msgid "get the x coordinate of the Enemy" +msgstr "शत्रुको x निर्देशांक लिऊ ।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:205 +msgid "y coor. Enemy" +msgstr "सम्बोट्को शत्रुको y निर्देशांक" + +#: taextras.py:206 +msgid "get the y coordinate of the Enemy" +msgstr "शत्रुको ञ निर्देशांक लिऊ ।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:208 +msgid "rotation SumBot" +msgstr "सम्बोट्को परिक्रमण" + +#: taextras.py:209 +msgid "get the rotation of the Sumbot" +msgstr "सम्बोट्को परिक्रमण लिऊ ।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:211 +msgid "rotation Enemy" +msgstr "शत्रुको परिक्रमण" + +#: taextras.py:212 +msgid "get the rotation of the Enemy" +msgstr "शत्रुको परिक्रमण लिऊ ।" + +#: taextras.py:213 +msgid "distance to center" +msgstr "केंद्र सम्मको दुरी" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:215 +msgid "get the distance to the center of the dohyo" +msgstr "डोजोको केंद्र सम्मको दुरी लिऊ ।" + +#: taextras.py:216 +msgid "distance to Enemy" +msgstr "शत्रुसम्मको दुरी" + +#: taextras.py:217 +msgid "get the distance to the Enemy" +msgstr "शत्रुसम्मको दुरी लिऊ ।" + +#: taextras.py:218 +msgid "update information" +msgstr "सुचना अद्यावधिक गर" + +#: taextras.py:219 +msgid "update information from the server" +msgstr "सर्भरबाट सुचना अद्यावधिक गर" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:224 +msgid "Palette of physics blocks" +msgstr "भौतिकविज्ञान खण्डहरुको प्यालेट" + +#: taextras.py:225 +msgid "start polygon" +msgstr "बहुभुज सुरु गर" + +#: taextras.py:226 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "हालको टर्टलको xy स्थानमा आधारित नयाँ बहुभुज परिभाषा गर्न सुरु गर।" + +#: taextras.py:228 +msgid "add point" +msgstr "बिन्दु थप" + +#: taextras.py:229 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "हालको टर्टलको xy स्थानमा आधारित हालको बहुभुजमा नयाँ बिन्दु थप ।" + +#: taextras.py:231 +msgid "end polygon" +msgstr "बहुभुज अन्त गर" + +#: taextras.py:232 +msgid "Define a new polygon." +msgstr "नयाँ बहुभुज परिभाषा गर।" + +#: taextras.py:233 +msgid "end filled polygon" +msgstr "भरेको बहुभुज अन्त गर" + +#: taextras.py:234 +msgid "Not a simple polygon" +msgstr "सामान्य बहुभुज हैन" + +#: taextras.py:235 +msgid "Define a new filled polygon." +msgstr "नयाँ भरेको बहुभुज परिभाषा गर।" + +#: taextras.py:236 +msgid "triangle" +msgstr "त्रिभुज" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:238 +msgid "base" +msgstr "सतह" + +#: taextras.py:239 taextras.py:245 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "उचाइ" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "पेनको तत्कालिन आकार बचत गर्छ (सङ्ख्या खण्डको सट्टा प्रयोग गर्न सकिन्छ)" +#: taextras.py:240 +msgid "Add a triangle object to the project." +msgstr "परियोजनामा त्रिभुज वस्तु थप ।" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "कलमका रङहरुको प्यालेट" +#: taextras.py:241 +msgid "circle" +msgstr "वृत्त" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "रातो" +#: taextras.py:242 +msgid "Add a circle object to the project." +msgstr "परियोजनामा वृत्त वस्तु थप ।" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "सुन्तला" +#: taextras.py:243 +msgid "rectangle" +msgstr "समकोण आयत" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "पहेलो" +#: taextras.py:244 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "चौडाइ" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "हरियो" +#: taextras.py:246 +msgid "Add a rectangle object to the project." +msgstr "परियोजनामा समकोण आयत वस्तु थप ।" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "स्यान" +#: taextras.py:247 +msgid "reset" +msgstr "पुनराम्भ" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "निलो" +#: taextras.py:248 +msgid "Reset the project; clear the object list." +msgstr "परियोजना पुनराम्भ गर; वस्तु सुचि सफा गर।" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "प्याजी" +#: taextras.py:249 +msgid "motor" +msgstr "मोटर" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "सेतो" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:251 +msgid "torque" +msgstr "चक्रिय गति" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "कालो" +#: taextras.py:252 +msgid "speed" +msgstr "गति" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "अक्षरको रंग राख" +#: taextras.py:253 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"मोटरको चक्रिय गति र गति ०(बन्द) देखि सकारात्मक अंकहरु सम्म फैलिएको हुन्छ; मोटर हालै " +"मात्र बनाएको वस्तुमा राखिन्छ।" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "कछुवाले लेख्ने अक्षरको रङ निर्धारण गर्छ" +#: taextras.py:255 taextras.py:418 +msgid "pin" +msgstr "पिन" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "कलमको साइज मिलाउ" +#: taextras.py:256 +msgid "Pin an object down so that it cannot fall." +msgstr "वस्तुलाई नखस्ने गरि त्यसलाई अड्याऊ।" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "कछुवाले कोरेको अक्षरको आकार निश्चित गर्छ" +#: taextras.py:257 +msgid "joint" +msgstr "संयुक्त" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "न्युमरेटर सञ्चालनकर्ताको प्यालेट" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "प्लस्" +#: taextras.py:259 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "दुईवटा अल्फान्युमेरिक आगतहरु जोड्छ" +#: taextras.py:260 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "दुईवटा वस्तुहरु साथमा जोड(हालैमात्र बनाएको वस्तु र बिन्दु x, yको वस्तु)" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "घटाऊ" +#: taextras.py:262 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "माथिको संख्यात्मक आगतले तलको संख्यात्मक आगतलाई घटाउछ।" +#: taextras.py:263 +msgid "Save the project to the Journal as a Physics activity." +msgstr "भौतिकविज्ञान क्रियाकलापको रुपमा परियोजनालाई पंजिकामा सेभ गर।" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "गुनन्" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:265 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "२ वटा संख्यात्मक आगतको गुणन गर्छ" +#: taextras.py:266 +#, fuzzy +msgid "Add a gear object to the project." +msgstr "परियोजनामा वृत्त वस्तु थप ।" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "भाग गर" +#: taextras.py:267 +msgid "density" +msgstr "घनत्व" -#: TurtleArt/tabasics.py:604 +#: taextras.py:268 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"Set the density property for objects (density can be any positive number)." +msgstr "वस्तुहरुको लागि घनत्व गुण सेट गर(घनत्व कुनै पनि सकारात्मक अंक हुन सक्छ)।" + +#: taextras.py:270 +msgid "friction" +msgstr "घर्षण" + +#: taextras.py:271 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"वस्तुहरुको लागि घर्षण गुण सेट गर( ० देखि १ सम्घम मान, जहाँ ० ले घर्षणलाई बन्द गर्छ र १ " +"मज़बूत घर्षण हो)।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:274 +msgid "bounciness" +msgstr "ठोक्किएर फर्कने गुण" + +#: taextras.py:275 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"वस्तुहरुको लागि ठोक्किएर फर्कने गुण सेट गर( ० देखि १ सम्घम मान, जहाँ ० भन्नाले शून्य उछाल र " +"१ घेरै उत्फुल्ल हो)।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:278 +msgid "dynamic" +msgstr "गतिशील शक्ति" + +#: taextras.py:279 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"यदि गतिशील शक्ति ‍ = १, वस्तु चल्न सक्छ; यदि गतिशील शक्ति ‍ = ०, त्यो स्थानमा स्थापित " +"हुन्छ।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:285 +msgid "Palette of WeDo blocks" +msgstr "WeDo खण्डहरुको प्यालेट" + +#: taextras.py:286 +msgid "WeDo" msgstr "" -"माथील्लो संख्यात्मक आगतलाई (न्यूमिरेतर) तलको संख्यात्मक आगतले भाग गर " -"(डिनोमिरेतर)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "परिचय" +#: taextras.py:287 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "बल्क बिस्तार गर्न प्रयोग भएको सञ्चालनकर्ताको पहिचान गर" +#: taextras.py:288 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:290 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"सेन्सरको आउट्पुट झुकाऊ:(-१==नझुकाऊ,०==अगाडि झुकाऊ,३==पछाडि झुकाऊ,१==बायाँ " +"झुकाऊ,२‍‍‍‍==दायाँ झुकाऊ)" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:294 +msgid "distance sensor output" +msgstr "सेन्सरको आउट्पुटको दुरी" + +#: taextras.py:295 +msgid "Motor A" +msgstr "मोटर A" + +#: taextras.py:296 +msgid "returns the current value of Motor A" +msgstr "मोटर Aको हालको मान फर्काउँछ" + +#: taextras.py:297 +msgid "Motor B" +msgstr "मोटर B" + +#: taextras.py:298 +msgid "returns the current value of Motor B" +msgstr "मोटर Bको हालको मान फर्काउँछ" + +#: taextras.py:299 +msgid "set the value for Motor A" +msgstr "मोटर Aको मान सेट गर" + +#: taextras.py:300 +msgid "set the value for Motor B" +msgstr "मोटर Bको मान सेट गर" + +#: taextras.py:301 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "मोड्युल (रेमिनदर) सञ्चालनकर्ता" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:303 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:306 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "बर्गको रुट" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "मोटरहरुको LEGO NXT खण्डहरुको प्यालेट" + +#: taextras.py:313 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "सेन्सरहरुको LEGO NXT खण्डहरुको प्यालेट" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:315 +msgid "touch" +msgstr "टच" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:317 +msgid "ultrasonic" +msgstr "अल्त्रासोनिक" + +#: taextras.py:318 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "रंग" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "वर्गमूल निकाल्छ" +#: taextras.py:319 +msgid "light" +msgstr "उज्यालो" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "जुनसुकै" +#: taextras.py:320 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "ध्बनि" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "कम्ति" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "खरानी रङ" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "अधिक्तम" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:323 +#, fuzzy +msgid "Please check the connection with the brick" +msgstr "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"कृपया ब्रिकसगँको जडान जाच।" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "" -"न्युन (top) र अधिक्तम(bottom) मानहरु बिच अनियमित ढन्गले सङ्ख्या फिर्ता गर्छ" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "अंक" +#: taextras.py:325 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "गणित सञ्चालनमा संख्यात्मक आगतको प्रयोग" +#: taextras.py:326 +#, fuzzy +msgid "The value of power must be between -127 to 127" +msgstr "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"शक्तिको मान -१२७ देखि १२७ भित्र हुनुपर्छ।" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "भन्दा ठूलो" +#: taextras.py:327 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "युक्तिसंगत greater-than सञ्चालनकर्ता" +#: taextras.py:328 +#, fuzzy +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"त्रुटि घट्यो: सबै जडानहरु जाच र फेरि जडान गर्न कोसिस गर।" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "...भन्दा कम" +#: taextras.py:329 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "युक्तिसंगत less-than सञ्चालनकर्ता" +#: taextras.py:330 +msgid "NXT not found" +msgstr "NXT भटिएन" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "बराबर" +#: taextras.py:331 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "युक्तिसंगत equal-to सञ्चालनकर्ता" +#: taextras.py:332 +msgid "refresh NXT" +msgstr "NXTलाई ताजा पार" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "होइन" +#: taextras.py:333 +msgid "Search for a connected NXT brick." +msgstr "जडान भएको NXT ब्रिकलाई खोज।" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "युक्तिसंगत NOT सञ्चालनकर्ता" +#: taextras.py:334 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "र" +#: taextras.py:335 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "युक्तिसंगत AND सञ्चालनकर्ता" +#: taextras.py:336 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "अथवा" +#: taextras.py:337 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "युक्तिसंगत वा सञ्चालनकर्ता" +#: taextras.py:338 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "फ्लो सञ्चालनकर्ताको प्यालेट" +#: taextras.py:339 +msgid "play tone" +msgstr "टोन सुरु गर" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "पर्ख" +#: taextras.py:340 +msgid "frequency" +msgstr "आवृत्ति" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "कार्यक्रम कार्यान्वयनलाई तोकिएको समयले रोक्छ" +#: taextras.py:341 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "समय" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "सधैकोलागि" +#: taextras.py:342 +msgid "Play a tone at frequency for time." +msgstr "समयको लागि आवृतिमा आवाज सुरु गर।" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "लुप (हरु) सधैँका लागी" +#. TRANS: turn is the action +#: taextras.py:344 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "दोहोर्‍याउ" +#: taextras.py:345 +msgid "port" +msgstr "पोर्ट" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "तोकिए अनुसार लुप गर्छ" +#: taextras.py:346 +msgid "power" +msgstr "शक्ति" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "यदि" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:348 +msgid "rotations" +msgstr "आवर्तनहरु" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "अनि" +#: taextras.py:349 +msgid "turn a motor" +msgstr "मोटरलाई घूमाऊ" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "इफ देन" +#: taextras.py:350 +#, fuzzy +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"दुईवटा मोटरहरु सनकालिन गर" + +#: taextras.py:351 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "सङ्ख्या प्यालेटबाट बुलियन सञ्चालकहरू प्रयोग गर्ने if-thenसञ्चालक" +#: taextras.py:352 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "PORT B र PORT C मा जडान भएको दुईवटा मोटरहरु संकालन गर" + +#: taextras.py:353 +msgid "PORT A" +msgstr "PORT A" + +#: taextras.py:354 +msgid "PORT A of the brick" +msgstr "ब्रिकको PORT A" + +#: taextras.py:355 +msgid "PORT B" +msgstr "PORT B" + +#: taextras.py:356 +msgid "PORT B of the brick" +msgstr "ब्रिकको PORT B" + +#: taextras.py:357 +msgid "PORT C" +msgstr "PORT C" + +#: taextras.py:358 +msgid "PORT C of the brick" +msgstr "ब्रिकको PORT C" + +#: taextras.py:359 +msgid "start motor" +msgstr "मोटर सुरु गर" + +#: taextras.py:360 +msgid "Run a motor forever." +msgstr "मोटरलाई सधैको लागि चलाऊ।" + +#: taextras.py:361 +msgid "brake motor" +msgstr "मोटरलाई ब्रेक लगाऊ" + +#: taextras.py:362 +msgid "Stop a specified motor." +msgstr "उल्लेखित मोटर बन्द गर।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:364 +msgid "reset motor" +msgstr "मोटरलाई रिसेट गर" + +#: taextras.py:365 +msgid "Reset the motor counter." +msgstr "मोटर काउन्टर रिसेट गर" + +#: taextras.py:366 +msgid "motor position" +msgstr "मोटरको स्थान" + +#: taextras.py:367 +msgid "Get the motor position." +msgstr "मोटरको स्थान प्राप्त गर।" + +#: taextras.py:368 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:369 +msgid "PORT 1 of the brick" +msgstr "ब्रिकको PORT १" + +#: taextras.py:370 +msgid "read" +msgstr "पढ" + +#: taextras.py:371 +msgid "sensor" +msgstr "संवेदक" + +#: taextras.py:372 +msgid "Read sensor output." +msgstr "संवेदकको उपज पढ।" + +#: taextras.py:373 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:374 +msgid "PORT 2 of the brick" +msgstr "ब्रिकको PORT २" + +#: taextras.py:375 +msgid "light sensor" +msgstr "प्रकाश संवेदक" + +#: taextras.py:376 +msgid "gray sensor" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "नत्र" +#: taextras.py:377 +msgid "PORT 3" +msgstr "PORT 2" + +#: taextras.py:378 +msgid "PORT 3 of the brick" +msgstr "ब्रिकको PORT ३" + +#: taextras.py:379 +msgid "touch sensor" +msgstr "टच संवेदक" + +#: taextras.py:380 +msgid "distance sensor" +msgstr "दुरी संवेदक" + +#: taextras.py:381 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:382 +msgid "PORT 4 of the brick" +msgstr "ब्रिकको PORT ४" + +#: taextras.py:383 +msgid "sound sensor" +msgstr "ध्वनिको सेन्सर" + +#: taextras.py:384 +msgid "color sensor" +msgstr "रंगको संवेदक" + +#. #-#-#-#-# ne.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) +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.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:387 +msgid "set light" +msgstr "प्रकाश सेट गर" + +#: taextras.py:388 +msgid "Set color sensor light." +msgstr "अनुरुप पढ" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:390 +msgid "battery level" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "इफ् देन एल्स" +#: taextras.py:391 +msgid "Get battery level of the brick" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "सङ्ख्या प्यालेटबाट बुलियन सञ्चालकहरू प्रयोग गर्ने if-then-else सञ्चालक" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:396 +msgid "HIGH" +msgstr "HIGH" + +#: taextras.py:397 +msgid "LOW" +msgstr "LOW" + +#: taextras.py:398 +msgid "INPUT" +msgstr "INPUT" + +#: taextras.py:399 +msgid "OUTPUT" +msgstr "OUTPUT" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:401 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:402 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:403 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ERROR: अर्दिनो र पोर्टको सङ्ख्या जाच।" + +#: taextras.py:404 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "ERROR: मान ० देखि २५५ सम्मको अंक हुनुपर्छ।" + +#: taextras.py:405 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ERROR: मान कि HIGH अथवा LOW हुनुपर्छ।" + +#: taextras.py:406 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "ERROR: विधि कि INPUT, OUTPUT, PWM अथवा SERVO हुनुपर्छ।" + +#: taextras.py:407 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "तर्सो खाली ठाँऊ" +#: taextras.py:408 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "जगहरु दायाँ थाँक लग्छ" +#: taextras.py:409 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "ठाडो गरि खाली ठाउँ" +#: taextras.py:410 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "जग्सहरु तल थाँक लाग्छन" +#: taextras.py:411 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "कार्य रद्द गर" +#: taextras.py:412 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "हालको कार्य रोक्छ" +#: taextras.py:413 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "चल खण्डहरुको प्यालेट" +#: taextras.py:414 +msgid "Get the name of an Arduino." +msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "सुरु गर" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.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:417 +msgid "pin mode" +msgstr "पिन विधि" + +#: taextras.py:419 +msgid "mode" +msgstr "विधि" + +#: taextras.py:420 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "पिन कार्य(INPUT, OUTPUT, PWM, SERVO) छान।" + +#: taextras.py:421 +msgid "analog write" +msgstr "अनुरुप लेख" + +#: taextras.py:422 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "मान" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "कार्यलाई उपकरण पट्टी चलाउने बटनसँग जडान गर्छ" +#: taextras.py:423 +msgid "Write analog value in specified port." +msgstr "उल्लेखित पोर्टमा अनुरुप मान लेख।" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "पाठ" +#: taextras.py:424 +msgid "analog read" +msgstr "अनुरुप पढ" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "स्ट्रिङ मान" +#: taextras.py:425 +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 "" +"अनुरुप पोर्टबाट मान पढ। मान ० देखि १०२३ सम्मको हुन सक्छ। वोल्टेज निर्धारित गर्न Vref " +"प्रयोग गर। USBको लागि, volt = लगभग (((read)*5)/1024)" + +#: taextras.py:427 +msgid "digital write" +msgstr "डिजिटल लेख" + +#: taextras.py:428 +msgid "Write digital value to specified port." +msgstr "उल्लेखित पोर्टमा डिजिटल मान लेख।" + +#: taextras.py:429 +msgid "digital read" +msgstr "डिजिटल पढ" + +#: taextras.py:430 +msgid "Read value from digital port." +msgstr "डिजिटल पोर्टबाट मान पढ।" + +#: taextras.py:431 +msgid "Set HIGH value for digital port." +msgstr "डिजिटल पोर्टको लागि HIGH मान सेट गर।" + +#: taextras.py:432 +msgid "Configure Arduino port for digital input." +msgstr "डिजिटल आगतको लागि Arduino समनुरूप गर" + +#: taextras.py:433 +msgid "Configure Arduino port to drive a servo." +msgstr "सर्वो चलाउन Arduino समनुरूप गर।" + +#: taextras.py:434 +msgid "Set LOW value for digital port." +msgstr "डिजिटल पोर्टको लागि LOW मान सेट गर।" + +#: taextras.py:435 +msgid "Configure Arduino port for digital output." +msgstr "डिजिटल उत्पादको लागि Arduino समनुरूप गर" + +#: taextras.py:436 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "PWM(pulse-width modulation)को लागि समनुरूप गर।" + +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:441 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "WeDo खण्डहरुको प्यालेट" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "कार्य" +#. TRANS: Programmable voltage output +#: taextras.py:443 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "नामाकरण गर्न मिल्ने कार्य थाँकको माथि" +#: taextras.py:444 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "इनभोक्स नामाङिक्त कार्य थाक" +#. TRANS: Square wave 1 voltage output +#: taextras.py:446 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "बाकस १ मा भंडार गर" +#: taextras.py:447 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "संख्यात्मक मान चल १ मा भण्डारण गर्छ" +#. TRANS: Square wave 2 voltage output +#: taextras.py:449 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "बाकस २ मा भंडार गर" +#: taextras.py:450 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "संख्यात्मक मान चल २ मा भण्डारण गर्छ" +#. TRANS: Digital output level +#: taextras.py:452 +msgid "set OD1" +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "बाकस १" +#: taextras.py:453 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "चल 1 (संख्यात्मक मान)" +#. TRANS: Input 1 voltage level +#: taextras.py:455 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "बाकस २" +#: taextras.py:456 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "चल २ (संङख्यातमक मान)" +#. TRANS: Input 2 voltage level +#: taextras.py:459 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "स्टोर गर्नुहोस्" +#: taextras.py:460 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "बाकस" +#. TRANS: Resistive sensor voltage level +#: taextras.py:463 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "मान" +#: taextras.py:464 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "मेरो बाकस" +#: taextras.py:466 +msgid "capture" +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "संख्यात्मक मानलाई नाम गरिएको चलमा भण्डारन गर्छ" +#: taextras.py:467 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "नाम गरिएको चल (संख्यात्मक मान)" +#: taextras.py:468 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-#\n" +"नमूनाहरु" + +#: taextras.py:469 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "कार्य १" +#. TRANS: MS is microseconds +#: taextras.py:471 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "कार्य १ थाकको प्रथम मा छ।" +#. TRANS: Analog input 1 voltage level +#: taextras.py:474 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "कार्य २" +#: taextras.py:475 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "कार्य २ थाकको माथि" +#. TRANS: Analog input 2 voltage level +#: taextras.py:477 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "कार्य १ थाक स्तुति गर्छ" +#: taextras.py:478 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "कार्य २ थाक स्तुति गर्छ" +#. TRANS: Read input 1 voltage +#: taextras.py:480 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "रद्दिटोकरी" +#: taextras.py:481 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "खाली डस्टबीन" +#. TRANS: Read input 2 voltage +#: taextras.py:483 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "रद्दीटोकरीको बस्तु सधैलाई मेटाउँछ" +#: taextras.py:484 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "सबै पूर्वावस्थामा ल्याउ" +#. TRANS: Read analog sensor input voltage +#: taextras.py:486 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "रद्दि टोकरीमा भएका सबै सामग्री फिर्ता जान्छ" +#: taextras.py:487 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "सबै सफा गर" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:489 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "सबै खण्डहरू रद्दीटोकरीमा सार" +#: taextras.py:490 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "अंश चुनिंदा खण्डहरू" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:492 +msgid "SQR2" +msgstr "" + +#: taextras.py:493 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:495 +msgid "PVS" +msgstr "" + +#: taextras.py:496 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:497 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "पुनरारम्भ सुरु गरन् भिडियो आथवा आवाज" #: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 #: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 @@ -721,851 +1754,686 @@ msgstr "अंश चुनिंदा खण्डहरू" msgid "Title" msgstr "शीर्षक" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "टर्टल रोक" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "खण्डहरु देखाउ" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "खण्डहरु लुकाऊ" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "निर्गत गरेन" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "मलाई आउँदैन कसरी गर्ने" - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "मनपर्दैन" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "आपूर्तिको रुपमा" - -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "अर्को प्यालेट देखाँउछ" - -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "खण्डहरुको प्यालेटको अभिमुखीकरण परिवर्तन गर्छ" - -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "सुरु गर..." - -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "सेभ गर..." - -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "खोल्नलाई क्लिक गर" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "पृष्ठविन्यास" +#: 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 "क्यामेराबाट आएको औसत RGB रंग थाकमा पन्छाइन्छ" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "आर्को" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "पहेलो" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "सिफ्ट" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "पोलार निर्देशांक देखाऊ" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "FILO (first-in last-out heap) मेटाउँछ" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "खण्डहरु अंश छान" +#: 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 "क्यामेराको निर्गत" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "टर्टल आर्ट" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "थुप्रो हुने गरी x, y, z मा गतिवृद्धि थिच" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "चित्र" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "सङ्ख्या प्यालेटबाट बुलियन सञ्चालकहरू प्रयोग गर्ने if-thenसञ्चालक" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "लोगोको रुपमा सेभ गर" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "जगहरु दायाँ थाँक लग्छ" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "तस्विरको रुपमा सेभ गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "सुगर जर्नल मिडिया वस्तु" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "स्न्यापशट" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "बाकस २" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "स्नयापसट सेभ गर" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "बाकस १" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "होबर सहयोग बन्द गर" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "चाल" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "होबर सहयोग सुरु गर" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "२ वटा संख्यात्मक आगतको गुणन गर्छ" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "प्यालेट देखाउ" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "खण्ड लुकाऊ/देखाऊ" #: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 msgid "Hide palette" msgstr "प्यालेट लुकाऊ" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "निर्देशांक तल पुन: स्केल गर" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "निर्देशांक माथि पुन: स्केल गर" - -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "सम्पादन गर" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "बद्दिहरु" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "हेर" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "मेरो टर्टल आर्ट सेशन" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "परियोजना" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "सुगर जर्नल भिडियो वस्तु" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "सेभ गर/सुरु गर" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "स्यान" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "प्रतिलिपी बनाऊ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "स्क्रिनको दायाँपट्टिको xcor" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "प्रतिलिपी सार" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "अतिरिक्त विकल्प भएको प्यालेट" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "रद्दि टोकरीमा भएका सबै सामग्री फिर्ता गर" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "उदाहरण सुरु गर" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "पुरै पर्दा" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "सबै खण्डहरू रद्दीटोकरीमा सार" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "कार्टेसियन निर्देशांक" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "सूची" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "पोलार निर्देशांक" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "कनफिगरेसन निर्देशिकामा लेख्न मिल्दैन: %s" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "मैट्रिक / मापीय निर्देशांक" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "मिडिया पुनरारम्भ" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "खण्डहरु बढाऊ" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "शीर्षक" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "खण्डहरु घटाऊ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "टर्टल ग्राफिकलाई SVG बनाई सुगर जर्नलमा सेभ गर्छ" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "उदाहरण सुरु गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "पंजिकामा रहेको पाठ वा मिडिया देखाउँछ" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "सफा गर्नुहोस्" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "चलाउनुहोस्" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "भिडियो" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "चाल" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "निलो" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "मद्दत" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "कार्टिसन कोर्डिनेट देखिउँछ" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "रोक" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "विकल्प नभएमा कार्य:" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "परियोजना सुरु गर" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "जग्सहरु तल थाँक लाग्छन" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "पल्गइन सुरु गर" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "मोड्युल (रेमिनदर) सञ्चालनकर्ता" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "पाइथन खण्ड सुरु गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "तल y" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "SVG सेभ गर" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "जर्नलमा रहेको tamyblock.py मोड्युलको सङ्केत चलाउँछ" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "कलमले नलेख" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "पर्ख" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "बाकस" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "अप्लोड गर्न सकेन" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "सिफ्ट" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "पल्गइन इन्टल गर्न सकिएन।" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "इनभोक्स नामाङिक्त कार्य थाक" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "कृपया पल्गइन चलाउन टर्टल आर्ट पुनरारम्भ गर।" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "कार्य" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "पल्गइन %s पहिल्यै इन्टल भइसक्यो।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "do-until-True सञ्चालनकर्ता जुनले अंकहरु प्यालेटदैखि बुलियन सञ्चालनकर्ता चलाउछ" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "के तिमी %s रिइन्टल गर्न चाहन्छौ?" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "प्रयोग हो" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "मेरो टर्टल आर्ट सेशन" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "चल २ (संङख्यातमक मान)" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "सहकार्य सक्षम पार" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "भाग गर" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "क्रियाकलापहरु" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "तस्विरको नाम" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "बद्दिहरु" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "एकैछिन पछि" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "बाँड" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "क्यानभासको चौडाइ" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "कन्फिगरेसन" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "खाली थाक" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "छिमेकी" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "नाम गरिएको चल (संख्यात्मक मान)" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "उपनाम" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "आर्को" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "खाता ID" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "इफ देन" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "सर्भर" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "कलमको परिमाण मिलाऊ" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "द्वार" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "प्रस्तुति टेम्प्लेट: पंजिकाको वस्तु छान (विवरण नभएका)" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "पासवर्ड" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "नभएसम्म" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "रजिस्टर गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "मिडिया बन्द गर" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "रंगहरु" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "होबर सहयोग सुरु गर" -#: 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 "अपलोड" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "रद्दीटोकरीको बस्तु सधैलाई मेटाउँछ" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "यूमोड" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "संजालमा अप्लोड गर" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "कार्य १ थाकको प्रथम मा छ।" -#: gnome_plugins/uploader_plugin.py:90 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"परियोजना अप्लोड गर्न http://turtleartsite.sugarlabs.org मा अकाउन्ट हुनुपर्छ" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "प्रोगरामेबल खण्ड: उन्नत एकल-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., sin(x)" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "प्रयोगकर्ताको नाम:" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "फ्लो सञ्चालनकर्ताको प्यालेट" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "पासवर्ड:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "संक्षिप्त थाँकको माथि" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "शीर्षक:" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "सङ्ख्या प्यालेटबाट बुलियन सञ्चालकहरू प्रयोग गर्ने if-then-else सञ्चालक" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "वर्णन:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "माउसको y निर्देशाङ्क फर्काउँछ" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "सञ्जालमा बुझाऊ" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "अहिलेको कलमको रंग बचत गर्छ" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "रद्द गर" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "साइनतरङ्ग" #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "लगइन असफल भयो" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "अप्लोड गर्न सकेन" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "बायाँ x" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "सेन्सर खण्डहरुको प्यालेट" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "शीर्षक राख" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "गतिवृद्धि" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "कछुवा मुनिको RGB कलर थाँक मुनि फिर्ता जान्छ" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "थुप्रो हुने गरी x, y, z मा गतिवृद्धि थिच" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "खण्डहरु लुकाएर क्यानभास सफा बनाउँछ" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "ध्बनि" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "कच्चा माइक्रोफोनको आगत संकेत" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "चर्कोपन" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "माइक्रोफोन आयातको भोल्युम" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "पिच" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "माइक्रोफोन आगत पिच" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "तर्सो खाली ठाँऊ" -#: 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 "प्रतिबन्ध" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "मैट्रिक / मापीय निर्देशांक" -#: 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 "माइक्रोफोनको आगत प्रतिरोध" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "स्ट्रिङ मान" -#: 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 "भोल्टेज" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "वर्णन" -#: 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 "माइक्रोफोनको आयात भोल्युम" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "मलाई आउँदैन कसरी गर्ने" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "मिडिया वस्तुहरुको प्यालेट" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "कलमको साइज मिलाउ" -#: 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 "चम्किलोपन" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "प्रयोगकर्ताको नाम:" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "क्यामेराले पत्तालगाएको प्रकाशको मात्रा" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "भरिएको बहुभुज सुरु गर्छ (अन्त्य भर्ने खण्डसगँ प्रयोग गरिने)" -#: 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 "क्यामेराबाट आएको औसत RGB रंग थाकमा पन्छाइन्छ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "प्रस्तुति टेम्प्लेट: चारवटा जर्नलको वस्तु छान" -#: 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 "क्यामेराको निर्गत" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "हेर" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "प्रकाश सेंसरद्वारा पता लगाएको प्रकाश मात्रा" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "कछुवाले बनाएको धर्कोको छाँया निर्धारित गर्छ" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "पासवर्ड:" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "RFID यन्त्रबाट मान पढ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "टर्टलले देख्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "एकैछिन पछि" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "कार्य रद्द गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"अंक प्यालेटबाट boolean सञ्चालनकर्ता प्रयोग गर्ने do-while-True सञ्चालनकर्ता" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "हरियो" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "नभएसम्म" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "छाया" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"do-until-True सञ्चालनकर्ता जुनले अंकहरु प्यालेटदैखि बुलियन सञ्चालनकर्ता " -"चलाउछ" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "पृष्ठभुमि (रंग, सेड) ले भरिन्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "माथि" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "तस्बिर सेभ गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "पतन गर्न मिल्ने थाकको माथि" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "पिच" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "पंजिका" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "यदि माउस बटन थिचेको भएमा १ फर्काउँछ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "सुगर जर्नल मिडिया वस्तु" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "निर्देशांक माथि पुन: स्केल गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "श्रव्य" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "कलमले लेख" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "सुगर जर्नल श्रव्य वस्तु" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "सुन्तला" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "भिडियो" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "कार्यक्रम कार्यान्वयनलाई तोकिएको समयले रोक्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "सुगर जर्नल भिडियो वस्तु" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "मानलाई FILO (first-in last-out heap) मा धकेल्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "वर्णन" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "सबै सफा गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "सुगर पंजिका वर्णन फाँट" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "अनि" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "देखाउ" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "रजिस्टर गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "पंजिकामा रहेको पाठ वा मिडिया देखाउँछ" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "होइन" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "पङ्क्तिबद्धरुपमा देखाऊ" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "इफ् देन एल्स" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "छाया राख" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "हालको कार्य रोक्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "मिडियाको स्केल निर्धारित गर्छ" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "कछुवालाई घडिको दिशामा घुमाउँछ(कोण ढिग्रीमा)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "तस्बिर सेभ गर" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "खरानी रङ हालमा प्रयोग (यो अंक बल्क गर्न पनि प्रयोग गर्न सक्नु हुन्छ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "तस्विरको नाम" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "स्क्रिनको बायाँपट्टिको xcor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "सुगर जर्नलमा तस्विर सेभ गर्छ" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "खण्ड आकार रिसेट गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG सेभ गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "कछुवा" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "टर्टल ग्राफिकलाई SVG बनाई सुगर जर्नलमा सेभ गर्छ" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "अर्को प्यालेट देखाँउछ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "स्केल" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "खण्डहरु लुकाऊ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "हालको स्केल मान राख्छ" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "क्यामेराले पत्तालगाएको प्रकाशको मात्रा" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "मिडिया रोक" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "युक्तिसंगत less-than सञ्चालनकर्ता" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "हालको भिडियो वा आवाज समाप्त हुन कुर्नुहोस्" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "रद्दि टोकरीमा भएका सबै सामग्री फिर्ता जान्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "मिडिया बन्द गर" +#: turtleblocks.py:356 +msgid "Save" +msgstr "सेभ गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "बन्द गर भिडियो आथवा आवाज" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "बाकस १ मा भंडार गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "मिडिया रोक" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "बाकस २ मा भंडार गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "रोक भिडियो आथवा आवाज" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "सुगर उपकरणपट्टी लुकाउँछ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "मिडिया पुनरारम्भ" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"टर्टलको तत्काल x-निर्देशांक मान बचाइराख्छ (संख्या खण्डको सट्टामा प्रयोग गर्न सकिन्छ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "पुनरारम्भ सुरु गरन् भिडियो आथवा आवाज" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "प्रिन्ट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "बोल" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "माउसको x निर्देशाङ्क फर्काउँछ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "हेलो" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "रातो" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "पाठ बोल्छ" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "लोगोको रुपमा सेभ गर" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "साइनतरङ्ग" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "कछुवाले बनाएको रेखाको रंग सेट गर्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "अक्षरको रंग राख" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "अन्तराल" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "चर्कोपन" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "साइनतरङ्गलाई आवृत्ति, कोणाङ्क र अन्तरालमा ( सेकेन्डमा) देखाउँछ" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "सहकार्य सक्षम पार" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "बटन तल" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "सेन्सर खण्डहरुको प्यालेट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "यदि माउस बटन थिचेको भएमा १ फर्काउँछ" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "पल्गइन सुरु गर" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 #, fuzzy msgid "returns True if mouse button is pressed" msgstr "यदि माउस बटन थिचेको भएमा १ फर्काउँछ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "माउस x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "माउसको x निर्देशाङ्क फर्काउँछ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "माउस y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "माउसको y निर्देशाङ्क फर्काउँछ" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "अंक" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "क्वेरी कुञ्जीपाटी" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "कुञ्जीपाटीको लाई क्वेरी आगत (परिणामहरु कुञ्जीपाटीको बल्कमा छ)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "माथि" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "कुञ्जीपाटी" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "सञ्जालमा बुझाऊ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "क्वेरी-कुञ्जीपाटी खण्डको परिणामहरु ASCII को रुपमा राख्छ" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "कार्टेसियन निर्देशांक" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "पिक्सेल पढ" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "उपनाम" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "कछुवा मुनिको RGB कलर थाँक मुनि फिर्ता जान्छ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "छाया राख" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "टर्टलले देख्छ" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "अंश चुनिंदा खण्डहरू" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "टर्टलले \"देखेको\" रंग फिर्ता गर्छ" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "सेतो" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "समय" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "कार्यलाई उपकरण पट्टी चलाउने बटनसँग जडान गर्छ" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "कार्यक्रम सुरु भएदेखिको बितेको समय(सेकेन्ड मा)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "अतिरिक्त विकल्प भएको प्यालेट" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "धकाल" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "मानलाई FILO (first-in last-out heap) मा धकेल्छ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "हिप देखाउ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "मानलाई FILO (first-in last-out heap) मा देखाँउछ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "खाली थाक" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "FILO (first-in last-out heap) मेटाउँछ" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "पप्" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "FILO (first-in last-out heap)को मान पप गर्छ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "खाली थाक" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "थाक खाली भए True फिर्ता र्गर्छ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "टिप्पणी" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "तपाँइको सङ्केतमा टिप्पणी राख्छ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "प्रिन्ट" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "मानलाई पर्दाको तल स्थिति खण्डमा छाप्छ" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "रद्द गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "क्यानभास हाइट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "प्रस्तुति 2x1" -# http://ne.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%87%E0%A4%A5%E0%A4%A8_%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A5%8B%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A4%BE%E0%A4%AE%E0%A4%BF%E0%A4%99%E0%A5%8D%E0%A4%97_%E0%A4%AD%E0%A4%BE%E0%A4%B7%E0%A4%BE -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "पाइथन" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "घटाऊ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"प्रोगरामेबल खण्ड: उन्नत एकल-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "र" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"प्रोगरामेबल खण्ड: उन्नत बहु-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., sqrt(x*x " -"+ y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "पतन गर्न मिल्ने थाकको माथि" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"प्रोगरामेबल खण्ड: उन्नत बहु-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., " -"sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "आपूर्तिको रुपमा" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1573,56 +2441,26 @@ msgstr "" msgid "Python block" msgstr "पाइथन खण्ड" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "जर्नलमा रहेको tamyblock.py मोड्युलको सङ्केत चलाउँछ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "कार्टेसन" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "कार्टिसन कोर्डिनेट देखिउँछ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "पोलार" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "पोलार निर्देशांक देखाऊ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "कछुवा" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "आदेश गर्ने कछुवा छान्छ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "मिडिया रोक" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "कछुवाको शेल" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "गतिवृद्धि" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "टर्टलमा अनुकूलन 'shell' राख" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "पेनको तत्कालिन आकार बचत गर्छ (सङ्ख्या खण्डको सट्टा प्रयोग गर्न सकिन्छ)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "संक्षिप्त थाँकको माथि" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "रंङ राख" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "कम्ति" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1631,71 +2469,67 @@ msgstr "" msgid "loads a block" msgstr "मेरो ब्लाक सुरु गर" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "xy राख" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "कलम आदेशको प्यालेट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "मानलाई FILO (first-in last-out heap) मा देखाँउछ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "अंक प्यालेटबाट boolean सञ्चालनकर्ता प्रयोग गर्ने do-while-True सञ्चालनकर्ता" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "प्रस्तुत गर्ने टेम्प्लेटहरूको प्यालेट" +#: turtleblocks.py:363 +msgid "File" +msgstr "फाइल" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "खण्डहरु लुकाऊ" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "युक्तिसंगत NOT सञ्चालनकर्ता" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "खण्डहरु लुकाएर क्यानभास सफा बनाउँछ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "स्क्रिनको तलपट्टिको ycor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "खण्डहरु देखाऊ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "प्रस्तुति टेम्प्लेट: पंजिकाको बस्तु छान (विवरण समेत)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "लुकेका खण्डलाई पूर्वावस्थामा ल्याउँछ" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "न्युमरेटर सञ्चालनकर्ताको प्यालेट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "सुगर उपकरणपट्टी लुकाउँछ" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "गुनन्" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "सूची" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "सधैकोलागि" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "प्रस्तुति बुलेटेड सूची" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "पल्गइन %s पहिल्यै इन्टल भइसक्यो।" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "प्रस्तुति टेम्पलेट: बुलेटका सूची" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "कछुवाले बनाएको रेखाको सेड निर्धारण गर्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "प्रस्तुति टेम्प्लेट: पंजिकाको वस्तु छान (विवरण नभएका)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "पाठ बोल्छ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "प्रस्तुति टेम्प्लेट: पंजिकाको बस्तु छान (विवरण समेत)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "स्न्यापशट" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "प्रस्तुति टेम्प्लेट: चारवटा जर्नलको वस्तु छान" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "सफा" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1704,959 +2538,1057 @@ msgstr "प्रस्तुति टेम्प्लेट: चारवट msgid "presentation template: select two Journal objects" msgstr "प्रस्तुती टेम्प्लेट: दुईवटा जर्नल बस्तु छान" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "स्क्रिनको बायाँपट्टिको xcor" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "तलतिर" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "स्क्रिनको तलपट्टिको ycor" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "चौडाइ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "क्यानभासको चौडाइ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "स्क्रिनको दायाँपट्टिको xcor" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "स्क्रिनको माथिपट्टिको ycor" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "उचाइ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "क्यानभास हाइट" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "शीर्षक x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "शीर्षक y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "बायाँ x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "माथि y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "दायाँ x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "खण्डहरु बढाऊ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "तल y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "पुरै पर्दा" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "प्रस्तुति १x१" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "फाइल भेटिएन" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "प्रस्तुति 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "देखाउ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "प्रस्तुति १x२" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "पाठ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "प्रस्तुति 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "जुनसुकै" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "युक्तिसंगत greater-than सञ्चालनकर्ता" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "कछुवालाई घडिको उल्टो दिशामा घुमाउँछ (कोण ढिग्रीमा)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "कालो" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "वर्गमूल निकाल्छ" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" +"टर्टलको तत्काल y- निर्देशांक मान बचाइराख्छ(संख्या खण्डको सट्टामा प्रयोग गर्न सकिन्छ)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "माउस x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "माउस y" #: pysamples/grecord.py:215 msgid "stop" msgstr "रोक" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "खेल" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "सेभ गर" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "यूमोड" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "यूमोड लिऊ" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "प्रयोग हो" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "विकल्प नभएमा कार्य:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "फाइल भेटिएन" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "कनफिगरेसन निर्देशिकामा लेख्न मिल्दैन: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "नयाँ" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "खोल" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "सेभ गर" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "नाममा सेभ गर" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "बन्द गर्नुहोस्" - -#: turtleblocks.py:363 -msgid "File" -msgstr "फाइल" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "निर्देशांक रिस्केल गर" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "खण्ड आकार रिसेट गर" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "खण्ड लुकाऊ/देखाऊ" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "औजार" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "त्रुटि सच्याउनुहोस्" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "टर्टल" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "भन्दा ठूलो" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "तिमीसगँ बचत नगरिएको काम छ। बन्द गर्नुपूर्व बचत गर्न चाहनुहुन्छ?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "मद्दत" #: turtleblocks.py:448 msgid "Save project?" msgstr "परियोजना सेभ गर?" -#~ msgid "Turtle Art Mini" -#~ msgstr "टर्टल आर्ट मिनि" - -#~ msgid "Turtle Confusion" -#~ msgstr "टर्टल स्तब्घ" - -#~ msgid "Select a challenge" -#~ msgstr "एउटा मुकाब्ला छान" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "मेक्सिकन पेसोको प्यालेट" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "कोल्म्बियन पेसोको प्यालेट" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "रूआण्डान फ्रेकंको प्यालेट" - -#~ msgid "Palette of US dollars" -#~ msgstr "अमेरिकी डलरको प्यालेट" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "अस्ट्रेलियन डलरको प्यालेट" - -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "उरुगुएन पेसोको प्यालेट" - -#~ msgid "TurtleBots" -#~ msgstr "टर्टलबोट्स" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "आदेश गर्ने कछुवा छान्छ" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "LEDको प्रकाश-तीव्रता ० देखि २५५ भित्र समायोजित गर।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "दायाँ x" -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "ऐम्बीअन्ट प्रकाश मात्रा ० देखि १०२३ भित्रको अंकको रुपमा फिर्ता गर्छ" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "कछुवाले लेख्ने अक्षरको रङ निर्धारण गर्छ" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "बटन थिच्दा १ फर्काउँछ अथवा ० फर्काउँछ।" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "प्रकाश सेंसरद्वारा पता लगाएको प्रकाश मात्रा" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "ऐम्बीअन्ट प्रकाश मात्रा ० देखि १०२३ भित्रको अंकको रुपमा फिर्ता गर्छ" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "पल्गइन इन्टल गर्न सकिएन।" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "ऐम्बीअन्ट तापमान ० देखि २५५ भित्रको अंकको रुपमा फिर्ता गर्छ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "कुञ्जीपाटी" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "सेंसर अगाडि देखि वस्तु सम्मको दुरी ० देखि २५५ भित्रको अंकको रुपमा फिर्ता " -#~ "गर्छ" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "वृत्तखण्ड" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "सेंसर झुकावमा निर्भर भई ० वा १ फिर्ता गर्छ" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "त्रिज्या" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "सेंसरले चुंबकीय क्षेत्र पता लगाउँदा १ फिर्ता गर्छ, अथवा ० फिर्ता गर्छ।" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "पोलार निर्देशांक" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "० देखि १ मा बदल्नछ, आवृत्ति कंपनमा निर्भर हुन्छ" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "छाया राख" -#~ msgid "LED" -#~ msgstr "LED" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "युक्तिसंगत AND सञ्चालनकर्ता" -#~ msgid "button" -#~ msgstr "बटन" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "परियोजना अप्लोड गर्न http://turtleartsite.sugarlabs.org मा अकाउन्ट हुनुपर्छ" -#~ msgid "grayscale" -#~ msgstr "ग्रेस्केल" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "चलाउनुहोस्" -#~ msgid "ambient light" -#~ msgstr "अ्यामबीअन्ट प्रकाश" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "हिप देखाउ" -#~ msgid "temperature" -#~ msgstr "तापमान" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "टर्टलको शिर्षक निर्धारण गर्छ (0 स्क्रिनको माथिल्लो भागमा छ।)" -#~ msgid "distance" -#~ msgstr "दुरी" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "माइक्रोफोन आयातको भोल्युम" -#~ msgid "tilt" -#~ msgstr "झुकाव" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "शीर्षक:" -#~ msgid "magnetic induction" -#~ msgstr "चुंबकीय प्रेरण" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "मिडिया वस्तुहरुको प्यालेट" -#~ msgid "vibration" -#~ msgstr "कंपन" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "रद्दि टोकरीमा भएका सबै सामग्री फिर्ता गर" -#~ msgid "Butia Robot" -#~ msgstr "बुटिया रोबट" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "चल खण्डहरुको प्यालेट" -#~ msgid "battery charge Butia" -#~ msgstr "बुटियाको बैटरी चार्ज" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "गणित सञ्चालनमा संख्यात्मक आगतको प्रयोग" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "ब्याटरी चार्ज ० देखि २५५ सम्म अंकको रुपमा फिर्ता गर्छ" +#: 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 "अपलोड" -#~ msgid "speed Butia" -#~ msgstr "बुटियाको गति बढाऊ" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "सर्भर" -#~ msgid "forward Butia" -#~ msgstr "बुटियालाई अगाडि लग" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "प्रस्तुति 2x2" -#~ msgid "move the Butia robot forward" -#~ msgstr "बुटिया रोबटलाई अगाडि सार" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "चल 1 (संख्यात्मक मान)" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "बुटिया रोबटलाई पूर्वनिर्धारित दुरीमा अगाडि सार" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "छिमेकी" -#~ msgid "left Butia" -#~ msgstr "बायाँ बुटिया" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "दुईवटा अल्फान्युमेरिक आगतहरु जोड्छ" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "बुटिया रोबटलाई दायाँ मोड़" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "बराबर" -#~ msgid "backward Butia" -#~ msgstr "बुटियालाई पछाडि सार" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "नत्र" -#~ msgid "move the Butia robot backward" -#~ msgstr "बुटिया रोबटलाई पछाडि सार" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "मनपर्दैन" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "बुटिया रोबटलाई पूर्वनिर्धारित दुरीमा पछाडि सार" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "तिमीसगँ बचत नगरिएको काम छ। बन्द गर्नुपूर्व बचत गर्न चाहनुहुन्छ?" -#~ msgid "right Butia" -#~ msgstr "दायाँ बुटिया" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "लुकेका खण्डलाई पूर्वावस्थामा ल्याउँछ" -#~ msgid "turn the Butia robot at right" -#~ msgstr "बुटिया रोबटलाई दायाँ मोड़" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "बन्द गर भिडियो आथवा आवाज" -#~ msgid "turn Butia" -#~ msgstr "बुटियालाई मोड़" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "कछुवालाई सारेमा कोर्दैन" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "बुटिया रोबटलाई x डिग्री मोड़" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "पप्" -#~ msgid "stop Butia" -#~ msgstr "बुटियालाई रोक" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "कलमको आकार" -#~ msgid "stop the Butia robot" -#~ msgstr "बुटिया रोबटलाई रोक" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "कछुवाको शेल" -#~ msgid "Butia" -#~ msgstr "बुटिया" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "साइनतरङ्गलाई आवृत्ति, कोणाङ्क र अन्तरालमा ( सेकेन्डमा) देखाउँछ" -#, fuzzy -#~ msgid "Error on initialization of the camera" -#~ msgstr "क्यामेराको आरंभीकरणमा त्रुटि" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "FollowMe" -#~ msgstr "मलाई अनुगमन गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "बोल" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "जडान भएको NXT ब्रिकलाई खोज।" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "RFID यन्त्रबाट मान पढ" -#~ msgid "calibration" -#~ msgstr "व्यासमापन" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "टर्टल चाप को वरिपरी सार्छ" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "व्यक्तिगत व्यासमापन भण्डार गर" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "यूमोड लिऊ" -#~ msgid "return a personalized calibration" -#~ msgstr "व्यक्तिगत व्यासमापन फिर्ता गर" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "युक्तिसंगत equal-to सञ्चालनकर्ता" -#~ msgid "follow" -#~ msgstr "अनुगमन" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "कलमका रङहरुको प्यालेट" -#~ msgid "follow a color or calibration" -#~ msgstr "रंग वा व्यासमापन अनुकरण गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "रोक भिडियो आथवा आवाज" -#~ msgid "minimum pixels" -#~ msgstr "न्युनत्तम पिक्सेल" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "संख्यात्मक मान चल १ मा भण्डारण गर्छ" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "परिणाम हेर्न न्यूनतम संख्या सेट गर" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "संख्यात्मक मान चल २ मा भण्डारण गर्छ" -#~ msgid "threshold" -#~ msgstr "सीमा" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "टर्टलमा अनुकूलन 'shell' राख" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "RGB रंगको लागि सीमा रेखा सेट गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "बटन तल" -#~ msgid "x position" -#~ msgstr "x स्थान" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "टर्टललाई पछाडि सार्छ" -#~ msgid "return x position" -#~ msgstr "x स्थान फिर्ता गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "स्क्रिनको माथिपट्टिको ycor" -#~ msgid "y position" -#~ msgstr "y स्थान" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "खण्डहरु देखाउ" -#~ msgid "return y position" -#~ msgstr "y स्थान फिर्ता गर" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "खेल" -#~ msgid "pixels" -#~ msgstr "पिक्सेलहरु" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "सेभ गर" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "सबैभन्दा ठुलो बल्बको पिक्सेलहरुको सङ्ख्या फर्काउँछ" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "रंगहरु" -#~ msgid "empty calibration" -#~ msgstr "खाली व्यासमापन" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "टर्टलले बनाएको रेखा को साइज सेट गर्छ" -#~ msgid "error in string conversion" -#~ msgstr "स्ट्रिंग सम्परिवर्तनमा त्रुटि छ" +#: turtleblocks.py:355 +msgid "Open" +msgstr "खोल" -#~ msgid "SumBot" -#~ msgstr "समबोट्" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "पृष्ठविन्यास" -#~ msgid "speed SumBot" -#~ msgstr "सम्बोट्को गति बढाऊ" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "सम्बोट्लाई गति देऊ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"प्रोगरामेबल खण्ड: उन्नत बहु-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., sqrt(x*x + y*y)" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "चाल आदेशहरुको लागि पूर्वनिर्धारित गति सेट गर।" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "यदि" -#~ msgid "forward SumBot" -#~ msgstr "सम्बोट्लाई अगाडि लग" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "टर्टललाई xcor, ycor को ठाँउमा सार्छ ; (0, 0) स्क्रिनको बिच हो." -#~ msgid "move SumBot forward" -#~ msgstr "सम्बोट्लाई अगाडि सार" +# http://ne.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%87%E0%A4%A5%E0%A4%A8_%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A5%8B%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A4%BE%E0%A4%AE%E0%A4%BF%E0%A4%99%E0%A5%8D%E0%A4%97_%E0%A4%AD%E0%A4%BE%E0%A4%B7%E0%A4%BE +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "पाइथन" -#~ msgid "backward SumBot" -#~ msgstr "सम्बोट्लाई पछाडि लग" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "रोक" -#~ msgid "move SumBot backward" -#~ msgstr "सम्बोट्लाई पछाडि सार" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "कार्य २" -#~ msgid "stop SumBot" -#~ msgstr "सम्बोट्लाई रोक" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "कार्य १" -#~ msgid "stop the SumBot" -#~ msgstr "सम्बोट्लाई रोक" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "अन्त्यमा भर" -#~ msgid "left SumBot" -#~ msgstr "सम्बोट्लाई बायाँ मोड़" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "प्रतिलिपी बनाऊ" -#~ msgid "turn left the SumBot" -#~ msgstr "सम्बोट्लाई बायाँ मोड़" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "प्रतिलिपी सार" -#~ msgid "right SumBot" -#~ msgstr "सम्बोट्लाई दायाँ मोड़" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "निर्गत गरेन" -#~ msgid "turn right the SumBot" -#~ msgstr "सम्बोट्लाई दायाँ मोड़" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "क्रियाकलापहरु" -#~ msgid "angle to center" -#~ msgstr "केंद्र तर्फ कोण गर" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "संजालमा अप्लोड गर" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "डोजोको केंद्र तर्फ कोण मिलाऊ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "खाली थाक" -#~ msgid "angle to Enemy" -#~ msgstr "शत्रु तर्फ कोण राख" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "FILO (first-in last-out heap)को मान पप गर्छ" -#~ msgid "get the angle to the Enemy" -#~ msgstr "शत्रु तर्फ कोण मिलाऊ" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "सफा गर्नुहोस्" -#~ msgid "x coor. SumBot" -#~ msgstr "सम्बोट्को x निर्देशांक" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "प्रस्तुत गर्ने टेम्प्लेटहरूको प्यालेट" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "सम्बोट्को x निर्देशांक लिऊ ।" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "कोण" -#~ msgid "y coor. SumBot" -#~ msgstr "सम्बोट्को y निर्देशांक" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "परिचय" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "सम्बोट्को य निर्देशांक लिऊ ।" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "सेभ गर/सुरु गर" -#~ msgid "x coor. Enemy" -#~ msgstr "सम्बोट्को शत्रुको x निर्देशांक" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "माथि y" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "शत्रुको x निर्देशांक लिऊ ।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "श्रव्य" -#~ msgid "y coor. Enemy" -#~ msgstr "सम्बोट्को शत्रुको y निर्देशांक" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "औजार" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "शत्रुको ञ निर्देशांक लिऊ ।" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "द्वार" -#~ msgid "rotation SumBot" -#~ msgstr "सम्बोट्को परिक्रमण" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "बायाँ" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "सम्बोट्को परिक्रमण लिऊ ।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "टिप्पणी" -#~ msgid "rotation Enemy" -#~ msgstr "शत्रुको परिक्रमण" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "माथिको संख्यात्मक आगतले तलको संख्यात्मक आगतलाई घटाउछ।" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "शत्रुको परिक्रमण लिऊ ।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "मिडिया रोक" -#~ msgid "distance to center" -#~ msgstr "केंद्र सम्मको दुरी" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "कुञ्जीपाटीको लाई क्वेरी आगत (परिणामहरु कुञ्जीपाटीको बल्कमा छ)" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "डोजोको केंद्र सम्मको दुरी लिऊ ।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "कार्टेसन" -#~ msgid "distance to Enemy" -#~ msgstr "शत्रुसम्मको दुरी" +#: 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 "भोल्टेज" -#~ msgid "get the distance to the Enemy" -#~ msgstr "शत्रुसम्मको दुरी लिऊ ।" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "स्क्रिन खाली गर्छ र टर्टललाई रिसेट गर्छ" -#~ msgid "update information" -#~ msgstr "सुचना अद्यावधिक गर" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "कच्चा माइक्रोफोनको आगत संकेत" -#~ msgid "update information from the server" -#~ msgstr "सर्भरबाट सुचना अद्यावधिक गर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "टर्टलले \"देखेको\" रंग फिर्ता गर्छ" -#~ msgid "Palette of physics blocks" -#~ msgstr "भौतिकविज्ञान खण्डहरुको प्यालेट" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "कार्य १ थाक स्तुति गर्छ" -#~ msgid "start polygon" -#~ msgstr "बहुभुज सुरु गर" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "टर्टलको आदेशहरूको प्यालेट" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "हालको टर्टलको xy स्थानमा आधारित नयाँ बहुभुज परिभाषा गर्न सुरु गर।" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "लुप (हरु) सधैँका लागी" -#~ msgid "add point" -#~ msgstr "बिन्दु थप" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "पङ्क्तिबद्धरुपमा देखाऊ" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "हालको टर्टलको xy स्थानमा आधारित हालको बहुभुजमा नयाँ बिन्दु थप ।" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "टर्टल आर्ट" -#~ msgid "end polygon" -#~ msgstr "बहुभुज अन्त गर" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "के तिमी %s रिइन्टल गर्न चाहन्छौ?" -#~ msgid "Define a new polygon." -#~ msgstr "नयाँ बहुभुज परिभाषा गर।" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "परियोजना सुरु गर" -#~ msgid "end filled polygon" -#~ msgstr "भरेको बहुभुज अन्त गर" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "परियोजना" -#~ msgid "Not a simple polygon" -#~ msgstr "सामान्य बहुभुज हैन" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "त्रुटि सच्याउनुहोस्" -#~ msgid "Define a new filled polygon." -#~ msgstr "नयाँ भरेको बहुभुज परिभाषा गर।" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "होबर सहयोग बन्द गर" -#~ msgid "triangle" -#~ msgstr "त्रिभुज" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "base" -#~ msgstr "सतह" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "पासवर्ड" -#~ msgid "Add a triangle object to the project." -#~ msgstr "परियोजनामा त्रिभुज वस्तु थप ।" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "ठाडो गरि खाली ठाउँ" -#~ msgid "circle" -#~ msgstr "वृत्त" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "कृपया पल्गइन चलाउन टर्टल आर्ट पुनरारम्भ गर।" -#~ msgid "Add a circle object to the project." -#~ msgstr "परियोजनामा वृत्त वस्तु थप ।" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "भरिएको बहुभुज सुरु गर्छ ( पहिलो भरिएको खण्डसँग प्रयोग गरिने)" -#~ msgid "rectangle" -#~ msgstr "समकोण आयत" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "बाँड" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "परियोजनामा समकोण आयत वस्तु थप ।" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "...भन्दा कम" -#~ msgid "reset" -#~ msgstr "पुनराम्भ" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "बर्गको रुट" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "परियोजना पुनराम्भ गर; वस्तु सुचि सफा गर।" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "निर्देशांक रिस्केल गर" -#~ msgid "motor" -#~ msgstr "मोटर" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "खण्डहरु देखाऊ" -#~ msgid "torque" -#~ msgstr "चक्रिय गति" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "बन्द गर्नुहोस्" -#~ msgid "speed" -#~ msgstr "गति" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "दायाँ" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "मोटरको चक्रिय गति र गति ०(बन्द) देखि सकारात्मक अंकहरु सम्म फैलिएको हुन्छ; " -#~ "मोटर हालै मात्र बनाएको वस्तुमा राखिन्छ।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "सुगर पंजिका वर्णन फाँट" -#~ msgid "pin" -#~ msgstr "पिन" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "खरानी रङ्ग रख।" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "वस्तुलाई नखस्ने गरि त्यसलाई अड्याऊ।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "प्रस्तुति बुलेटेड सूची" -#~ msgid "joint" -#~ msgstr "संयुक्त" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "अन्तराल" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "दुईवटा वस्तुहरु साथमा जोड(हालैमात्र बनाएको वस्तु र बिन्दु x, yको वस्तु)" +#: turtleblocks.py:354 +msgid "New" +msgstr "नयाँ" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "भौतिकविज्ञान क्रियाकलापको रुपमा परियोजनालाई पंजिकामा सेभ गर।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "तपाँइको सङ्केतमा टिप्पणी राख्छ" -#, fuzzy -#~ msgid "Add a gear object to the project." -#~ msgstr "परियोजनामा वृत्त वस्तु थप ।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "पिक्सेल पढ" -#~ msgid "density" -#~ msgstr "घनत्व" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "स्केल" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "वस्तुहरुको लागि घनत्व गुण सेट गर(घनत्व कुनै पनि सकारात्मक अंक हुन सक्छ)।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "तलतिर" -#~ msgid "friction" -#~ msgstr "घर्षण" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "प्याजी" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "वस्तुहरुको लागि घर्षण गुण सेट गर( ० देखि १ सम्घम मान, जहाँ ० ले घर्षणलाई " -#~ "बन्द गर्छ र १ मज़बूत घर्षण हो)।" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "निर्देशांक तल पुन: स्केल गर" -#~ msgid "bounciness" -#~ msgstr "ठोक्किएर फर्कने गुण" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "खोल्नलाई क्लिक गर" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "वस्तुहरुको लागि ठोक्किएर फर्कने गुण सेट गर( ० देखि १ सम्घम मान, जहाँ ० " -#~ "भन्नाले शून्य उछाल र १ घेरै उत्फुल्ल हो)।" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "माइक्रोफोन आगत पिच" -#~ msgid "dynamic" -#~ msgstr "गतिशील शक्ति" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "कन्फिगरेसन" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "यदि गतिशील शक्ति ‍ = १, वस्तु चल्न सक्छ; यदि गतिशील शक्ति ‍ = ०, त्यो " -#~ "स्थानमा स्थापित हुन्छ।" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "वर्णन:" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "WeDo खण्डहरुको प्यालेट" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "पंजिका" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "सेन्सरको आउट्पुट झुकाऊ:(-१==नझुकाऊ,०==अगाडि झुकाऊ,३==पछाडि झुकाऊ,१==बायाँ " -#~ "झुकाऊ,२‍‍‍‍==दायाँ झुकाऊ)" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "खाली डस्टबीन" -#~ msgid "distance sensor output" -#~ msgstr "सेन्सरको आउट्पुटको दुरी" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "चित्र बनाउन कछुवालाई हल्लाऊ" -#~ msgid "Motor A" -#~ msgstr "मोटर A" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "सुरु गर..." -#~ msgid "returns the current value of Motor A" -#~ msgstr "मोटर Aको हालको मान फर्काउँछ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "सुगर जर्नल श्रव्य वस्तु" -#~ msgid "Motor B" -#~ msgstr "मोटर B" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "टर्टल रोक" -#~ msgid "returns the current value of Motor B" -#~ msgstr "मोटर Bको हालको मान फर्काउँछ" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "टर्टल" -#~ msgid "set the value for Motor A" -#~ msgstr "मोटर Aको मान सेट गर" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "खण्डहरुको प्यालेटको अभिमुखीकरण परिवर्तन गर्छ" -#~ msgid "set the value for Motor B" -#~ msgstr "मोटर Bको मान सेट गर" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "स्टोर गर्नुहोस्" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "मोटरहरुको LEGO NXT खण्डहरुको प्यालेट" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "खण्डहरु लुकाऊ" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "सेन्सरहरुको LEGO NXT खण्डहरुको प्यालेट" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "पाइथन खण्ड सुरु गर" -#~ msgid "touch" -#~ msgstr "टच" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "प्लस्" -#~ msgid "ultrasonic" -#~ msgstr "अल्त्रासोनिक" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "अथवा" -#~ msgid "light" -#~ msgstr "उज्यालो" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "प्रस्तुति टेम्पलेट: बुलेटका सूची" -#, fuzzy -#~ msgid "grey" -#~ msgstr "खरानी रङ" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "बल्क बिस्तार गर्न प्रयोग भएको सञ्चालनकर्ताको पहिचान गर" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "कृपया ब्रिकसगँको जडान जाच।" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "खण्डहरु घटाऊ" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "शक्तिको मान -१२७ देखि १२७ भित्र हुनुपर्छ।" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "कछुवाले कोरेको अक्षरको आकार निश्चित गर्छ" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "त्रुटि घट्यो: सबै जडानहरु जाच र फेरि जडान गर्न कोसिस गर।" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "र्टटलको हालको शीर्षक मान राख्छ (संख्या खण्डको सट्टामा प्रयोग गर्न सकिन्छ)" -#~ msgid "NXT not found" -#~ msgstr "NXT भटिएन" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "चित्र" -#~ msgid "refresh NXT" -#~ msgstr "NXTलाई ताजा पार" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "न्युन (top) र अधिक्तम(bottom) मानहरु बिच अनियमित ढन्गले सङ्ख्या फिर्ता गर्छ" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "जडान भएको NXT ब्रिकलाई खोज।" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "पेनको हाल रंग राख्छ (अंक ब्लको सट्टामा पनि प्रयोग हुन्छ)" -#~ msgid "play tone" -#~ msgstr "टोन सुरु गर" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "प्यालेट देखाउ" -#~ msgid "frequency" -#~ msgstr "आवृत्ति" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "सुगर जर्नलमा तस्विर सेभ गर्छ" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "समयको लागि आवृतिमा आवाज सुरु गर।" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "स्नयापसट सेभ गर" -#~ msgid "port" -#~ msgstr "पोर्ट" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "सुरु गर" -#~ msgid "power" -#~ msgstr "शक्ति" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "थाक खाली भए True फिर्ता र्गर्छ" -#~ msgid "rotations" -#~ msgstr "आवर्तनहरु" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "टर्टललाई अगाडि सार्छ" -#~ msgid "turn a motor" -#~ msgstr "मोटरलाई घूमाऊ" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "अगाडि" -#, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "दुईवटा मोटरहरु सनकालिन गर" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "मेरो बाकस" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "PORT B र PORT C मा जडान भएको दुईवटा मोटरहरु संकालन गर" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "खाता ID" -#~ msgid "PORT A" -#~ msgstr "PORT A" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "खण्डहरु अंश छान" -#~ msgid "PORT A of the brick" -#~ msgstr "ब्रिकको PORT A" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "पछाडि" -#~ msgid "PORT B" -#~ msgstr "PORT B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "मिडियाको स्केल निर्धारित गर्छ" -#~ msgid "PORT B of the brick" -#~ msgstr "ब्रिकको PORT B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "हालको स्केल मान राख्छ" -#~ msgid "PORT C" -#~ msgstr "PORT C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "प्रस्तुति १x१" -#~ msgid "PORT C of the brick" -#~ msgstr "ब्रिकको PORT C" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "प्रस्तुति १x२" -#~ msgid "start motor" -#~ msgstr "मोटर सुरु गर" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "नामाकरण गर्न मिल्ने कार्य थाँकको माथि" -#~ msgid "Run a motor forever." -#~ msgstr "मोटरलाई सधैको लागि चलाऊ।" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "संख्यात्मक मानलाई नाम गरिएको चलमा भण्डारन गर्छ" -#~ msgid "brake motor" -#~ msgstr "मोटरलाई ब्रेक लगाऊ" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "युक्तिसंगत वा सञ्चालनकर्ता" -#~ msgid "Stop a specified motor." -#~ msgstr "उल्लेखित मोटर बन्द गर।" +#: 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 "माइक्रोफोनको आयात भोल्युम" -#~ msgid "reset motor" -#~ msgstr "मोटरलाई रिसेट गर" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "तोकिए अनुसार लुप गर्छ" -#~ msgid "Reset the motor counter." -#~ msgstr "मोटर काउन्टर रिसेट गर" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "सेभ गर..." -#~ msgid "motor position" -#~ msgstr "मोटरको स्थान" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "कार्य २ थाक स्तुति गर्छ" -#~ msgid "Get the motor position." -#~ msgstr "मोटरको स्थान प्राप्त गर।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "xy राख" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "शीर्षक y" -#~ msgid "PORT 1 of the brick" -#~ msgstr "ब्रिकको PORT १" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "शीर्षक x" -#~ msgid "read" -#~ msgstr "पढ" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "स्क्रिन भर" -#~ msgid "sensor" -#~ msgstr "संवेदक" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "नाममा सेभ गर" -#~ msgid "Read sensor output." -#~ msgstr "संवेदकको उपज पढ।" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "xy राख" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "रद्दिटोकरी" -#~ msgid "PORT 2 of the brick" -#~ msgstr "ब्रिकको PORT २" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "पोलार" -#~ msgid "light sensor" -#~ msgstr "प्रकाश संवेदक" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "दोहोर्‍याउ" -#~ msgid "PORT 3" -#~ msgstr "PORT 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "हालको भिडियो वा आवाज समाप्त हुन कुर्नुहोस्" -#~ msgid "PORT 3 of the brick" -#~ msgstr "ब्रिकको PORT ३" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "तस्विरको रुपमा सेभ गर" -#~ msgid "touch sensor" -#~ msgstr "टच संवेदक" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "सम्पादन गर" -#~ msgid "distance sensor" -#~ msgstr "दुरी संवेदक" +#: 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 "माइक्रोफोनको आगत प्रतिरोध" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "कार्य २ थाकको माथि" -#~ msgid "PORT 4 of the brick" -#~ msgstr "ब्रिकको PORT ४" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "माथील्लो संख्यात्मक आगतलाई (न्यूमिरेतर) तलको संख्यात्मक आगतले भाग गर (डिनोमिरेतर)" -#~ msgid "sound sensor" -#~ msgstr "ध्वनिको सेन्सर" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "अधिक्तम" -#~ msgid "color sensor" -#~ msgstr "रंगको संवेदक" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "मानलाई पर्दाको तल स्थिति खण्डमा छाप्छ" -#~ msgid "set light" -#~ msgstr "प्रकाश सेट गर" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "भर्न सुरु गर" -#~ msgid "Set color sensor light." -#~ msgstr "अनुरुप पढ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "क्वेरी-कुञ्जीपाटी खण्डको परिणामहरु ASCII को रुपमा राख्छ" -#~ msgid "HIGH" -#~ msgstr "HIGH" +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ne.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "धकाल" -#~ msgid "LOW" -#~ msgstr "LOW" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "प्रोगरामेबल खण्ड: उन्नत बहु-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., sin(x+y+z)" -#~ msgid "INPUT" -#~ msgstr "INPUT" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "सबै पूर्वावस्थामा ल्याउ" -#~ msgid "OUTPUT" -#~ msgstr "OUTPUT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "हेलो" -#~ msgid "PWM" -#~ msgstr "PWM" +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "टर्टल खण्डहरू" -#~ msgid "SERVO" -#~ msgstr "SERVO" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ERROR: अर्दिनो र पोर्टको सङ्ख्या जाच।" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ERROR: मान ० देखि २५५ सम्मको अंक हुनुपर्छ।" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERROR: मान कि HIGH अथवा LOW हुनुपर्छ।" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ERROR: विधि कि INPUT, OUTPUT, PWM अथवा SERVO हुनुपर्छ।" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "pin mode" -#~ msgstr "पिन विधि" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#~ msgid "mode" -#~ msgstr "विधि" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "पिन कार्य(INPUT, OUTPUT, PWM, SERVO) छान।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "" -#~ msgid "analog write" -#~ msgstr "अनुरुप लेख" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "" -#~ msgid "Write analog value in specified port." -#~ msgstr "उल्लेखित पोर्टमा अनुरुप मान लेख।" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "" -#~ msgid "analog read" -#~ msgstr "अनुरुप पढ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "" -#~ 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 "" -#~ "अनुरुप पोर्टबाट मान पढ। मान ० देखि १०२३ सम्मको हुन सक्छ। वोल्टेज निर्धारित " -#~ "गर्न Vref प्रयोग गर। USBको लागि, volt = लगभग (((read)*5)/1024)" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#~ msgid "digital write" -#~ msgstr "डिजिटल लेख" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#~ msgid "Write digital value to specified port." -#~ msgstr "उल्लेखित पोर्टमा डिजिटल मान लेख।" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#~ msgid "digital read" -#~ msgstr "डिजिटल पढ" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#~ msgid "Read value from digital port." -#~ msgstr "डिजिटल पोर्टबाट मान पढ।" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "डिजिटल पोर्टको लागि HIGH मान सेट गर।" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "डिजिटल आगतको लागि Arduino समनुरूप गर" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "सर्वो चलाउन Arduino समनुरूप गर।" +#: turtleblocks.py:407 +msgid "About..." +msgstr "" -#~ msgid "Set LOW value for digital port." -#~ msgstr "डिजिटल पोर्टको लागि LOW मान सेट गर।" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "ऐम्बीअन्ट प्रकाश मात्रा ० देखि १०२३ भित्रको अंकको रुपमा फिर्ता गर्छ" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "डिजिटल उत्पादको लागि Arduino समनुरूप गर" +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "ऐम्बीअन्ट प्रकाश मात्रा ० देखि १०२३ भित्रको अंकको रुपमा फिर्ता गर्छ" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "PWM(pulse-width modulation)को लागि समनुरूप गर।" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "ऐम्बीअन्ट तापमान ० देखि २५५ भित्रको अंकको रुपमा फिर्ता गर्छ" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "WeDo खण्डहरुको प्यालेट" +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" +#~ msgstr "सेंसर अगाडि देखि वस्तु सम्मको दुरी ० देखि २५५ भित्रको अंकको रुपमा फिर्ता गर्छ" #, fuzzy -#~ msgid "samples" -#~ msgstr "नमूनाहरु" +#~ msgid "grey" +#~ msgstr "खरानी रङ" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "बुटिया मोटरको गति ० देखि १०२३ सम्म मानको रुपमा सेट गर, एउटा बहसद्वारा पास " -#~ "गरेपछि" +#~ "बुटिया मोटरको गति ० देखि १०२३ सम्म मानको रुपमा सेट गर, एउटा बहसद्वारा पास गरेपछि" #, fuzzy #~ msgid "turn the Butia robot to the left" @@ -2814,10 +3746,9 @@ msgstr "परियोजना सेभ गर?" #, fuzzy #~ msgid "" -#~ "returns the object gray level encountered him as a number between 0 and 1023" -#~ msgstr "" -#~ "० देखि १०२३ बीचको अंकको रुपमा उसले सामना गरेको वस्तु खैरो मात्रा फिर्ता " -#~ "गर्छ।" +#~ "returns the object gray level encountered him as a number between 0 and " +#~ "1023" +#~ msgstr "० देखि १०२३ बीचको अंकको रुपमा उसले सामना गरेको वस्तु खैरो मात्रा फिर्ता गर्छ।" #~ msgid "activity count" #~ msgstr "गतिविधी गणना गर्नुहोस्" @@ -2921,9 +3852,9 @@ msgstr "परियोजना सेभ गर?" #~ msgid "restore last" #~ msgstr "पूर्वावस्थामा ल्याउ" -#~ msgid "a programmable block: used to add advanced math equations, e.g., sin(x)" -#~ msgstr "" -#~ "प्रोगरामेबल ढिक्का: उन्नत गणित सामीकरण थप्न प्रयोग गरिने, जस्तै., sin(x)" +#~ msgid "" +#~ "a programmable block: used to add advanced math equations, e.g., sin(x)" +#~ msgstr "प्रोगरामेबल ढिक्का: उन्नत गणित सामीकरण थप्न प्रयोग गरिने, जस्तै., sin(x)" #~ msgid "blocks" #~ msgstr "ढिक्काहरु" @@ -2935,8 +3866,7 @@ msgstr "परियोजना सेभ गर?" #~ msgstr "सेन्सर आगत प्रतिरोध" #~ msgid "holds current text color (can be used in place of a number block)" -#~ msgstr "" -#~ "अक्षरको तत्कालिन रङलाई होल्ड गर्छ (सङ्ख्या ब्लकको सट्टा प्रयोग गर्न सकिन्छ)" +#~ msgstr "अक्षरको तत्कालिन रङलाई होल्ड गर्छ (सङ्ख्या ब्लकको सट्टा प्रयोग गर्न सकिन्छ)" #~ msgid "picture top" #~ msgstr "तस्विर माथी" diff --git a/po/nl.po b/po/nl.po index a0b2ce6..7cc3db0 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,17 +1,58 @@ +# #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-15 00:34-0500\n" +"PO-Revision-Date: 2013-02-21 20:10+0200\n" +"Last-Translator: whe \n" +"Language-Team: LANGUAGE \n" +"Language: nl\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" +"#-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-15 00:34-0500\n" +"PO-Revision-Date: 2013-02-21 20:10+0200\n" +"Last-Translator: whe \n" +"Language-Team: LANGUAGE \n" +"Language: nl\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" +"#-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -26,1129 +67,2155 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "SchildpadBlokken" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "" -"Een Logo-geïnspireerd schildpad die kleurrijke plaatjes tekent met samenklik " -"visueel programmeerblokken" +msgid "turtleart-extras (master)" +msgstr "schildpadkunst-extra's (hoofd)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palet van schildpadcommando's" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "Schildpad Blokken" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "vooruit" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Schildpad Kunst" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "beweeg schildpad vooruit" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "Schildpad Kunst Mini" + +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "Schildpad Verwarring" + +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "Kies een uitdaging" + +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "Amazoneschildpad" + +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "Palet van Mexicaanse pesos" + +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "Palet van Colombiaanse pesos" + +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "Palet van Rwandaanse franken" + +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "Palet van US dollars" + +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "Palet van Australische dollars" + +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "Palet van Paraguayse Guaranies" + +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Palet van Peruviaanse Nuevo Soles" + +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "Paler van Uruguayse Pesos" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "TurtleBots" + +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "TurtleBlokken met Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" + +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "FOUT: De snelheid moet een waarde zijn tussen 0 en 1023" + +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "FOUT: De pin moet zijn tussen 1 en 8" + +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "FOUT: De waarde moet zijn 0 of 1, LAAG of HOOG" + +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "FOUT: De modus moet zijn INPUT of OUTPUT." + +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "Draai LED aan en uit: 0 is uit; 1 is aan" + +#: taextras.py:79 +msgid "returns the gray level" +msgstr "geeft het grijsniveau" + +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "geeft 1 terug als knop is ingedrukt en anders 0" + +#: taextras.py:81 +msgid "returns the light level" +msgstr "geeft het grijsniveau" + +#: taextras.py:82 +msgid "returns the temperature" +msgstr "geeft de temperatuur terug" + +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "geeft de afstand tot het voorwerp voor de sensor" + +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "geeft een 1 als de sensors een magnetisch veld waarneemt, anders 0" + +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "geeft de waarde van de weerstand" + +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "geeft de waarde van de spanning" + +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" + +#: taextras.py:88 +msgid "LED" +msgstr "LED" + +#: taextras.py:89 +msgid "button" +msgstr "knop" + +#: taextras.py:90 taextras.py:358 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "grijs" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "terug" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "licht" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "beweegt schildpad achteruit" +#: taextras.py:92 +msgid "temperature" +msgstr "temperatuur" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "wissen" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "afstand" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "schoont het scherm en herstelt het schildpad" +#: taextras.py:94 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 "weerstand" + +#: taextras.py:95 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 "spanning" -#: TurtleArt/tabasics.py:162 +#: taextras.py:96 +msgid "Butia Robot" +msgstr "Butia Robot" + +#: taextras.py:97 +msgid "refresh Butia" +msgstr "ververs Butia" + +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "ververs de status vam de Butia palet en blokken" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "accu lading Butia" + +#: taextras.py:101 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "geeft de batterijlading als een getal tussen 0 en 255" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "snelheid Butia" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "stel de snelheid van de Butiamotoren in" + +#: taextras.py:105 +msgid "move Butia" +msgstr "beweeg Butia" + +#: taextras.py:106 TurtleArt/tabasics.py:162 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 msgid "left" msgstr "links" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "draait schildpad tegen de klok in (hoek in graden)" - -#: TurtleArt/tabasics.py:174 +#: taextras.py:107 TurtleArt/tabasics.py:174 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 msgid "right" msgstr "rechts" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "draait schildpad met de klok mee (hoek in graden)" - -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "boog" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "hoek" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "straal" - -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "beweegt schildpad langs een boog" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "zet xy" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "beweegt de Butia motors met de gekozen snelheid" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "stop Butia" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "stop de Butia robot" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "vooruit Butia" + +#: taextras.py:113 +msgid "move the Butia robot forward" +msgstr "beweeg de Butia robot vooruit" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "links Butia" + +#: taextras.py:116 +msgid "turn the Butia robot at left" +msgstr "draai de Butia-robot naar links" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "rechts Butia" + +#: taextras.py:119 +msgid "turn the Butia robot at right" +msgstr "draai de Butia robot naar rechts" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "achteruit Butia" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "beweeg de Butia robot achteruit" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "Butia Robot extra blokken" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "hack pin modus" + +#: taextras.py:125 taextras.py:293 taextras.py:455 +msgid "pin" +msgstr "speld" + +#: taextras.py:126 taextras.py:456 +msgid "mode" +msgstr "modus" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "Selecteer de pin functie (INVOER, UITVOER)." + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "schrijf hack pin Butia" + +#: taextras.py:129 taextras.py:459 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "waarde" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "stel een hack pin op 0 of 1" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "lees hack pin Butia" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "" -"beweegt schildpad naar positie xcor, ycor; (0, 0) is in het midden van het " -"scherm." +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "lees de waarde van een hack pin" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "richting instellen" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:433 +msgid "HIGH" +msgstr "HOOG" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "" -"stelt de richting in van het schildpad (0 is naar de bovenkant van het " -"scherm.)" +#: taextras.py:134 taextras.py:468 +msgid "Set HIGH value for digital port." +msgstr "Zet HOOG waarde voor digitale poort." -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:135 taextras.py:435 +msgid "INPUT" +msgstr "INVOER" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"behoudt deze x-coördinaat waarde voor schildpad (kan worden gebruikt in " -"plaats van nummerblok)" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "Configureer hack poort voor digitale invoer." -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:137 taextras.py:434 +msgid "LOW" +msgstr "LAAG" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "" -"behoudt deze y-coördinaat waarde voor schildpad (kan worden gebruikt in " -"plaats van nummerblok)" +#: taextras.py:138 taextras.py:471 +msgid "Set LOW value for digital port." +msgstr "Zet LAAG waarde voor digitale poort." -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "richting" +#: taextras.py:139 taextras.py:436 +msgid "OUTPUT" +msgstr "UITVOER" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "" -"houdt deze richtingwaarde van het schildpad vast (kan worden gebruikt in " -"plaats van nummerblok)" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "Configureer hack poort voor digitale uitvoer." -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palet van pencommando's" +#: taextras.py:141 +msgid "Butia" +msgstr "Butia" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "vul scherm" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "FOUT: De pin %s moet zijn in OUTPUT modus." -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "kleur" +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "FOUT: De pin %s moet zijn in INPUT modus." + +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "Fout bij het importeren van Pygame. Deze plugin vereist Pygame 1.9" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "Fout bij initialisatie van de camera" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "Geen camera gevonden" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "Fout bij stoppen camera" + +#: taextras.py:151 +msgid "Error starting camera" +msgstr "Fout bij starten camera" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "Fout in geef masker" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "VolgMe" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "ververs VolgMij" + +#: taextras.py:156 +msgid "Search for a connected camera." +msgstr "Zoek naar een verbonden camera." + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "calibratie" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "bewaar een aangepaste calibratie" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "geeft terug een gepersonaliseerde calibratie" + +#: taextras.py:161 +msgid "follow" +msgstr "volg" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "volg een kleur of calibratie" + +#: taextras.py:163 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 "helderheid" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "schaduw" +#: taextras.py:164 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "stel de helderheid van de camera in als een waarde tussen 0 en 255." -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "vult de achtergrond met (kleur, schaduw)" +#: taextras.py:165 +msgid "minimum pixels" +msgstr "minimum pixels" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "grijs" +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "stel een minimum aantal pixels in om te volgen" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "zet kleur" +#: taextras.py:167 +msgid "threshold" +msgstr "drempel" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "stelt kleur in van de lijn die getekend is door het schildpad" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "stel de drempel voor een RGB-kleur in" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "zet schaduw" +#: taextras.py:170 +msgid "camera mode" +msgstr "cameramodus" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "stelt de schaduw van de lijn in getekend door het schildpad" +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "stel de kleurmodus van de camera in: RGB, YUV of HSV" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "zet grijs" +#: taextras.py:173 +msgid "get brightness" +msgstr "lees de helderheid" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "stelt het grijsniveau van de lijn in getekend door de schildpad" +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "lees de helderheid van het omgevingslicht" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "houdt deze penkleur (kan gebruikt worden in plaats van een nummerblok)" +#: taextras.py:175 +msgid "average color" +msgstr "gemiddelde kleur" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "behoudt deze pen schaduw" +#: taextras.py:176 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" +"indien ingesteld op 0, wordt de gemiddelde kleur niet berekend tijdens de " +"kalibratie, bij andere waardes wel" + +#: taextras.py:178 +msgid "x position" +msgstr "x-positie" + +#: taextras.py:179 +msgid "return x position" +msgstr "geef x-positie" + +#: taextras.py:180 +msgid "y position" +msgstr "y-positie" + +#: taextras.py:181 +msgid "return y position" +msgstr "geef y-positie" + +#: taextras.py:182 +msgid "pixels" +msgstr "pixels" + +#: taextras.py:183 +msgid "return the number of pixels of the biggest blob" +msgstr "geef het aantal pixels van de grootste blob" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +msgid "set the color mode of the camera to RGB" +msgstr "zet de kleurmodus van de camera op RGB" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +msgid "set the color mode of the camera to YUV" +msgstr "zet de kleurmodus van de camera op YUV" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "zet de kleurmodus van de camera op HSV" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "lege kalibratie" + +#: taextras.py:191 +msgid "error in string conversion" +msgstr "fout in tekenreeksconversie" + +#. TRANS: Pattern detection is a plugin that allow detect signals +#. with the camera +#: taextras.py:197 +msgid "Pattern detection" +msgstr "Patroonherkenning" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "Signaal zien" + +#: taextras.py:199 +msgid "Returns True if the signal is in front of the camera" +msgstr "Geeft Waar als het signaal voor de camera is" + +#: taextras.py:200 +msgid "Distance to signal" +msgstr "Afstand tot signaal" + +#: taextras.py:201 +msgid "Returns the distance of the signal to the camera in millimeters" +msgstr "Geeft de afstand van het signaal tot de camera in millimeters" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "snelheid SumBot" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "stuur de snelheid naar de SumBot" + +#: taextras.py:209 +msgid "set the default speed for the movement commands" +msgstr "stel de standaardsnelheid voor de bewegingsopdrachten in" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "voorwaarts SumBot" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "verplaats de SumBot voorwaarts" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "achterwaarts SumBot" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "verplaats SumBot achterwaarts" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "stop SumBot" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "stop de SumBot" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "links SumBot" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "draai SumBot naar links" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "rechts SumBot" + +#: taextras.py:223 +msgid "turn right the SumBot" +msgstr "draai SumBot naar rechts" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:226 +msgid "angle to center" +msgstr "hoek tot midden" + +#. TRANS: dohyo is the playing field +#: taextras.py:228 +msgid "get the angle to the center of the dohyo" +msgstr "geef de hoek naar het midden van het speelveld" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "hoek naar Vijand" + +#: taextras.py:232 +msgid "get the angle to the Enemy" +msgstr "geef de afstand tot de Vijand" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "x-coör. SumBot" + +#: taextras.py:235 +msgid "get the x coordinate of the SumBot" +msgstr "geef de x-coördinaat van de Sumbot" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "y-coör. SumBot" + +#: taextras.py:238 +msgid "get the y coordinate of the SumBot" +msgstr "geef de y-coördinaat van de Sumbot" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "x-coör. Vijand" + +#: taextras.py:241 +msgid "get the x coordinate of the Enemy" +msgstr "geef de x-coördinaat van de Vijand" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "y-coör. Vijand" + +#: taextras.py:244 +msgid "get the y coordinate of the Enemy" +msgstr "geef de y-coördinaat van de Vijand" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "draaiing SumBot" + +#: taextras.py:247 +msgid "get the rotation of the Sumbot" +msgstr "geef de draaiing van de Sumbot" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "draaiing Vijand" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "geef de draaiing van de Vijand" + +#: taextras.py:251 +msgid "distance to center" +msgstr "afstand tot het midden" + +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "geef de afstand tot het midden van het speelveld" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "afstand tot Vijand" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "geef de afstand tot de Vijand" + +#: taextras.py:256 +msgid "update information" +msgstr "informatie bijwerken" + +#: taextras.py:257 +msgid "update information from the server" +msgstr "informatie bijwerken vanaf de server" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "Palet van fysica-blokken" + +#: taextras.py:263 +msgid "start polygon" +msgstr "start veelhoek" + +#: taextras.py:264 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" +"Begin een nieuwe veelhoek gebaseerd op de huidige xy-positie van de " +"Schildpad." -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "houdt dit grijsniveau (wordt gebruikt ipv een nummerblok)" +#: taextras.py:266 +msgid "add point" +msgstr "voeg punt toe" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "pen omhoog" +#: taextras.py:267 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" +"Voeg een nieuw punt toe aan de huidige veelhoek gebaseerd op deze xy positie " +"van het Schildpad." + +#: taextras.py:269 +msgid "end polygon" +msgstr "eind veelhoek" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "Definieer een nieuwe veelhoek." + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "eind gevulde veelhoek" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "Geen eenvoudige veelhoek" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "Definieer een nieuwe gevulde veelhoek." + +#: taextras.py:274 +msgid "triangle" +msgstr "driehoek" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "basis" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "hoogte" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Schildpad tekent niet als die beweegt." +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "Voeg een driehoek voorwerp toe aan het project." -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pen omlaag" +#: taextras.py:279 +msgid "circle" +msgstr "cirkel" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Schildpad tekent als die beweegt." +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "Voeg een cirkel voorwerp toe aan het project." -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "zet pen dikte" +#: taextras.py:281 +msgid "rectangle" +msgstr "rechthoek" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "stelt de grootte van de lijn in getekend door het schildpad" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "breedte" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "begin met vullen" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "Voeg een rechthoek voorwerp toe aan het project." -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "begint met een gevuld vlak (gebruik met eindig vullen van blok)" +#: taextras.py:285 +msgid "reset" +msgstr "reset" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "stop met vullen" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "Reset het project, schoon de voorwerplijst." -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "eindigt met vullen van vlak (gebruik met begin met een gevuld vlak)" +#: taextras.py:287 +msgid "motor" +msgstr "motor" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "pen dikte" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "koppel" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "houdt deze pengrootte (wordt gebruikt ipv een nummerblok)" +#: taextras.py:290 +msgid "speed" +msgstr "snelheid" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palet van penkleuren" +#: taextras.py:291 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Motor koppel en snelheid lopen van 0 (uit) naar positieve getallen; de motor " +"wordt geplaatst op het meest recent gecreeerde voorwerp." -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "rood" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "Speld een voorwerp vast zodat het niet kan vallen." -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "oranje" +#: taextras.py:295 +msgid "joint" +msgstr "gewricht" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "geel" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "groen" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyaan" +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Voeg twee voorwerpen samen (het meest recent aangemaakte en het voorwerp op " +"punt x, y)." + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "bewaar als Natuurkunde activiteit" + +#: taextras.py:301 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Bewaar het project bij het Dagboek als Natuurkunde activiteit." + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "versnelling" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blauw" +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "Voeg een versnelling voorwerp toe aan het project." -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "paars" +#: taextras.py:305 +msgid "density" +msgstr "dichtheid" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "wit" +#: taextras.py:306 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" +"Stel de dichtheid eigenschap in voor voorwerpen (dichtheid kan ieder " +"positief getal zijn)." -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "zwart" +#: taextras.py:308 +msgid "friction" +msgstr "wrijving" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "zet tekstkleur" +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Stel de wrijving eigenschap in voor voorwerpen (waarde 0 tot 1, waar 0 " +"wrijvingsloos is en 1 sterke wrijving)." + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "stuiterbaarheid" + +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Stel de stuiterbaarheid eigenschap in voor voorwerpen (waarde 0 tot 1, waar " +"0 stuiterloos is en 1 sterk stuiteren)." + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "dynamiek" + +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Als dynamiek = 1, kan het voorwerp bewegen; als dynamiek = 0 , is het op een " +"vaste positie." + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "Palet van WeDo blokken" + +#: taextras.py:324 +msgid "WeDo" +msgstr "WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "stel het huidige WeDo-apparaat in" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "aantal WeDo-apparaten" + +#: taextras.py:327 +msgid "tilt" +msgstr "hoogtehoek" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"tilt sensor uitvoer: (-1 == geen tilt, 0 == tilt voorwaarts, 3 == tilt " +"achterwaarts, 1 == tilt links, 2 == tilt rechts)" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "afstand sensor uitvoer" + +#: taextras.py:333 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "geeft de huidige waarde van Motor A" + +#: taextras.py:335 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "geeft de huidige waarde van Motor B" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "zet de waarde voor Motor A" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "zet de waarde voor Motor B" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "WeDo is niet beschikbaar" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "WeDo %d is niet beschikbaar; standaard 1 wordt gebruikt" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "stelt de kleur van tekst in getekend door het schildpad" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "%(device)s is niet beschikbaar op WeDo %(wedo_number)d" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palet van LEGO NXT blokken van motoren" + +#: taextras.py:350 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Palet van LEGO NXT blokken van sensors" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "aanraken" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "ultrasoon" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "kleur" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "stel tekstgrootte in" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "geluid" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "stelt grootte van tekst in getekend door schildpad" +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "Gelieve de verbinding met het blok na te kijken" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palet van getals operator" +#: taextras.py:361 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "Ongeldige poort '%s'. Poort moet zijn: PORT A, B of C" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "getal" +#: taextras.py:362 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "Ongeldige poort '%s'. Poort moet zijn: PORT 1, 2, 3 of 4" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "voegt twee alfanumerieke invoer toe" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "De waarde van de energie moet tussen -127 en 127 liggen" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "min" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "De parameter moet een geheel nummer zijn, niet '%s'" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "trekt onderste getalsinvoer af van bovenste getalsinvoer" +#: taextras.py:365 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"Er deed zich een fout voor: kijk alle verbindingen na en probeer opnieuw" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "vermenigvuldig" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT vond %s blokken" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "vermenigvuldigt twee getallen invoer" +#: taextras.py:367 +msgid "NXT not found" +msgstr "NXT niet gevonden" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "gedeeld door" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "Blok nummer %s is niet gevonden" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "deelt bovenste getalinvoer (teller) door onderste getalinvoer (noemer)" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "ververs NXT" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identiteit" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "Zoek naar een verbonden NXT steen." -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identiteit operator gebruikt voor uitbreiding blokken" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "stel huidig NXT-apparaat in" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modulair (restwaarde) operator" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "aantal NXT-apparaten" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:374 +msgid "brick name" +msgstr "bloknaam" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "vierkantswortel" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "Geef de naam van een blok." -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "berekent vierkantswortel" +#: taextras.py:376 +msgid "play tone" +msgstr "speel toon" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "willekeurig" +#: taextras.py:377 +msgid "frequency" +msgstr "frequentie" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "tijd" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "Speel een toon op frequrntie gedurende tijd." -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#. TRANS: turn is the action +#: taextras.py:381 +msgid "" +"turn motor\n" +"\n" msgstr "" -"geeft waarde terug tussen minimum (bovenste) en maximum (onderste) waarden" - -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "nummer" - -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "gebruikt als getalsinvoer in wiskundige opetatoren" - -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "groter dan" - -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logische groter-dan operator" - -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "kleiner dan" - -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logische kleiner-dan operator" +"draai motor\n" +"\n" + +#: taextras.py:382 +msgid "port" +msgstr "poort" + +#: taextras.py:383 +msgid "power" +msgstr "macht" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "omwentelingen" + +#: taextras.py:386 +msgid "turn a motor" +msgstr "draai een motor" + +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"synchroniseer\n" +"\n" +"motoren" + +#: taextras.py:388 +msgid "steering" +msgstr "sturen" + +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "synchroniseer twee motoren verbonden met PORT B en PORT C" + +#: taextras.py:390 +msgid "PORT A" +msgstr "PORT A" + +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "PORT A van een steen" + +#: taextras.py:392 +msgid "PORT B" +msgstr "PORT B" + +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "PORT B van een steen" + +#: taextras.py:394 +msgid "PORT C" +msgstr "PORT C" + +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "PORT C van een steen" + +#: taextras.py:396 +msgid "start motor" +msgstr "start motor" + +#: taextras.py:397 +msgid "Run a motor forever." +msgstr "Draai motor voor altijd." + +#: taextras.py:398 +msgid "brake motor" +msgstr "rem motor" + +#: taextras.py:399 +msgid "Stop a specified motor." +msgstr "Stop een opgegeven motor." + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:401 +msgid "reset motor" +msgstr "herstel motor" + +#: taextras.py:402 +msgid "Reset the motor counter." +msgstr "Herstel motor teller." + +#: taextras.py:403 +msgid "motor position" +msgstr "motor positie" + +#: taextras.py:404 +msgid "Get the motor position." +msgstr "Verkrijg de motor positie." + +#: taextras.py:405 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:406 +msgid "PORT 1 of the brick" +msgstr "PORT 1 van de steen" + +#: taextras.py:407 +msgid "read" +msgstr "lees" + +#: taextras.py:408 +msgid "sensor" +msgstr "sensor" + +#: taextras.py:409 +msgid "Read sensor output." +msgstr "Lees sensor uitvier." + +#: taextras.py:410 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:411 +msgid "PORT 2 of the brick" +msgstr "PORT 2 van de steen" + +#: taextras.py:412 +msgid "light sensor" +msgstr "lichtsensor" + +#: taextras.py:413 +msgid "gray sensor" +msgstr "grijssensor" + +#: taextras.py:414 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:415 +msgid "PORT 3 of the brick" +msgstr "PORT 3 van de steen" + +#: taextras.py:416 +msgid "touch sensor" +msgstr "aanraak sensor" + +#: taextras.py:417 +msgid "distance sensor" +msgstr "afstandsensor" + +#: taextras.py:418 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:419 +msgid "PORT 4 of the brick" +msgstr "PORT 4 van de steen" + +#: taextras.py:420 +msgid "sound sensor" +msgstr "geluid sensor" + +#: taextras.py:421 +msgid "color sensor" +msgstr "kleur sensor" + +#. #-#-#-#-# nl.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) +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.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:424 +msgid "set light" +msgstr "zet licht" + +#: taextras.py:425 +msgid "Set color sensor light." +msgstr "Zet kleur sensor light." + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:427 +msgid "battery level" +msgstr "accu niveau" + +#: taextras.py:428 +msgid "Get battery level of the brick" +msgstr "Geef batterijniveau van het blok" + +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:438 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:439 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:440 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "FOUT: Controleer de Arduino en het nummer van de poort." + +#: taextras.py:441 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "FOUT: Waarde moet zijn een getal van 0 tot 255." + +#: taextras.py:442 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "FOUT: Waarde moet zijn óf HOOG óf LAAG." + +#: taextras.py:443 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "FOUT: De nodus moet zijn INVOER, UITVOER, PWM of SERVO." + +#: taextras.py:444 +msgid "refresh Arduino" +msgstr "ververs Arduino" + +#: taextras.py:445 +msgid "Search for connected Arduinos." +msgstr "Zoek naar verbonden Arduino's." + +#: taextras.py:446 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:447 +msgid "set current Arduino board" +msgstr "stel het huidig Arduino-bord in" + +#: taextras.py:448 +msgid "number of Arduinos" +msgstr "aantal Arduiono's" + +#: taextras.py:449 +msgid "number of Arduino boards" +msgstr "aantal Arduino-borden" + +#: taextras.py:450 +msgid "Arduino name" +msgstr "Arduino-naam" + +#: taextras.py:451 +msgid "Get the name of an Arduino." +msgstr "Geef de naam van een Arduino." + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:454 +msgid "pin mode" +msgstr "pinmodus" + +#: taextras.py:457 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Selecteer de pin functie (INVOER, UITVOER, PWM, SERVO)." + +#: taextras.py:458 +msgid "analog write" +msgstr "analoog schrijven" + +#: taextras.py:460 +msgid "Write analog value in specified port." +msgstr "Schrijf analoge waarde in aangegeven poort." + +#: taextras.py:461 +msgid "analog read" +msgstr "analoog lezen" + +#: taextras.py:462 +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 "" +"Lees waarde van analoge poort. Waarde mag zijn tussen 0 en 1023. Gebruik " +"Vref om spanning te bepalen. Voor USB, volt=((lees)*5)/1024) ongeveer." + +#: taextras.py:464 +msgid "digital write" +msgstr "digitaal schrijven" + +#: taextras.py:465 +msgid "Write digital value to specified port." +msgstr "Schrijf digitale waarde naar aangegeven poort." + +#: taextras.py:466 +msgid "digital read" +msgstr "digitaal lezen" + +#: taextras.py:467 +msgid "Read value from digital port." +msgstr "Lees waarde van digitale poort." + +#: taextras.py:469 +msgid "Configure Arduino port for digital input." +msgstr "Configureer Arduino poort voor digitale invoer." + +#: taextras.py:470 +msgid "Configure Arduino port to drive a servo." +msgstr "Configureer Arduino poort om servo te besturen." + +#: taextras.py:472 +msgid "Configure Arduino port for digital output." +msgstr "Configureer Arduino poort voor digitale uitvoer." + +#: taextras.py:473 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Configureer Arduino poort voor PWM (pulsbreedte modulatie)." + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:478 +msgid "Palette of Expeyes blocks" +msgstr "Palet van Expeyes-blokken" + +#. TRANS: Programmable voltage output +#: taextras.py:480 +msgid "set PVS" +msgstr "stel PVS in" + +#: taextras.py:481 +msgid "set programmable voltage output" +msgstr "stel programmeerbare stroomuitvoer in" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:483 +msgid "set SQR1 voltage" +msgstr "stel SQR1-stroomsterkte in" + +#: taextras.py:484 +msgid "set square wave 1 voltage output" +msgstr "stel blokgolf 1 spanningsuitvoer in" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:486 +msgid "set SQR2 voltage" +msgstr "stel SQR2 spanning in" + +#: taextras.py:487 +msgid "set square wave 2 voltage output" +msgstr "stel blokgolf 2 spanningsuitvoer in" + +#. TRANS: Digital output level +#: taextras.py:489 +msgid "set OD1" +msgstr "stel OD1 in" + +#: taextras.py:490 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "stel digitaal uitvoerniveau (OD1) laag (0) of hoog (1)" + +#. TRANS: Input 1 voltage level +#: taextras.py:492 +msgid "IN1 level" +msgstr "IN1 niveau" + +#: taextras.py:493 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" +"geeft 1 als IN1 spanningsniveau >2.5 volts, 0 als IN1 spanningsniveau <= 2.5 " +"volts" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "gelijk aan" +#. TRANS: Input 2 voltage level +#: taextras.py:496 +msgid "IN2 level" +msgstr "IN2 niveau" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logische gelijk-aan operator" - -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "niet" +#: taextras.py:497 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" +"geeft 1 als IN2 spanningsniveau >2.5 volts, 0 als IN2 spanningsniveau <= 2.5 " +"volts" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logische NIET operator" +#. TRANS: Resistive sensor voltage level +#: taextras.py:500 +msgid "SEN level" +msgstr "SEN niveau" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "en" +#: taextras.py:501 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" +"geeft 1 als weerstandssensor (SEN) spanningsniveau > 2.5 volts, 0 als SEN " +"spanningsniveau <= 2.5 volts" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logische AND bewerker" +#: taextras.py:503 +msgid "capture" +msgstr "opnemen" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "of" +#: taextras.py:504 +msgid "input" +msgstr "invoer" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logische OF operator" +#: taextras.py:505 +msgid "samples" +msgstr "voorbeelden" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palet van stroom operators" +#: taextras.py:506 +msgid "interval" +msgstr "interval" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "wacht" +#. TRANS: MS is microseconds +#: taextras.py:508 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" +"neem meerdere monsters op van invoer met interval (MS); resultaat gestuurd " +"naar FIFO" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:511 +msgid "A1" +msgstr "A1" + +#: taextras.py:512 +msgid "read analog input 1 voltage" +msgstr "lees analoge invoer 1 voltage" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:514 +msgid "A2" +msgstr "A2" + +#: taextras.py:515 +msgid "read analog input 2 voltage" +msgstr "lees analoge invoer 2 voltage" + +#. TRANS: Read input 1 voltage +#: taextras.py:517 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:518 +msgid "read input 1 voltage" +msgstr "lees invoer 1 voltage" + +#. TRANS: Read input 2 voltage +#: taextras.py:520 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:521 +msgid "read input 2 voltage" +msgstr "lees invoer 2 voltage" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:523 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:524 +msgid "read analog sensor input voltage" +msgstr "lees analoge sensor invoer voltage" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:526 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:527 +msgid "read square wave 1 voltage" +msgstr "lees blokgolf 1 voltage" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:529 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:530 +msgid "read square wave 2 voltage" +msgstr "lees blokgolf 2 voltage" + +#. TRANS: Read programmable voltage +#: taextras.py:532 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:533 +msgid "read programmable voltage" +msgstr "lees programmeerbaar voltage" + +#: taextras.py:534 +msgid "Expeyes device not found" +msgstr "Expeyes apparaat niet gevonden" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "pauzeert programmauitvoering een aangegeven aantal seconden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "hervatten video of audio spelen" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "altijd" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Titel" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "lust voor altijd" +#: 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 "Gemiddelde RGB kleur van camera is naar de stapel geduwd" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "herhaal" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "geel" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "lust een aangegeven aantal keren" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "toont polaire coördinaten" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "als" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "leegt FILO (eerste-in-laatste-uit hoop)" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "dan" +#: 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 "camera uitvoer" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "als dan" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "duw versnelling in x, y, z naar hoop" #: TurtleArt/tabasics.py:781 msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "als-dan operator die gebruikt booleaanse operators van Getallen palet" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "anders" - -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "als dan anders" - -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "" -"als-dan-anders operator die gebruikt booleaanse operators van Getallen palet" - -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "horizontale ruimte" - #: TurtleArt/tabasics.py:812 msgid "jogs stack right" msgstr "schudt stapel rechts" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "verticale ruimte" - -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "stoot stapel neer" - -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "stop actie" - -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "stop deze actie" - -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palet van variabele blokken" - -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "begin" - -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "verbindt actie aan werkbalk start knoppen" - -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "tekst" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "rijwaarde" - -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "actie" - -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "bovenste van benoembare actie stapel" - -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "roept benoemde actie stapel aan" - -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "opslaan in doos 1" - -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "slaat getalswaarde op in Variabele 1" - -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "opslaan in doos 2" - -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "slaat getalswaarde op in Variabele 2" - -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "doos 1" - -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variabele 1 (getalswaarde)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Dagboek media voorwerp" #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "doos 2" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variabele 2 (getalswaarde)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "sla op in" - -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "doos" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "doos 1" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "waarde" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Stap" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "mijn vakje" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "vermenigvuldigt twee getallen invoer" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "slaat getalswaarde op in benoemde variabele" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Toon/verberg blokken" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "benoemde variabele (getalswaarde)" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Verberg palet" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "actie 1" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Maatjes" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "bovenste van Actie 1 stapel" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Mijn Schildpad Kunst sessie" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "actie 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar Dagboek geluidsvoorwerp" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "bovenste van Actie 2 stapel" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyaan" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "roept Actie 1 stapel aan" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor van rechterkant van scherm" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "roept Actie 2 stapel aan" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Palet van extra opties" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "prullenbak" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Laad voorbeeld" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "leeg afval" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "verplaats alle blokken naar de prullenbak" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "verwijdert items uit afval voorgoed" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "lijst" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "herlaad alles" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Configuratiedirectory is niet schrijfbaar: %s" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "herlaad alle blokken van afval" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "media hervatten" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "wis alles" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "richting" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "verplaats alle blokken naar de prullenbak" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Blokken delen uitgeschakeld" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Deel geselecteerde blokken" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "bewaart een schikdpad plaatje als een SVG bestand in het Sugar Dagboek" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Titel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "tekent tekst of toont media uit het Dagboek" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Stop schildpad" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Toon blokken" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "video" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Verberg blokken" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blauw" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "gaf geen uitvoer naar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "toont Cartesische coördinaten" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Ik weet niet hoe" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Geen optie actie:" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "houdt niet van" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "stoot stapel neer" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "als invoer" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modulair (restwaarde) operator" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "toont volgende palet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "onderkant y" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "wijzigt de richting van het blokkenpalet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "bewaar SVG" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Laden..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "draait code gevonden in tamyblock.py module gevonden in het Dagboek" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Bewaren..." +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pen omlaag" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "klik om te openen" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "wacht" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "oriëntatie" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "doos" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "volgende" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Uploaden mislukt!" #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" msgstr "schuif" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" -"Druk op de Stop Knop voor het maken van wijzigingen op je Schildpad Blokken " -"programma" - -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Selecteer blokken om te delen" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Schildpad Kunst" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "afbeelding" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Bewaar als Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Opslaan als afbeelding" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "foto" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "roept benoemde actie stapel aan" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Bewaar foto" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "actie" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Zet uit muistips" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"doe-totdat-Waar operator die gebruik maakt van booleaanse operators van " +"Getal palet" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Zet aan muistips" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "gebruik is" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Toon palet" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variabele 2 (getalswaarde)" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Verberg palet" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "gedeeld door" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Herschaal coördinaten neer" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "afbeeldingnaam" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Herschaal coördinaten op" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "zolang" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Bewerk" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "de schilderij breedte" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Bekijk" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "stapel wissen?" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Project" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "benoemde variabele (getalswaarde)" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "BewaarLaden" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "volgende" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopieer" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "als dan" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Plak" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "zet pen dikte" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Herlaad alle blokken van afval" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "presentatie sjabloon: selecteer Dagboek voorwerp (zonder beschrijving)" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Schermvullend" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "totdat" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Cartesische coördinaten" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "media stop" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Polaire coördinaten" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Zet aan muistips" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Metrische coördinaten" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "verwijdert items uit afval voorgoed" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Vergroot blokken" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "u-bocht" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Verklein blokken" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "bovenste van Actie 1 stapel" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Laad voorbeeld" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"een programmeerbaar blok: gebruikt om geavanceerde enkele-variabele " +"wiskundige vergelijkingen toe te voegen, zoals sin(x)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Wissen" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palet van stroom operators" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Draai" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "bovenkant van een ingeklapte stapel" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Stap" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"als-dan-anders operator die gebruikt booleaanse operators van Getallen palet" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Help" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "geeft muis y coördinaat" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stop" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "behoudt deze pen schaduw" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Laad project" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinusgolf" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Laad plugin" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Aanmelden mislukt" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Laad Python blok" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "links x" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "Palet" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "richting instellen" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Blokken delen uitgeschakeld" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "RGB kleur onder de schildpad is op de stapel gelegd" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "ontwar schilderij door blokken te verbergen" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Plugin kon niet geïnstalleerd worden." - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Herstart Turtle Art om plugin te kunnen gebruiken." - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Plugin %s is al geïnstalleerd." - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Wil je herinstalleren %s?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Mijn Schildpad Kunst sessie" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Samenwerken aanzetten" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Activiteiten" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Maatjes" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Delen" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Configuratie" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Omgeving" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Bijnaam" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Account ID" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Server" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Poort" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Wachtwoord" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python chr operator" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Register" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "horizontale ruimte" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Kleuren" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Metrische coördinaten" -#: 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 "Uploaden" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "rijwaarde" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "Facebook muurpost" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "beschrijving" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Naar web uploaden" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Ik weet niet hoe" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "" -"Je moet een account op http://turtleartsite.sugarlabs.org hebben om je " -"project te uploaden." +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "stel tekstgrootte in" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "Gebruikersnaam:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Wachtwoord:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Titel:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Beschrijving:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Naar web opsturen" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "begint met een gevuld vlak (gebruik met eindig vullen van blok)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Annuleren" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "presentatie sjabloon: selecteer vier Dagboek voorwerpen" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Aanmelden mislukt" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Bekijk" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Uploaden mislukt!" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "stelt het grijsniveau van de lijn in getekend door de schildpad" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palet van sensorblokken" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Wachtwoord:" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "versnelling" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "schildpad ziet" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "duw versnelling in x, y, z naar hoop" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "stop actie" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "geluid" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "groen" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "ruw microfoon invoer signaal" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "schaduw" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "luidheid" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "vult de achtergrond met (kleur, schaduw)" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "microfoon invoer volume" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "bewaar afbeelding" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1156,432 +2223,252 @@ msgstr "microfoon invoer volume" msgid "pitch" msgstr "toonhoogte" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "microfoon invoer toonhoogte" - -#: 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 "weerstand" - -#: 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 "microfoon invoerweerstand" - -#: 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 "spanning" - -#: 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 "microfoon invoer spanning" - -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palet van media voorwerpen" - -#: 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 "helderheid" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "lichtniveau ontdekt door camera" - -#: 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 "Gemiddelde RGB kleur van camera is naar de stapel geduwd" - -#: 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 "camera uitvoer" - -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "lichtniveau ontdekt door lichtsensor" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "lees waarde van RFID apparaat" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "zolang" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"do-zolang-Waar operator die booleaanse operators gebruikt van Getal palet" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "totdat" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"doe-totdat-Waar operator die gebruik maakt van booleaanse operators van " -"Getal palet" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "bovenin" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "bovenkant van een inklapbare stapel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "geeft 1 als muisknop is ingedrukt" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "dagboek" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Herschaal coördinaten op" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Dagboek media voorwerp" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "pen omhoog" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "oranje" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Dagboek geluidsvoorwerp" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "pauzeert programmauitvoering een aangegeven aantal seconden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "duwt waarde op FILO (eerst-in-laatst-uit hoop)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar Dagboek geluidsvoorwerp" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "wis alles" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "beschrijving" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "dan" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar Dagboek beschrijvingveld" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Register" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "toon" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "niet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "tekent tekst of toont media uit het Dagboek" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "als dan anders" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "toon uitgelijnd" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "stop deze actie" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "stel schaal in" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "draait schildpad met de klok mee (hoek in graden)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "stelt de schaal van de media in" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "houdt dit grijsniveau (wordt gebruikt ipv een nummerblok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "bewaar afbeelding" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor van linkerkant van scherm" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "afbeeldingnaam" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Herstel blokgrootte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "bewaart een afbeelding in het Sugar Dagboek" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "schildpad" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "bewaar SVG" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "toont volgende palet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "bewaart een schikdpad plaatje als een SVG bestand in het Sugar Dagboek" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "blokken verbergen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "schaal" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "lichtniveau ontdekt door camera" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "houdt deze schaalwaarde" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python int operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "media wacht" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logische kleiner-dan operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "wacht tot huidige video of audio gereed is" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "herlaad alle blokken van afval" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "media stop" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Bewaar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "stop video of audio" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "opslaan in doos 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "media pauze" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "opslaan in doos 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "pauze video of audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "verbergt de Sugar werkbalken" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "media hervatten" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"behoudt deze x-coördinaat waarde voor schildpad (kan worden gebruikt in " +"plaats van nummerblok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "hervatten video of audio spelen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "druk af" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "spreek" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "geeft muis x coördinaat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "hallo" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "rood" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "spreekt tekst" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Bewaar als Logo" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinusgolf" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "stelt kleur in van de lijn die getekend is door het schildpad" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "amplitude" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "zet tekstkleur" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "duur" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "luidheid" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "speelt een sinusgolf met frequentie, amplitude en duur (in secomden)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Samenwerken aanzetten" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "knop ingedrukt" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palet van sensorblokken" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "geeft 1 als muisknop is ingedrukt" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Laad plugin" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "geeft Waar als muisknop is ingedrukt" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "muis x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "geeft muis x coördinaat" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "muis y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "geeft muis y coördinaat" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "nummer" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "vraag toetsenbord uit" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"uitvraging van toetsenbord invoer (resultaten opgeslagen in toetsenbordblok)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "bovenin" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "toetsenbord" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Naar web opsturen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "bevat resultaten van uitvraging-toetsnebordblok als ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Cartesische coördinaten" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "lees pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Bijnaam" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "RGB kleur onder de schildpad is op de stapel gelegd" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "stel schaal in" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "schildpad ziet" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Deel geselecteerde blokken" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "geeft de kleur dat de schildpad \"ziet\"" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "wit" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "tijd" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "verbindt actie aan werkbalk start knoppen" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "verstreken tijd (in seconden) sinds programma startte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Palet van extra opties" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "neerleggen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "duwt waarde op FILO (eerst-in-laatst-uit hoop)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "stapel weergeven" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "toont waarden in FILO (eerst-in-laatst-uit hoop)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "stapel wissen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "leegt FILO (eerste-in-laatste-uit hoop)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "afnemen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "duwt waarde van FILO (eerst-in-laatst-uit hoop)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "stapel wissen?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "geeft Waar terug als hoop leeg is" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "commentaar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "plaatst een commentaar in je code" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "druk af" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplitude" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "drukt waarde af in status blok bij de onderkant van het scherm" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Annuleren" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python chr operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "de schlderijhoogte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python int operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "presentatie 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "min" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"een programmeerbaar blok: gebruikt om geavanceerde enkele-variabele " -"wiskundige vergelijkingen toe te voegen, zoals sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "en" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"een programmeerbaar blok: gebruikt om geavanceerde meer-variabelen wisk " -"vergelijkingen toe te voegen, zoals sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "bovenkant van een inklapbare stapel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"een programmeerbaar blok: gebruikt om geavanceerde meer-variabelen " -"wiskundige vergelijkingen toe te voegen, zoals sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "als invoer" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1589,56 +2476,26 @@ msgstr "" msgid "Python block" msgstr "Python blok" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "draait code gevonden in tamyblock.py module gevonden in het Dagboek" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesisch" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "toont Cartesische coördinaten" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polair" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "toont polaire coördinaten" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "schildpad" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "kies welk schildpad te besturen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "media wacht" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "turtle shall" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "versnelling" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "legt een aangepast 'schild' op de schildpad" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "houdt deze pengrootte (wordt gebruikt ipv een nummerblok)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "bovenkant van een ingeklapte stapel" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "zet kleur" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "laad" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1646,70 +2503,68 @@ msgstr "laad" msgid "loads a block" msgstr "laad een blok" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "zetxy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palet van pencommando's" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "palet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "toont waarden in FILO (eerst-in-laatst-uit hoop)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "selecteert een palet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"do-zolang-Waar operator die booleaanse operators gebruikt van Getal palet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palet van presentatie sjablonen" +#: turtleblocks.py:363 +msgid "File" +msgstr "Bestand" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "blokken verbergen" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logische NIET operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "ontwar schilderij door blokken te verbergen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor voor onderkant van scherm" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "blokken weergeven" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "presentatie sjabloon: selecteer Dagboek voorwerp (met beschrijving)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "herlaad verborgen blokken" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palet van getals operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "verbergt de Sugar werkbalken" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "vermenigvuldig" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "lijst" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "altijd" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "presentatiepuntenlijst" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Plugin %s is al geïnstalleerd." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "presentatie sjabloon: puntenlijst" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "stelt de schaduw van de lijn in getekend door het schildpad" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "presentatie sjabloon: selecteer Dagboek voorwerp (zonder beschrijving)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "spreekt tekst" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "presentatie sjabloon: selecteer Dagboek voorwerp (met beschrijving)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "foto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "presentatie sjabloon: selecteer vier Dagboek voorwerpen" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "wissen" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1718,1018 +2573,1076 @@ msgstr "presentatie sjabloon: selecteer vier Dagboek voorwerpen" msgid "presentation template: select two Journal objects" msgstr "presentatie sjabloon: selecteer twee Dagboek voorwerpen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor van linkerkant van scherm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "onderkant" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor voor onderkant van scherm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "breedte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "de schilderij breedte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor van rechterkant van scherm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor van bovenkant van het scherm" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "hoogte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "de schlderijhoogte" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "titel x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "titel y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "links x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "boven y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "rechts x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Vergroot blokken" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "onderkant y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Schermvullend" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "presentatie 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Bestand niet gevonden" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "presentatie 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "toon" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "presentatie 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "tekst" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "presentatie 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "willekeurig" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "Installeer de Spraak Activiteit en probeer opnieuw." +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logische groter-dan operator" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "Spaans" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "draait schildpad tegen de klok in (hoek in graden)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "Engels" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "zwart" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "Sorry, ik begrijp niet waarover je vraagt." +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "berekent vierkantswortel" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"Sorry, er is geen vrij geheugen meer om mijn brein te laden. Sluit andere " -"activiteiten en probeer opnieuw." +"behoudt deze y-coördinaat waarde voor schildpad (kan worden gebruikt in " +"plaats van nummerblok)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "duw bestemming rgb waarde naar hoop" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "muis x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "muis y" #: pysamples/grecord.py:215 msgid "stop" msgstr "stop" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "speel" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "bewaar" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "ander" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "u-bocht" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "maak een u-bocht" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "gebruik is" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Geen optie actie:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Bestand niet gevonden" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Configuratiedirectory is niet schrijfbaar: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Nieuw" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Open" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Bewaar" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Opslaan als" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Afsluiten" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Bestand" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Herschaal coördinaten" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Herstel blokgrootte" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Toon/verberg blokken" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Werktuigen" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debug" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Schildpad" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "groter dan" -#: turtleblocks.py:407 -msgid "About..." -msgstr "Over..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "" -"Je hebt nog werk dat niet is opgeslagen. Wil je het opslaan voor het " -"afsluiten?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Help" #: turtleblocks.py:448 msgid "Save project?" msgstr "Project opslaan?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Schildpad Kunst Mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "Schildpad Verwarring" - -#~ msgid "Select a challenge" -#~ msgstr "Kies een uitdaging" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palet van Mexicaanse pesos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palet van Colombiaanse pesos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palet van Rwandaanse franken" - -#~ msgid "Palette of US dollars" -#~ msgstr "Palet van US dollars" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Palet van Australische dollars" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Palett van Paraguayse Guaranies" - -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Palet van Peruviaanse Nuevo Soles" - -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Paler van Uruguayse Pesos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "kies welk schildpad te besturen" -#~ msgid "TurtleBots" -#~ msgstr "TurtleBots" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "rechts x" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "pas LED intensiteit aan tussen 0 en 255" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "stelt de kleur van tekst in getekend door het schildpad" -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "geeft voorwerpgrijs niveau als getal tussen 0 en 1023" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "lichtniveau ontdekt door lichtsensor" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "geeft 1 terug als knop is ingedrukt en anders 0" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Plugin kon niet geïnstalleerd worden." -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "geeft omgevingslicht niveau als getal tussen 0 en 1023" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "toetsenbord" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "geeft omgevingstemperatuur als een getal tussen 0 en 255" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "boog" -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "geeft de afstand van het voorwerp voor de sensor als een getal tussen 0 en " -#~ "255" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "straal" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "geeft een 0 of 1 afhankelijk van de hoek van de sensor" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Polaire coördinaten" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "geeft een 1 als de sensors een magnetisch veld waarneemt, anders 0" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "zet schaduw" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "schakelt tussen 0 en 1, de frequentie hangt af van de trilling" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logische AND bewerker" -#~ msgid "LED" -#~ msgstr "LED" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Je moet een account op http://turtleartsite.sugarlabs.org hebben om je " +"project te uploaden." -#~ msgid "button" -#~ msgstr "knop" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "palet" -#~ msgid "grayscale" -#~ msgstr "grijsschaal" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Draai" -#~ msgid "ambient light" -#~ msgstr "omgevingslicht" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "stapel weergeven" -#~ msgid "temperature" -#~ msgstr "temperatuur" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "" +"stelt de richting in van het schildpad (0 is naar de bovenkant van het " +"scherm.)" -#~ msgid "distance" -#~ msgstr "afstand" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "selecteert een palet" -#~ msgid "tilt" -#~ msgstr "hoogtehoek" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "microfoon invoer volume" -#~ msgid "magnetic induction" -#~ msgstr "magnetische inductie" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Titel:" -#~ msgid "vibration" -#~ msgstr "trilling" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palet van media voorwerpen" -#~ msgid "Butia Robot" -#~ msgstr "Butia Robot" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Herlaad alle blokken van afval" -#~ msgid "refresh Butia" -#~ msgstr "ververs Butia" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palet van variabele blokken" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "ververs de status vam de Butia palet en blokken" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "gebruikt als getalsinvoer in wiskundige opetatoren" -#~ msgid "battery charge Butia" -#~ msgstr "accu lading Butia" +#: 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 "Uploaden" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "geeft de batterijlading als een getal tussen 0 en 255" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Server" -#~ msgid "speed Butia" -#~ msgstr "snelheid Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "presentatie 2x2" -#~ msgid "forward Butia" -#~ msgstr "vooruit Butia" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variabele 1 (getalswaarde)" -#~ msgid "move the Butia robot forward" -#~ msgstr "beweeg de Butia robot vooruit" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Omgeving" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "beweeg de Butia robot de voorgedefinieerde afstand vooruit" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "voegt twee alfanumerieke invoer toe" -#~ msgid "left Butia" -#~ msgstr "links Butia" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "gelijk aan" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "draai de Butia robot naar rechts" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "anders" -#~ msgid "backward Butia" -#~ msgstr "achteruit Butia" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "houdt niet van" -#~ msgid "move the Butia robot backward" -#~ msgstr "beweeg de Butia robot achteruit" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "" +"Je hebt nog werk dat niet is opgeslagen. Wil je het opslaan voor het " +"afsluiten?" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "beweeg de Butia robot de voorgedefinieerde afstand achteruit" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "herlaad verborgen blokken" -#~ msgid "right Butia" -#~ msgstr "rechts Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "laad" -#~ msgid "turn the Butia robot at right" -#~ msgstr "draai de Butia robot naar rechts" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "stop video of audio" -#~ msgid "turn Butia" -#~ msgstr "draai Butia" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Schildpad tekent niet als die beweegt." -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "draai de Butia robot x graden" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "afnemen" -#~ msgid "stop Butia" -#~ msgstr "stop Butia" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "pen dikte" -#~ msgid "stop the Butia robot" -#~ msgstr "stop de Butia robot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "turtle shall" -#~ msgid "Butia" -#~ msgstr "Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "speelt een sinusgolf met frequentie, amplitude en duur (in secomden)" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Fout bij initialisatie van de camera" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Geen camera gevonden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "spreek" -#~ msgid "Error stopping camera" -#~ msgstr "Fout bij stoppen camera" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "lees waarde van RFID apparaat" -#~ msgid "Error starting camera" -#~ msgstr "Fout bij starten camera" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "beweegt schildpad langs een boog" -#~ msgid "FollowMe" -#~ msgstr "VolgMe" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "maak een u-bocht" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Zoek naar een verbonden NXT steen." +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logische gelijk-aan operator" -#~ msgid "calibration" -#~ msgstr "calibratie" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palet van penkleuren" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "bewaart een persoonlijke calibratie" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "pauze video of audio" -#~ msgid "return a personalized calibration" -#~ msgstr "geeft terug een gepersonaliseerde calibratie" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "slaat getalswaarde op in Variabele 1" -#~ msgid "follow" -#~ msgstr "volg" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "slaat getalswaarde op in Variabele 2" -#~ msgid "follow a color or calibration" -#~ msgstr "volg een kluer of een calibratie" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "legt een aangepast 'schild' op de schildpad" -#~ msgid "minimum pixels" -#~ msgstr "minimum pixels" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "knop ingedrukt" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "stel een minimum aantal pixels in om te volgen" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "beweegt schildpad achteruit" -#~ msgid "threshold" -#~ msgstr "drempel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor van bovenkant van het scherm" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "zet de drempel voor een RGB kleur" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Toon blokken" -#~ msgid "camera mode" -#~ msgstr "camera modus" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "speel" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "zet kleurmodus van de camera op RGB, YUV of HSV" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "bewaar" -#~ msgid "x position" -#~ msgstr "x positie" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Kleuren" -#~ msgid "return x position" -#~ msgstr "geeft x positie" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "stelt de grootte van de lijn in getekend door het schildpad" -#~ msgid "y position" -#~ msgstr "y positie" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Open" -#~ msgid "return y position" -#~ msgstr "geeft y positie" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "oriëntatie" -#~ msgid "pixels" -#~ msgstr "pixels" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "geef terug het aantal pixels van de grootste blob" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"een programmeerbaar blok: gebruikt om geavanceerde meer-variabelen wisk " +"vergelijkingen toe te voegen, zoals sqrt(x*x+y*y)" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "zet kleurmodus van de camera op RGB" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "als" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "zet kleurmodus van de camera op YUV" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"beweegt schildpad naar positie xcor, ycor; (0, 0) is in het midden van het " +"scherm." -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "zet kleurmodus van de camera op HSV" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "empty calibration" -#~ msgstr "lege calibratie" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stop" -#~ msgid "error in string conversion" -#~ msgstr "fout in rekst expressie" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "actie 2" -#~ msgid "SumBot" -#~ msgstr "SomBot" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "actie 1" -#~ msgid "speed SumBot" -#~ msgstr "snelheid SomBot" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "stop met vullen" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "stel in de snelheid naar de SomBot" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopieer" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "stel de standaard snelheid voor de beweegcommando's" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Plak" -#~ msgid "forward SumBot" -#~ msgstr "stuur door de SomBot" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "gaf geen uitvoer naar" -#~ msgid "move SumBot forward" -#~ msgstr "verplaats de SomBot voorwaarts" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Activiteiten" -#~ msgid "backward SumBot" -#~ msgstr "terug SomBot" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Naar web uploaden" -#~ msgid "move SumBot backward" -#~ msgstr "verplaats SomBot achterwaarts" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "stapel wissen" -#~ msgid "stop SumBot" -#~ msgstr "stop SomBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "duwt waarde van FILO (eerst-in-laatst-uit hoop)" -#~ msgid "stop the SumBot" -#~ msgstr "stop de SomBot" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Wissen" -#~ msgid "left SumBot" -#~ msgstr "links SomBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palet van presentatie sjablonen" -#~ msgid "turn left the SumBot" -#~ msgstr "draai SomBot naar links" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "hoek" -#~ msgid "right SumBot" -#~ msgstr "rechts SomBot" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identiteit" -#~ msgid "turn right the SumBot" -#~ msgstr "draai SomBot naar rechts" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "BewaarLaden" -#~ msgid "angle to center" -#~ msgstr "hoek van midden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "boven y" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "neem de hoek naar het midden van het speelveld" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" -#~ msgid "angle to Enemy" -#~ msgstr "hoek naar Vijand" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Werktuigen" -#~ msgid "get the angle to the Enemy" -#~ msgstr "neem de afstand tot de Vijand" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Poort" -#~ msgid "x coor. SumBot" -#~ msgstr "x coör. SomBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "commentaar" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "neem de x coördinaat van de Sombot" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "trekt onderste getalsinvoer af van bovenste getalsinvoer" -#~ msgid "y coor. SumBot" -#~ msgstr "y coör. SomBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "media pauze" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "neem de y coördinaat van de Sombot" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "duw bestemming rgb waarde naar hoop" -#~ msgid "x coor. Enemy" -#~ msgstr "x coör. Vijand" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"uitvraging van toetsenbord invoer (resultaten opgeslagen in toetsenbordblok)" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "neem de x coördinaat van de Vijand" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesisch" -#~ msgid "y coor. Enemy" -#~ msgstr "y coör. Vijand" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "schoont het scherm en herstelt het schildpad" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "neem de y coördinaat van de Vijand" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "ruw microfoon invoer signaal" -#~ msgid "rotation SumBot" -#~ msgstr "draaiing SomBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "geeft de kleur dat de schildpad \"ziet\"" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "neem de rotatie van de Sombot" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "roept Actie 1 stapel aan" -#~ msgid "rotation Enemy" -#~ msgstr "draaiing Vijand" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palet van schildpadcommando's" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "neem de rotatie van de Vijand" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "lust voor altijd" -#~ msgid "distance to center" -#~ msgstr "afstand naar het midden" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "toon uitgelijnd" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "neem de afstand tot het midden van het speelveld" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Wil je herinstalleren %s?" -#~ msgid "distance to Enemy" -#~ msgstr "afstand tot Vijand" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Laad project" -#~ msgid "get the distance to the Enemy" -#~ msgstr "neem de afstand tot de Vijand" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Project" -#~ msgid "update information" -#~ msgstr "informatie bijwerken" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debug" -#~ msgid "update information from the server" -#~ msgstr "informatie bijwerken van de server" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Zet uit muistips" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palet van fysica blokken" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "start polygon" -#~ msgstr "start veelhoek" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Wachtwoord" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Begin definiëren van een nieuwe veelhoek gebaseerd op de huidige xy positie " -#~ "van het Schildpad." +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "verticale ruimte" -#~ msgid "add point" -#~ msgstr "voeg punt toe" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Herstart Turtle Art om plugin te kunnen gebruiken." -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Voeg een nieuw punt toe aan de huidige veelhoek gebaseerd op deze xy positie " -#~ "van het Schildpad." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "eindigt met vullen van vlak (gebruik met begin met een gevuld vlak)" -#~ msgid "end polygon" -#~ msgstr "eind veelhoek" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Delen" -#~ msgid "Define a new polygon." -#~ msgstr "Definieer een nieuwe veelhoek." +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "kleiner dan" -#~ msgid "end filled polygon" -#~ msgstr "eind gevulde veelhoek" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "vierkantswortel" -#~ msgid "Not a simple polygon" -#~ msgstr "Geen eenvoudige veelhoek" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Herschaal coördinaten" -#~ msgid "Define a new filled polygon." -#~ msgstr "Definieer een nieuwe gevulde veelhoek." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "blokken weergeven" -#~ msgid "triangle" -#~ msgstr "driehoek" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Afsluiten" -#~ msgid "base" -#~ msgstr "basis" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar Dagboek beschrijvingveld" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Voeg een driehoek voorwerp toe aan het project." +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "zet grijs" -#~ msgid "circle" -#~ msgstr "cirkel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "presentatiepuntenlijst" -#~ msgid "Add a circle object to the project." -#~ msgstr "Voeg een cirkel voorwerp toe aan het project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "duur" -#~ msgid "rectangle" -#~ msgstr "rechthoek" +#: turtleblocks.py:354 +msgid "New" +msgstr "Nieuw" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Voeg een rechthoek voorwerp toe aan het project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "plaatst een commentaar in je code" -#~ msgid "reset" -#~ msgstr "reset" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "lees pixel" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Reset het project, schoon de voorwerplijst." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "schaal" -#~ msgid "motor" -#~ msgstr "motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "onderkant" -#~ msgid "torque" -#~ msgstr "koppel" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "paars" -#~ msgid "speed" -#~ msgstr "snelheid" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Herschaal coördinaten neer" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Motor koppel en snelheid lopen van 0 (uit) naar positieve getallen; de motor " -#~ "wordt geplaatst op het meest recent gecreeerde voorwerp." +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "klik om te openen" -#~ msgid "pin" -#~ msgstr "speld" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "microfoon invoer toonhoogte" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Speld een voorwerp vast zodat het niet kan vallen." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Configuratie" -#~ msgid "joint" -#~ msgstr "gewricht" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Beschrijving:" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Voeg twee voorwerpen samen (het meest recent aangemaakte en het voorwerp op " -#~ "punt x, y)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "dagboek" -#~ msgid "save as Physics activity" -#~ msgstr "bewaar als Natuurkunde activiteit" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "leeg afval" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Bewaar het project bij het Dagboek als Natuurkunde activiteit." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Schildpad tekent als die beweegt." -#~ msgid "gear" -#~ msgstr "versnelling" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Laden..." -#~ msgid "Add a gear object to the project." -#~ msgstr "Voeg een versnelling voorwerp toe aan het project." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Dagboek geluidsvoorwerp" -#~ msgid "density" -#~ msgstr "dichtheid" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Stop schildpad" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "Stel de dichtheid eigenschap in voor voorwerpen (dichtheid kan ieder " -#~ "positief getal zijn)." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Schildpad" -#~ msgid "friction" -#~ msgstr "wrijving" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "wijzigt de richting van het blokkenpalet" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Stel de wrijving eigenschap in voor voorwerpen (waarde 0 tot 1, waar 0 " -#~ "wrijvingsloos is en 1 sterke wrijving)." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "sla op in" -#~ msgid "bounciness" -#~ msgstr "stuiterbaarheid" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Verberg blokken" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Stel de stuiterbaarheid eigenschap in voor voorwerpen (waarde 0 tot 1, waar " -#~ "0 stuiterloos is en 1 sterk stuiteren)." +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Laad Python blok" -#~ msgid "dynamic" -#~ msgstr "dynamiek" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "getal" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Als dynamiek = 1, kan het voorwerp bewegen; als dynamiek = 0 , is het op een " -#~ "vaste positie." +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "of" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palet van WeDo blokken" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "presentatie sjabloon: puntenlijst" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "tilt sensor uitvoer: (-1 == geen tilt, 0 == tilt voorwaarts, 3 == tilt " -#~ "achterwaarts, 1 == tilt links, 2 == tilt rechts)" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identiteit operator gebruikt voor uitbreiding blokken" -#~ msgid "distance sensor output" -#~ msgstr "afstand sensor uitvoer" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Verklein blokken" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "stelt grootte van tekst in getekend door schildpad" -#~ msgid "returns the current value of Motor A" -#~ msgstr "geeft de huidige waarde van Motor A" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"houdt deze richtingwaarde van het schildpad vast (kan worden gebruikt in " +"plaats van nummerblok)" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "afbeelding" -#~ msgid "returns the current value of Motor B" -#~ msgstr "geeft de huidige waarde van Motor B" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"geeft waarde terug tussen minimum (bovenste) en maximum (onderste) waarden" -#~ msgid "set the value for Motor A" -#~ msgstr "zet de waarde voor Motor A" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "houdt deze penkleur (kan gebruikt worden in plaats van een nummerblok)" -#~ msgid "set the value for Motor B" -#~ msgstr "zet de waarde voor Motor B" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Toon palet" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palet van LEGO NXT blokken van motoren" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "bewaart een afbeelding in het Sugar Dagboek" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palet van LEGO NXT blokken van sensors" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Bewaar foto" -#~ msgid "touch" -#~ msgstr "aanraken" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "begin" -#~ msgid "ultrasonic" -#~ msgstr "ultrasoon" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "geeft Waar terug als hoop leeg is" -#~ msgid "light" -#~ msgstr "licht" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "beweeg schildpad vooruit" -#, fuzzy -#~ msgid "grey" -#~ msgstr "grijs" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "vooruit" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Controleer de verbinding met de baksteen." +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "mijn vakje" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "De waarde van macht moet zijn tussen -127 en 127." +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Account ID" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "" -#~ "Fout opgetreden controleer alle verbindingen en probeer opnieuw verbinding " -#~ "te maken." +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Selecteer blokken om te delen" -#~ msgid "NXT not found" -#~ msgstr "NXT niet gevonden" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "terug" -#~ msgid "refresh NXT" -#~ msgstr "ververs NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "stelt de schaal van de media in" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Zoek naar een verbonden NXT steen." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "houdt deze schaalwaarde" -#~ msgid "play tone" -#~ msgstr "speel toon" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "presentatie 1x1" -#~ msgid "frequency" -#~ msgstr "frequentie" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "presentatie 1x2" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Speel een toon op frequrntie gedurende tijd." +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "bovenste van benoembare actie stapel" -#~ msgid "port" -#~ msgstr "poort" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "slaat getalswaarde op in benoemde variabele" -#~ msgid "power" -#~ msgstr "macht" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logische OF operator" -#~ msgid "rotations" -#~ msgstr "omwentelingen" +#: 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 "microfoon invoer spanning" -#~ msgid "turn a motor" -#~ msgstr "draai een motor" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "lust een aangegeven aantal keren" -#, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "synchroniseer twee motoren" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Bewaren..." -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "synchroniseer twee motoren verbonden met POORT B en POORT C" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "roept Actie 2 stapel aan" -#~ msgid "PORT A" -#~ msgstr "PORT A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "zetxy" -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A van een steen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "titel y" -#~ msgid "PORT B" -#~ msgstr "PORT B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "titel x" -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B van een steen" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "vul scherm" -#~ msgid "PORT C" -#~ msgstr "PORT C" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "ander" -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C van een steen" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Opslaan als" -#~ msgid "start motor" -#~ msgstr "start motor" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "zet xy" -#~ msgid "Run a motor forever." -#~ msgstr "Draai motor voor altijd." +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "prullenbak" -#~ msgid "brake motor" -#~ msgstr "rem motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polair" -#~ msgid "Stop a specified motor." -#~ msgstr "Stop een opgegeven motor." +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "herhaal" -#~ msgid "reset motor" -#~ msgstr "herstel motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "wacht tot huidige video of audio gereed is" -#~ msgid "Reset the motor counter." -#~ msgstr "Herstel motor teller." +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Opslaan als afbeelding" -#~ msgid "motor position" -#~ msgstr "motor positie" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Bewerk" -#~ msgid "Get the motor position." -#~ msgstr "Verkrijg de motor positie." +#: 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 "microfoon invoerweerstand" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "bovenste van Actie 2 stapel" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 van de steen" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "deelt bovenste getalinvoer (teller) door onderste getalinvoer (noemer)" -#~ msgid "read" -#~ msgstr "lees" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#~ msgid "sensor" -#~ msgstr "sensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "drukt waarde af in status blok bij de onderkant van het scherm" -#~ msgid "Read sensor output." -#~ msgstr "Lees sensor uitvier." +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "begin met vullen" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "bevat resultaten van uitvraging-toetsnebordblok als ASCII" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 van de steen" +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# nl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "neerleggen" -#~ msgid "light sensor" -#~ msgstr "lichtsensor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"een programmeerbaar blok: gebruikt om geavanceerde meer-variabelen " +"wiskundige vergelijkingen toe te voegen, zoals sin(x+y+z)" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "herlaad alles" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 van de steen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "hallo" -#~ msgid "touch sensor" -#~ msgstr "aanraak sensor" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "SchildpadBlokken" -#~ msgid "distance sensor" -#~ msgstr "afstandsensor" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" +"Druk op de Stop Knop voor het maken van wijzigingen op je Schildpad Blokken " +"programma" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "Palet" -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 van de steen" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "Facebook muurpost" -#~ msgid "sound sensor" -#~ msgstr "geluid sensor" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "Installeer de Spraak Activiteit en probeer opnieuw." -#~ msgid "color sensor" -#~ msgstr "kleur sensor" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "Spaans" -#~ msgid "set light" -#~ msgstr "zet licht" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "Engels" -#~ msgid "Set color sensor light." -#~ msgstr "Zet kleur sensor light." +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "Sorry, ik begrijp niet waarover je vraagt." -#~ msgid "battery level" -#~ msgstr "accu niveau" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" +"Sorry, er is geen vrij geheugen meer om mijn brein te laden. Sluit andere " +"activiteiten en probeer opnieuw." -#, fuzzy -#~ msgid "Get battery level of the brick" -#~ msgstr "Lees accuniveau van steen." +#: turtleblocks.py:407 +msgid "About..." +msgstr "Over..." -#~ msgid "HIGH" -#~ msgstr "HOOG" +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "pas LED intensiteit aan tussen 0 en 255" -#~ msgid "LOW" -#~ msgstr "LAAG" +#~ msgid "returns the ambient light level" +#~ msgstr "geeft het omgevingslichtniveau" -#~ msgid "INPUT" -#~ msgstr "INVOER" +#~ msgid "returns the ambient temperature" +#~ msgstr "geeft de omgevingstemperatuur" -#~ msgid "OUTPUT" -#~ msgstr "UITVOER" +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "geeft een 0 of 1 afhankelijk van de hoek van de sensor" -#~ msgid "PWM" -#~ msgstr "PWM" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "schakelt tussen 0 en 1, de frequentie hangt af van de trilling" -#~ msgid "SERVO" -#~ msgstr "SERVO" +#~ msgid "grayscale" +#~ msgstr "grijsschaal" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "FOUT: Controleer de Arduino en het nummer van de poort." +#~ msgid "ambient light" +#~ msgstr "omgevingslicht" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "FOUT: Waarde moet zijn een getal van 0 tot 255." +#~ msgid "magnetic induction" +#~ msgstr "magnetische inductie" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "FOUT: Waarde moet zijn óf HOOG óf LAAG." +#~ msgid "vibration" +#~ msgstr "trilling" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "FOUT: De nodus moet zijn INVOER, UITVOER, PWM of SERVO." +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "beweeg de Butia robot de voorgedefinieerde afstand vooruit" -#~ msgid "pin mode" -#~ msgstr "pin modus" +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "beweeg de Butia robot de voorgedefinieerde afstand achteruit" -#~ msgid "mode" -#~ msgstr "modus" +#~ msgid "turn Butia" +#~ msgstr "draai Butia" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Selecteer de pin functie (INVOER, UITVOER, PWM, SERVO)." +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "draai de Butia robot x graden" -#~ msgid "analog write" -#~ msgstr "analoog schrijven" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "geeft voorwerpgrijs niveau als getal tussen 0 en 1023" -#~ msgid "Write analog value in specified port." -#~ msgstr "Schrijf analoge waarde in aangegeven poort." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "geeft omgevingslichtniveau als getal tussen 0 en 1023" -#~ msgid "analog read" -#~ msgstr "analoog lezen" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "geeft omgevingstemperatuur als een getal tussen 0 en 255" #~ 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." +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgstr "" -#~ "Lees waarde van analoge poort. Waarde mag zijn tussen 0 en 1023. Gebruik " -#~ "Vref om spanning te bepalen. Voor USB, volt=((lees)*5)/1024) ongeveer." - -#~ msgid "digital write" -#~ msgstr "digitaal schrijven" - -#~ msgid "Write digital value to specified port." -#~ msgstr "Schrijf digitale waarde naar aangegeven poort." - -#~ msgid "digital read" -#~ msgstr "digitaal lezen" - -#~ msgid "Read value from digital port." -#~ msgstr "Lees waarde van digitale poort." - -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Zet HOOG waarde voor digitale poort." - -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Configureer Arduino poort voor digitale invoer." +#~ "geeft de afstand van het voorwerp voor de sensor als een getal tussen 0 " +#~ "en 255" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Configureer Arduino poort om servo te besturen." - -#~ msgid "Set LOW value for digital port." -#~ msgstr "Zet LAAG waarde voor digitale poort." - -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Configureer Arduino poort voor digitale uitvoer." - -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Configureer Arduino poort voor PWM (pulsbreedte modulatie)." - -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palet van WeDo blokken" +#~ msgid "" +#~ "A Logo-inspired turtle that draws colorful pictures with snap-together " +#~ "visual programming blocks" +#~ msgstr "" +#~ "Een Lgog-geïnspireerd schildpad die kleurrijke plaatjes tekent met " +#~ "samenklik visueel programmeerblokken." #, fuzzy -#~ msgid "samples" -#~ msgstr "Voorbeelden" +#~ msgid "grey" +#~ msgstr "grijs" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" #~ "zet de snelheid van de Butia motoren als een waarde tussen 0 en 1023, " #~ "doorgegeven als een argument" @@ -2901,10 +3814,11 @@ msgstr "Project opslaan?" #, fuzzy #~ msgid "" -#~ "returns the object gray level encountered him as a number between 0 and 1023" -#~ msgstr "" -#~ "geeft de waargenomen voorwerp grijswaarde terug als een nummer tussen 0 en " +#~ "returns the object gray level encountered him as a number between 0 and " #~ "1023" +#~ msgstr "" +#~ "geeft de waargenomen voorwerp grijswaarde terug als een nummer tussen 0 " +#~ "en 1023" #~ msgid "activity count" #~ msgstr "aantal activiteiten" @@ -3008,10 +3922,11 @@ msgstr "Project opslaan?" #~ msgid "restore last" #~ msgstr "herlaad laatste" -#~ 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 "" -#~ "een programmeerbaar blok: gebruikt om geavanceerde wisk vergelijkingen toe " -#~ "te voegen, zoals sin(x)" +#~ "een programmeerbaar blok: gebruikt om geavanceerde wisk vergelijkingen " +#~ "toe te voegen, zoals sin(x)" #~ msgid "blocks" #~ msgstr "blokken" @@ -3024,7 +3939,8 @@ msgstr "Project opslaan?" #~ msgid "holds current text color (can be used in place of a number block)" #~ msgstr "" -#~ "behoudt deze tekst kleur (kan worden gebruikt in plaats van een nummerblok)" +#~ "behoudt deze tekst kleur (kan worden gebruikt in plaats van een " +#~ "nummerblok)" #~ msgid "picture top" #~ msgstr "afbeelding bovenin" @@ -3070,7 +3986,8 @@ msgstr "Project opslaan?" #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "" -#~ "behoudt deze tekstgrootte (kan worden gebruikt in plaats van een nummerblok)" +#~ "behoudt deze tekstgrootte (kan worden gebruikt in plaats van een " +#~ "nummerblok)" #~ msgid "extras" #~ msgstr "extra's" diff --git a/po/pa.po b/po/pa.po index 967735f..3f1ab83 100644 --- a/po/pa.po +++ b/po/pa.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# pa.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pa.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pa.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pa.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/pap.po b/po/pap.po index 8c9df76..f1b7dd1 100644 --- a/po/pap.po +++ b/po/pap.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,539 +43,1711 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -#, fuzzy -msgid "Palette of turtle commands" -msgstr "palèt di komandonan pa tortuga" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "Dilanti" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:132 -#, fuzzy -msgid "moves turtle forward" -msgstr "move turtuga pa dilanti" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "Bèk" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "move turtuga bai patras" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "Limpia" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "limpia e pantaya y start e turtuga di nobo" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "robes" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:166 -#, fuzzy -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "bira e turtuga contrali di oloshi (huki den grado)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "drechi" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:178 -#, fuzzy -msgid "turns turtle clockwise (angle in degrees)" -msgstr "bira e turtuga direkshon di oloshi (huki den grado)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arko/bog" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "huki" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radio" +#: taextras.py:86 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 "resistensia" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "move turtuga kantu di un boog" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "instala xy" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "haltura" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "hanchura" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -#, fuzzy +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -"move turtuga na posishon xcor, ycor; (0, 0) ta den e centro di e pantaya." -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "instala titulo" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 #, fuzzy -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "instalá e direkshon di e turtuga (0 ta tòp di e pantaya.)" +msgid "density" +msgstr "identidat" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"mantené balor kordinado-x aktual di e turtuga (por wòrdú huza na luga di un " -"blòk di number)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:274 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -"mantené balor kordinado-y aktual di e turtuga (por wordu huza na luga di un " -"blòk di number)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "titulo" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:278 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." msgstr "" -"mantené balor direkshon aktual di e turtuga (por wordu huza na luga di un " -"blók di number)" -#: TurtleArt/tabasics.py:282 -#, fuzzy -msgid "Palette of pen commands" -msgstr "palèt di komandonan pa pèn" +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "Jena pantaja" +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "kóló" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "sombra" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "drechi" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "jena e fondo ku ( kóló, sombra)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "sonido" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:320 +msgid "grey" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "instala kóló" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -#, fuzzy -msgid "sets color of the line drawn by the turtle" -msgstr "instala kóló di e linia dibuga ku e turtuga" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "instala sombra" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -#, fuzzy -msgid "sets shade of the line drawn by the turtle" -msgstr "instala sombra di e linia dibuga ku e turtuga" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -#: TurtleArt/tabasics.py:340 -#, fuzzy -msgid "sets gray level of the line drawn by the turtle" -msgstr "instala sombra di e linia dibuga ku e turtuga" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" msgstr "" -"mantene kóló aktual di pen ( por wordu husa na luga di un kuadrá di number)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "mantane e sombra di e pèn" +#: taextras.py:329 +msgid "NXT not found" +msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" -msgstr "mantene balor di skal (por wordu huza oa luga di un blók di number)" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "Pen ariba" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -#, fuzzy -msgid "Turtle will not draw when moved." -msgstr "turtuga no ta pinta si mové" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pen abou" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -#, fuzzy -msgid "Turtle will draw when moved." -msgstr "turtuga ta pinta si mové" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "instala tamánjo di pen" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -#, fuzzy -msgid "sets size of the line drawn by the turtle" -msgstr "instala tamaño di e liñaá pinta ku e morkoi" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" +#: taextras.py:337 +msgid "Get the name of a brick." msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:338 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" +#: taextras.py:339 +msgid "frequency" msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "tamánjo di pen" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" msgstr "" -"mantene tamaño aktual di pen ( por wordu husa na luga di un kuadrá di " -"number)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "palèt di pen di koló" +#: taextras.py:344 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "kòrá" +#: taextras.py:345 +msgid "power" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "oraño" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "hel" +#: taextras.py:348 +msgid "turn a motor" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "bèrdè" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cyan" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blou" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "lila" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArt/tabasics.py:453 -#, fuzzy -msgid "white" -msgstr "tanten/mientras" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "Bèk" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "instala color di teksto" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArt/tabasics.py:463 -#, fuzzy -msgid "sets color of text drawn by the turtle" -msgstr "instala kóló di e linia dibuga ku e turtuga" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "instala tamánjo di teksto" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArt/tabasics.py:474 -#, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "instala midí di e linia dibuga ku e turtuga" +#: taextras.py:358 +msgid "start motor" +msgstr "" -#: TurtleArt/tabasics.py:557 +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 #, fuzzy -msgid "Palette of numeric operators" -msgstr "palèt operado pa number" +msgid "read" +msgstr "kòrá" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "mas" +#: taextras.py:370 +msgid "sensor" +msgstr "" -#: TurtleArt/tabasics.py:567 +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 #, fuzzy -msgid "adds two alphanumeric inputs" -msgstr "agrega dos introdukshon numériko" +msgid "mode" +msgstr "mod" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "menos/kita" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "déskonta introdukshon mumériko abou for di introdukshon mumériko ariba" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "multipliká" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "balor" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplika dos introdukshon mumériko" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "parti" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:424 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"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 "" -"parti tòp introdukshon numériko (tèler) den bòm introdukshon numériko " -"(denominadó)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identidat" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identidat operadonan husa pa ekspanshon di kuadrá" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modular (restu) operador" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" +#: taextras.py:430 +msgid "Set HIGH value for digital port." msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "vierkantswortel" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: TurtleArt/tabasics.py:639 -#, fuzzy -msgid "calculates square root" -msgstr "kalkula raís kuadrá" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "random" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "max" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: TurtleArt/tabasics.py:650 +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 #, fuzzy -msgid "returns random number between minimum (top) and maximum (bottom) values" +msgid "samples" msgstr "" -"returna kale number entre minimo (banda robes) i maksimo (banda drechi) " -"balor" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-#\n" +"Mònster" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "number" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "husa komo introdukshon mumériko den operadonan matemátiko" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "mas grandi ku" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logiko mas grandi-ku adaptadó" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "menos ku" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logiko menos-ku adaptadó" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "igual" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logiko Igual-na adaptadó" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "no" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logiko NO adaptadó" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "i" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logiko Y adaptadó" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "òf" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logiko OF adaptadó" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Título" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "hel" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "mustra kordinantenan polar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "limpia FILO (first-in-last-out heap)" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"Operador si- e ora ei ku ta usa operadornan boolean di e palèt di númbernan" + +#: TurtleArt/tabasics.py:812 #, fuzzy -msgid "Palette of flow operators" -msgstr "palèt di operador di flow" +msgid "jogs stack right" +msgstr "jog stack man drechi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Objecto di media Sugar Journal" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "kaha 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "kaha 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Paso" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplika dos introdukshon mumériko" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Mustra/skonde blòki" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Skonde palete" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +#, fuzzy +msgid "Sugar Journal video object" +msgstr "Objecto oudio Sugar Journal" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cyan" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor di banda drechi di pantaya" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +#, fuzzy +msgid "Palette of extra options" +msgstr "palet pa optión ekstra" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "titulo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "warda e imágen di turtuga komo map di e diario di Sugar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +#, fuzzy +msgid "draws text or show media from the Journal" +msgstr "tou teksto of show media for di Journal" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blou" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "mustra kordinantenan di Cartesian" + +#: TurtleArt/tabasics.py:820 +#, fuzzy +msgid "jogs stack down" +msgstr "jog stack abou" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modular (restu) operador" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "abou" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "warda SVG" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "ehekuta e código den e módulo tamyblock.py den e Journal" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pen abou" #: TurtleArt/tabasics.py:743 msgid "wait" msgstr "warda" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "pousa e proseshon di e programa den un kantidat di sekònde spesifiká" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "kaha" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "pa semper" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#, fuzzy +msgid "invokes named action stack" +msgstr "aplá akshon yamá stack" -#: TurtleArt/tabasics.py:758 +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "akshon" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 #, fuzzy -msgid "loops forever" -msgstr "las pas semper" +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operador si-e ora ei- sinó ku ta usa operadornan boolean di e palèt di " +"númbernan" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "ripití" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variabel 2 (balor numériko)" -#: TurtleArt/tabasics.py:770 +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "parti" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "nòmber di imágen" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "tanten/mientras" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "hanchura di kèimas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 #, fuzzy -msgid "loops specified number of times" -msgstr "las spesifika barios bes" +msgid "empty heap?" +msgstr "monton bashi" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "si" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "variabel nombrá (balor numériko )" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "despues" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "siguiente" #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "si ora" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "instala tamánjo di pen" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "presentashon patronchi: selekta opheto Journal (no déskripshon)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "te ora ku" + +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "kita e artíkulonan for di trash bin permanentemente" + +#: TurtleArt/tabasics.py:958 +#, fuzzy +msgid "top of Action 1 stack" +msgstr "tòp di akshon 1 stack" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +#, fuzzy +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"Operador si- e ora ei ku ta usa operadornan boolean di e palèt di númbernan" +"un blòki programabel: usá pa agregá single-variable matemátika, por ehèmpel, " +"sin(x)" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "sinó" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#, fuzzy +msgid "Palette of flow operators" +msgstr "palèt di operador di flow" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "si no" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "tòp di e pila doblá" #: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 msgid "if-then-else operator that uses boolean operators from Numbers palette" @@ -558,45 +1755,377 @@ msgstr "" "operador si-e ora ei- sinó ku ta usa operadornan boolean di e palèt di " "númbernan" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "mantane e sombra di e pèn" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "instala titulo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#, fuzzy +msgid "declutters canvas by hiding blocks" +msgstr "drecha e tela dor di skonde blòkinan" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + #: TurtleArt/tabasics.py:811 msgid "horizontal space" msgstr "espasio horizontal" -#: TurtleArt/tabasics.py:812 -#, fuzzy -msgid "jogs stack right" -msgstr "jog stack man drechi" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "balor di string" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "espasio vertikal" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Mi no sa kon ta hasi'é" -#: TurtleArt/tabasics.py:820 +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "instala tamánjo di teksto" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "presentashon patronchi: selekta kuater opheto Journal" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Mira" + +#: TurtleArt/tabasics.py:340 #, fuzzy -msgid "jogs stack down" -msgstr "jog stack abou" +msgid "sets gray level of the line drawn by the turtle" +msgstr "instala sombra di e linia dibuga ku e turtuga" #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "stop akshon" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "bèrdè" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "sombra" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "jena e fondo ku ( kóló, sombra)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "warda imágen" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "altura di tono" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Subi e skala di kordinantenan" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "Pen ariba" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "oraño" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "pousa e proseshon di e programa den un kantidat di sekònde spesifiká" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +#, fuzzy +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "" +"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "despues" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "no" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "si no" + #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "stòp e akshon/proseso aktual" -#: TurtleArt/tabasics.py:838 +#: TurtleArt/tabasics.py:178 #, fuzzy -msgid "Palette of variable blocks" -msgstr "palèt pa kuadrá variabel" +msgid "turns turtle clockwise (angle in degrees)" +msgstr "bira e turtuga direkshon di oloshi (huki den grado)" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" +msgstr "mantene balor di skal (por wordu huza oa luga di un blók di number)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor di e pantaya banda robes" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Reset e tamaño blòki" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "Turtuga" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "mustra siguiente palèt" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "skonde blòkinan" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logiko menos-ku adaptadó" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "restourá tur e blòkinan for di trash bin" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Warda" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "warda den kaha 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "warda den kaha 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "skonde e Sugar toolbars" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"mantené balor kordinado-x aktual di e turtuga (por wòrdú huza na luga di un " +"blòk di number)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "print" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Warda komo Logo" + +#: TurtleArt/tabasics.py:317 +#, fuzzy +msgid "sets color of the line drawn by the turtle" +msgstr "instala kóló di e linia dibuga ku e turtuga" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "instala color di teksto" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "number" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "konsulta teklado" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "tòp" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Kordinantenan Certesian" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "instala skaal" + +#: TurtleArt/tabasics.py:453 +#, fuzzy +msgid "white" +msgstr "tanten/mientras" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "konekta akshon na toolbar run buttons" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "haltura di kèimas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "presentashon 2x1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "menos/kita" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "i" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "tòp di e pila doblabel" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "komo entrada" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"mantene tamaño aktual di pen ( por wordu husa na luga di un kuadrá di number)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "instala kóló" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "karga mi blòki" + +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "palèt di komandonan pa pèn" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +#, fuzzy +msgid "shows values in FILO (first-in last-out heap)" +msgstr "" +"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +#, fuzzy +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operador si-e ora ei- sinó ku ta usa operadornan boolean di e palèt di " +"númbernan" + +#: turtleblocks.py:363 +msgid "File" +msgstr "File" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logiko NO adaptadó" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor di fondo di pantaya" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "presentashon patronchi: selekta opheto Journal (ku déskriphon)" + +#: TurtleArt/tabasics.py:557 +#, fuzzy +msgid "Palette of numeric operators" +msgstr "palèt operado pa number" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "multipliká" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "pa semper" + +#: TurtleArt/tabasics.py:329 +#, fuzzy +msgid "sets shade of the line drawn by the turtle" +msgstr "instala sombra di e linia dibuga ku e turtuga" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "portrèt/snapshot" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "Limpia" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "presentashon patronchi: selekta dos opheto Journal" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Amplia blòkinan" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Pantaya kompleto" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "Mustra" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -608,73 +2137,552 @@ msgstr "konekta akshon na toolbar run buttons" msgid "text" msgstr "teksto" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "balor di string" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "random" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "akshon" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logiko mas grandi-ku adaptadó" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "tòp eligibel di akshon stack" +#: TurtleArt/tabasics.py:166 +#, fuzzy +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "bira e turtuga contrali di oloshi (huki den grado)" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#: TurtleArt/tabasics.py:454 #, fuzzy -msgid "invokes named action stack" -msgstr "aplá akshon yamá stack" +msgid "black" +msgstr "Bèk" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "warda den kaha 1" +#: TurtleArt/tabasics.py:639 +#, fuzzy +msgid "calculates square root" +msgstr "kalkula raís kuadrá" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"mantené balor kordinado-y aktual di e turtuga (por wordu huza na luga di un " +"blòk di number)" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "tòp" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "mas grandi ku" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Ousilio" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "Skohe e turtuga ku bo ta bai komandá" + +#: TurtleArt/tabasics.py:463 +#, fuzzy +msgid "sets color of text drawn by the turtle" +msgstr "instala kóló di e linia dibuga ku e turtuga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "keyboard" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arko/bog" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radio" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Kordinantenan Polar" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "instala sombra" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logiko Y adaptadó" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Run" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "mustra monton" + +#: TurtleArt/tabasics.py:217 +#, fuzzy +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "instalá e direkshon di e turtuga (0 ta tòp di e pantaya.)" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "entrada di volúmen di e mikrofón" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Título:" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "restourá tur e blòkinan for di trash bin" + +#: TurtleArt/tabasics.py:838 +#, fuzzy +msgid "Palette of variable blocks" +msgstr "palèt pa kuadrá variabel" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "husa komo introdukshon mumériko den operadonan matemátiko" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "presentashon 2x2" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variabel 1 (balor numériko)" + +#: TurtleArt/tabasics.py:567 +#, fuzzy +msgid "adds two alphanumeric inputs" +msgstr "agrega dos introdukshon numériko" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "igual" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "sinó" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "no ta gusta" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "restourá e blòkinan skondé" + +#: TurtleArt/tabasics.py:379 +#, fuzzy +msgid "Turtle will not draw when moved." +msgstr "turtuga no ta pinta si mové" + +#. #-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "pop" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "tamánjo di pen" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "move turtuga kantu di un boog" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logiko Igual-na adaptadó" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "palèt di pen di koló" #: TurtleArt/tabasics.py:888 #, fuzzy msgid "stores numeric value in Variable 1" msgstr "warda balor numériko den variabel 1" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "warda den kaha 2" - #: TurtleArt/tabasics.py:901 #, fuzzy msgid "stores numeric value in Variable 2" msgstr "warda balor numériko den variabel 2" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "kaha 1" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "move turtuga bai patras" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variabel 1 (balor numériko)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor di e tòp di pantaya" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "kaha 2" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Mustra blòkkinan" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variabel 2 (balor numériko)" +#: pysamples/grecord.py:219 +#, fuzzy +msgid "save" +msgstr "Warda" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "kóló" + +#: TurtleArt/tabasics.py:398 +#, fuzzy +msgid "sets size of the line drawn by the turtle" +msgstr "instala tamaño di e liñaá pinta ku e morkoi" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Habri" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientashon" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"un blòki programabel: usá pa agregá multi-variable matemátika, por ehèmpel, " +"sin(x)sqrt(x*x+y*y)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "si" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#, fuzzy +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"move turtuga na posishon xcor, ycor; (0, 0) ta den e centro di e pantaya." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Pitòn" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stòp" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "akshon 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "akshon 1" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopia" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Pega" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "no ta transferí na" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "monton bashi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#, fuzzy +msgid "pops value off FILO (first-in last-out heap)" +msgstr "" +"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Limpia" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +#, fuzzy +msgid "Palette of presentation templates" +msgstr "palèt pa presentashon di patronchi" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "huki" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "oudio" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Instrumentonan" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "robes" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "komentario" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "déskonta introdukshon mumériko abou for di introdukshon mumériko ariba" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"signo di enterogashon pa introdukshon di keyboard (resultado warda den blóki " +"keyboard)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesian" + +#: 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 "vòltahe" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "limpia e pantaya y start e turtuga di nobo" + +#: TurtleArt/tabasics.py:977 +#, fuzzy +msgid "invokes Action 1 stack" +msgstr "apelá akshon 1 stack" + +#: TurtleArt/tabasics.py:123 +#, fuzzy +msgid "Palette of turtle commands" +msgstr "palèt di komandonan pa tortuga" + +#: TurtleArt/tabasics.py:758 +#, fuzzy +msgid "loops forever" +msgstr "las pas semper" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "mustra aliniá" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Arte di turtuga" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projecto" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debug" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "espasio vertikal" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "menos ku" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "vierkantswortel" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Adaptá skala di kordinantenan" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "Mustra blòkinan" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Deskripshon di fèlt Sugar Journal" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "lista ku puntonan di presentashon" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "pone un komentario na bo kodíko" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "skaal" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "abou" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "lila" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Baha e skala di kordinantenan" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "Klek pa habri" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "entrada di mikrofón pa altura di tono" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "diaro" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "Kita e restantenan" + +#: TurtleArt/tabasics.py:388 +#, fuzzy +msgid "Turtle will draw when moved." +msgstr "turtuga ta pinta si mové" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Objecto oudio Sugar Journal" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Stòp turtuga" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Turtuga" + +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "kambia e orientashon di e palèt di blòkinan" #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "waarda den" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "kaha" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Skonde blóks" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "balor" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "mas" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "òf" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +#, fuzzy +msgid "presentation template: list of bullets" +msgstr "presentashon patronchi: shete bala di skopèt" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identidat operadonan husa pa ekspanshon di kuadrá" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Redusí blòkinan" + +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "instala midí di e linia dibuga ku e turtuga" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"mantené balor direkshon aktual di e turtuga (por wordu huza na luga di un " +"blók di number)" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "imágen" + +#: TurtleArt/tabasics.py:650 +#, fuzzy +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"returna kale number entre minimo (banda robes) i maksimo (banda drechi) balor" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"mantene kóló aktual di pen ( por wordu husa na luga di un kuadrá di number)" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Mustra palèt" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "warda e imágen na e diario di Sugar" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Warda portrèt" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" + +#: TurtleArt/tabasics.py:132 +#, fuzzy +msgid "moves turtle forward" +msgstr "move turtuga pa dilanti" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "Dilanti" #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 @@ -683,125 +2691,217 @@ msgstr "balor" msgid "my box" msgstr "mi vak" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "Bèk" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 #, fuzzy -msgid "stores numeric value in named variable" -msgstr "warda balor numériko den nomber variabel" +msgid "sets the scale of media" +msgstr "instala e skal di media" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "variabel nombrá (balor numériko )" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "mantene e balor di e skala aktual" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "akshon 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "presentashon 1x1" -#: TurtleArt/tabasics.py:958 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "presentashon 1x2" + +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "tòp eligibel di akshon stack" + +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 #, fuzzy -msgid "top of Action 1 stack" -msgstr "tòp di akshon 1 stack" +msgid "stores numeric value in named variable" +msgstr "warda balor numériko den nomber variabel" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "akshon 2" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logiko OF adaptadó" -#: TurtleArt/tabasics.py:967 +#: 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 #, fuzzy -msgid "top of Action 2 stack" -msgstr "tòp di akshon 2 stack" +msgid "microphone input voltage" +msgstr "entrada di volúmen di e mikrofón" -#: TurtleArt/tabasics.py:977 +#: TurtleArt/tabasics.py:770 #, fuzzy -msgid "invokes Action 1 stack" -msgstr "apelá akshon 1 stack" +msgid "loops specified number of times" +msgstr "las spesifika barios bes" #: TurtleArt/tabasics.py:987 #, fuzzy msgid "invokes Action 2 stack" msgstr "apelá akshon 2 stack" -#: TurtleArt/tabasics.py:995 -msgid "trash" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "instala xy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "título y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "título x" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "Jena pantaja" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "instala xy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polar" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "ripití" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Warda komo imagen" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Edita" + +#: TurtleArt/tabasics.py:967 +#, fuzzy +msgid "top of Action 2 stack" +msgstr "tòp di akshon 2 stack" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" msgstr "" +"parti tòp introdukshon numériko (tèler) den bòm introdukshon numériko " +"(denominadó)" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "Kita e restantenan" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "max" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "kita e artíkulonan for di trash bin permanentemente" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "print balor den blóki státus den fondo di e pantaya" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "mantene resultado di signo di blóki enterogashon-keyboard" + +#. #-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pap.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "Primi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +#, fuzzy +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"un blòki programabel: usá pa agregá multi-variable matemátika, por ehèmpel, " +"sin(x+y+z)" #: TurtleArt/tabasics.py:1004 msgid "restore all" msgstr "restourá tur" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "restourá tur e blòkinan for di trash bin" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "drechi" + +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" +#: TurtleArt/tabasics.py:337 +msgid "set gray" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Título" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Stòp turtuga" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Mustra blòkkinan" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Skonde blóks" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "no ta transferí na" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "kòrá" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Mi no sa kon ta hasi'é" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identidat" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "no ta gusta" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "komo entrada" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "mustra siguiente palèt" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "kambia e orientashon di e palèt di blòkinan" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "" + +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" #: TurtleArt/tautils.py:196 msgid "Load..." @@ -811,19 +2911,6 @@ msgstr "" msgid "Save..." msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "Klek pa habri" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientashon" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "siguiente" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -839,33 +2926,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Arte di turtuga" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "imágen" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Warda komo Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Warda komo imagen" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "portrèt/snapshot" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Warda portrèt" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -875,104 +2935,20 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Mustra palèt" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Skonde palete" - -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Baha e skala di kordinantenan" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Subi e skala di kordinantenan" - -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Edita" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Mira" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projecto" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopia" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Pega" - -#: TurtleArtActivity.py:591 -#, fuzzy -msgid "Restore blocks from trash" -msgstr "restourá tur e blòkinan for di trash bin" - -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Pantaya kompleto" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Kordinantenan Certesian" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Kordinantenan Polar" - #: TurtleArtActivity.py:601 TurtleArtActivity.py:753 msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Amplia blòkinan" - -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Redusí blòkinan" - #: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 #: TurtleArtActivity.py:832 msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Limpia" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Run" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Paso" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Ousilio" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stòp" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -993,26 +2969,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -1084,11 +3040,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "kóló" - #: 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 @@ -1117,10 +3068,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Título:" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1159,11 +3106,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "sonido" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1174,29 +3116,6 @@ msgstr "" msgid "loudness" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "entrada di volúmen di e mikrofón" - -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "altura di tono" - -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "entrada di mikrofón pa altura di tono" - -#: 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 "resistensia" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1204,35 +3123,11 @@ msgstr "resistensia" msgid "microphone input resistance" msgstr "" -#: 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 "vòltahe" - -#: 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 -#, fuzzy -msgid "microphone input voltage" -msgstr "entrada di volúmen di e mikrofón" - #: plugins/camera_sensor/camera_sensor.py:67 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1264,127 +3159,14 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "tanten/mientras" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -#, fuzzy -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operador si-e ora ei- sinó ku ta usa operadornan boolean di e palèt di " -"númbernan" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "te ora ku" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#, fuzzy -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operador si-e ora ei- sinó ku ta usa operadornan boolean di e palèt di " -"númbernan" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "tòp" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "tòp di e pila doblabel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "diaro" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Objecto di media Sugar Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "oudio" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Objecto oudio Sugar Journal" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "Objecto oudio Sugar Journal" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Deskripshon di fèlt Sugar Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "Mustra" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -#, fuzzy -msgid "draws text or show media from the Journal" -msgstr "tou teksto of show media for di Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "mustra aliniá" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "instala skaal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -#, fuzzy -msgid "sets the scale of media" -msgstr "instala e skal di media" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "warda imágen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "nòmber di imágen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "warda e imágen na e diario di Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "warda SVG" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "warda e imágen di turtuga komo map di e diario di Sugar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "skaal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "mantene e balor di e skala aktual" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 msgid "media wait" msgstr "" @@ -1475,25 +3257,6 @@ msgstr "" msgid "returns mouse y coordinate" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "konsulta teklado" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"signo di enterogashon pa introdukshon di keyboard (resultado warda den blóki " -"keyboard)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "keyboard" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "mantene resultado di signo di blóki enterogashon-keyboard" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 msgid "read pixel" msgstr "" @@ -1510,87 +3273,15 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -#, fuzzy -msgid "Palette of extra options" -msgstr "palet pa optión ekstra" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "Primi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -#, fuzzy -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "" -"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "mustra monton" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -#, fuzzy -msgid "shows values in FILO (first-in last-out heap)" -msgstr "" -"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "monton bashi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "limpia FILO (first-in-last-out heap)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "pop" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -#, fuzzy -msgid "pops value off FILO (first-in last-out heap)" -msgstr "" -"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "monton bashi" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "komentario" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "pone un komentario na bo kodíko" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "print" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "print balor den blóki státus den fondo di e pantaya" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 msgid "Python chr operator" msgstr "" @@ -1599,75 +3290,12 @@ msgstr "" msgid "Python int operator" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Pitòn" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -#, fuzzy -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"un blòki programabel: usá pa agregá single-variable matemátika, por ehèmpel, " -"sin(x)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"un blòki programabel: usá pa agregá multi-variable matemátika, por ehèmpel, " -"sin(x)sqrt(x*x+y*y)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -#, fuzzy -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"un blòki programabel: usá pa agregá multi-variable matemátika, por ehèmpel, " -"sin(x+y+z)" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653 msgid "Python block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "ehekuta e código den e módulo tamyblock.py den e Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesian" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "mustra kordinantenan di Cartesian" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "mustra kordinantenan polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "Turtuga" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "Skohe e turtuga ku bo ta bai komandá" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 msgid "turtle shell" @@ -1678,28 +3306,12 @@ msgstr "" msgid "put a custom 'shell' on the turtle" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "tòp di e pila doblá" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "karga mi blòki" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "instala xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1708,113 +3320,10 @@ msgstr "" msgid "selects a palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -#, fuzzy -msgid "Palette of presentation templates" -msgstr "palèt pa presentashon di patronchi" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "skonde blòkinan" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -#, fuzzy -msgid "declutters canvas by hiding blocks" -msgstr "drecha e tela dor di skonde blòkinan" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "Mustra blòkinan" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "restourá e blòkinan skondé" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "skonde e Sugar toolbars" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 msgid "list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "lista ku puntonan di presentashon" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -#, fuzzy -msgid "presentation template: list of bullets" -msgstr "presentashon patronchi: shete bala di skopèt" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "presentashon patronchi: selekta opheto Journal (no déskripshon)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "presentashon patronchi: selekta opheto Journal (ku déskriphon)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "presentashon patronchi: selekta kuater opheto Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "presentashon patronchi: selekta dos opheto Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor di e pantaya banda robes" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "abou" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor di fondo di pantaya" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "hanchura" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "hanchura di kèimas" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor di banda drechi di pantaya" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor di e tòp di pantaya" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "haltura" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "haltura di kèimas" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "título x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "título y" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 msgid "left x" msgstr "" @@ -1827,28 +3336,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "abou" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "presentashon 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "presentashon 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "presentashon 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "presentashon 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1876,20 +3363,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "tòp" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "Warda" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1923,14 +3400,6 @@ msgstr "" msgid "New" msgstr "" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Habri" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Warda" - #: turtleblocks.py:357 msgid "Save as" msgstr "" @@ -1939,34 +3408,6 @@ msgstr "" msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "File" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Adaptá skala di kordinantenan" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Reset e tamaño blòki" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Mustra/skonde blòki" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Instrumentonan" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debug" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Turtuga" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1979,26 +3420,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "density" -#~ msgstr "identidat" - -#, fuzzy -#~ msgid "light" -#~ msgstr "drechi" - -#, fuzzy -#~ msgid "read" -#~ msgstr "kòrá" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Mònster" - #~ msgid "then else" #~ msgstr "despues algu otro" @@ -2052,7 +3473,8 @@ msgstr "" #~ msgid "restore last" #~ msgstr "restourá e ú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 blòki programabel: usá pa agregá kalkulashon matemátika, por ehèmpel, " #~ "sin(x)" @@ -2151,10 +3573,11 @@ msgstr "" #~ "number)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" -#~ "un blòki programabel: agrega bo mes matematika comparabel den e blóki, pe., " -#~ "sin(x)" +#~ "un blòki programabel: agrega bo mes matematika comparabel den e blóki, " +#~ "pe., sin(x)" #~ msgid "pop value off FILO" #~ msgstr "kita balor for di FILO" diff --git a/po/pbs.po b/po/pbs.po index bf2909d..2d9d298 100644 --- a/po/pbs.po +++ b/po/pbs.po @@ -2,8 +2,21 @@ # 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 "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-04-03 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,708 +31,1610 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Nijang se lumei kad-er k'ua manague' ngunjiu' kumu'" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "D-uaja'" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Kumú' majau matsjau" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "vikia'aut ne kumu' nimia ma kutau" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "ma ngupeix" +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "vikia'aut pu kumú' nimia ma ngupeix" +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "matseiñ'" +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "vichiñ' ne kutau nak'ujuly' tsukuet vimiaik majau ne kumú'" +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "" + +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "" + +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "" + +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "" + +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "" + +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "" + +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "" + +#: taextras.py:79 +msgid "returns the gray level" +msgstr "" + +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:81 +msgid "returns the light level" +msgstr "" + +#: taextras.py:82 +msgid "returns the temperature" +msgstr "" + +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "" + +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "" -#: TurtleArt/tabasics.py:162 +#: taextras.py:87 +msgid "gpio" +msgstr "" + +#: taextras.py:88 +msgid "LED" +msgstr "" + +#: taextras.py:89 +msgid "button" +msgstr "" + +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "tsundué" + +#: taextras.py:91 taextras.py:356 +#, fuzzy +msgid "light" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"majaap\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"kuas" + +#: taextras.py:92 +msgid "temperature" +msgstr "" + +#: taextras.py:93 taextras.py:330 +#, fuzzy +msgid "distance" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"kuba'ap" + +#: taextras.py:94 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 "ne se lu'ujuñ manajap xikich'" + +#: taextras.py:95 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 "xikich' manajap" + +#: taextras.py:96 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:97 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:101 +msgid "" +"returns the battery charge in volts. If no motors present, it returns 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:105 +msgid "move Butia" +msgstr "" + +#: taextras.py:106 TurtleArt/tabasics.py:162 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 msgid "left" msgstr "meje'ep" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "vikia't pu kumú' nimia ngupeix (angelo en grados)" - #: TurtleArt/tabasics.py:174 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 msgid "right" msgstr "majaap" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "vikia't pu kumú' nimia ma kutau (angulo engrados)" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "ngulja'" +#: taextras.py:109 +#, fuzzy +msgid "stop Butia" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"ndama'ai Butia" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "ngumúu se liviuch' nui niñ'eje'" +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "ngube'ei" +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "vikia'aut pu kumú' lagu'ust' pu ngulja'" +#: taextras.py:113 +msgid "move the Butia robot forward" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "makeje' xy" +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:116 +msgid "turn the Butia robot at left" +msgstr "" + +#. #-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +#, fuzzy +msgid "right Butia" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"kuas Butia" + +#: taextras.py:119 +msgid "turn the Butia robot at right" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "" + +#: taextras.py:125 taextras.py:293 taextras.py:456 +msgid "pin" +msgstr "" + +#: taextras.py:126 taextras.py:457 +#, fuzzy +msgid "mode" +msgstr "mod" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "" + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "" + +#: taextras.py:129 taextras.py:460 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "liñjú" + +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "" + +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "" + +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:434 +msgid "HIGH" +msgstr "" + +#: taextras.py:134 taextras.py:469 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:135 taextras.py:436 +msgid "INPUT" +msgstr "" + +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "" + +#: taextras.py:137 taextras.py:435 +msgid "LOW" +msgstr "" + +#: taextras.py:138 taextras.py:472 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:139 taextras.py:437 +msgid "OUTPUT" +msgstr "" + +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "" + +#: taextras.py:141 +#, fuzzy +msgid "Butia" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"Butia" + +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "" + +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "" + +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:151 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:156 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:161 +msgid "follow" +msgstr "" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:163 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 "vanjial'" + +#: taextras.py:164 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:165 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:167 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:170 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:173 +msgid "get brightness" +msgstr "" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:175 +msgid "average color" +msgstr "" + +#: taextras.py:176 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:178 +msgid "x position" +msgstr "" + +#: taextras.py:179 +msgid "return x position" +msgstr "" + +#: taextras.py:180 +msgid "y position" +msgstr "" + +#: taextras.py:181 +msgid "return y position" +msgstr "" + +#: taextras.py:182 +msgid "pixels" +msgstr "" + +#: taextras.py:183 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "" + +#: taextras.py:191 +msgid "error in string conversion" +msgstr "" + +#. TRANS: Pattern detection is a plugin that allow detect signals +#. with the camera +#: taextras.py:197 +msgid "Pattern detection" +msgstr "" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "" + +#: taextras.py:199 +msgid "Returns True if the signal is in front of the camera" +msgstr "" + +#: taextras.py:200 +msgid "Distance to signal" +msgstr "" + +#: taextras.py:201 +msgid "Returns the distance of the signal to the camera in millimeters" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:209 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "" + +#. #-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +#, fuzzy +msgid "right SumBot" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"kuas SumBot" + +#: taextras.py:223 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:226 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:228 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:232 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:235 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:238 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:241 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:244 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:247 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:251 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:256 +msgid "update information" +msgstr "" + +#: taextras.py:257 +msgid "update information from the server" +msgstr "" + +#. #-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" + +#: taextras.py:263 +msgid "start polygon" +msgstr "" + +#: taextras.py:264 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:266 +msgid "add point" +msgstr "" + +#: taextras.py:267 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:269 +msgid "end polygon" +msgstr "" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:274 +#, fuzzy +msgid "triangle" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"ranju'umù" + +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +#, fuzzy +msgid "height" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"majax" + +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:279 +msgid "circle" +msgstr "" + +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:281 +msgid "rectangle" +msgstr "" + +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +#, fuzzy +msgid "width" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"nixi'i" + +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:285 +msgid "reset" +msgstr "" + +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:287 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "" + +#: taextras.py:290 +msgid "speed" +msgstr "" + +#: taextras.py:291 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:295 +msgid "joint" +msgstr "" + +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:298 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -"vikia't pu kumú' nimia xcor, ycor; (0,0) vanjiu' kiñkie mejep kutau " -"nak'ujuly'." -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "makeje' peuk manamá" +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "kiji'it peuk mane'ei pu kumú' (0 se maa kibia ne kutau nak'ujuly" +#: taextras.py:301 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "coorx" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:305 +#, fuzzy +msgid "density" +msgstr "" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"jui malep\n" +"#-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-#\n" +"vapu" + +#: taextras.py:306 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -"lumei peuk se ma nat'ei ma nanju sad-ia' x lumei ne kumu' (lania'at lakje " -"kujui nip manakje' rabe'en)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "coory" +#: taextras.py:308 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:309 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"lumei peuk se ma nat'ei nanju sad-ia' y lumei ne kumú' (lania'at lakje' " -"kujui nip manakje rabe'en)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "peuk manamaa" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:313 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "lumei kad-er vu'u' ne kumu' (lania'at make' kujui nip make' rabe'en)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Nijang se vupai re nde'ets kily'e" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "mane'ep ne kutau nak'ujuly'" +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. #-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" + +#: taextras.py:324 +msgid "WeDo" +msgstr "" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:327 +msgid "tilt" +msgstr "" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:333 +msgid "Motor A" +msgstr "" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:335 +msgid "Motor B" +msgstr "" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:350 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "xikjia'" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "lijiú" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "lijiu" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "viñee't pu kimviu'p lamejep (xikjia't, nixaú)" +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "tsundué" +#: taextras.py:361 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "makeje' xikjia'" +#: taextras.py:362 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "kiji'it ne xikjia' se mane'eima nad-es niñ'eje' ne kumu´" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "makeje' peuk lu'ue lijiú" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "kiji'it peuk ma vakja ne niñ'eje' se pu kumú' ve'es" +#: taextras.py:365 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "mamejep tsuntué" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "mamejep majau masau se tsundue ne niñ'eje se ve'es pu kumú'" +#: taextras.py:367 +msgid "NXT not found" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" msgstr "" -"lumei re xikjia' se chu' mani ne nde'ets kily'e (lania'at make' kijui ni " -"mvake rabe'en)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "lumei majau masau' xikjia' ne nde'ets kily'e" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:370 +msgid "Search for a connected NXT brick." msgstr "" -"lumei majau masau' se tsunduep ( lania'at lakje kujui nip manakje rabe'en)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "majáu ne nde'ets kil'e" +#: taextras.py:371 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Pu kumú' nip manaju'u natsjau sania' xi'iap se likia'aut." +#: taextras.py:372 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "mapuu' ne nde'ets kily'e" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Pu kumú' laju'u' latsjau lagueje' sania' xi'iap se likia'aut." +#: taextras.py:374 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "makeje' ngutue'p" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "makeje' ne nixi'ip pu niñ'eje' se vakeje' ne kumú'" +#: taextras.py:376 +msgid "play tone" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "mapúp mánee" +#: taextras.py:377 +msgid "frequency" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -"Mapup mane´p pu ranju'muu se me'ei mata'aun( make' se me'ei mane'ei ravú " -"kad-a)" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "maljung se mane'p" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#. TRANS: turn is the action +#: taextras.py:381 +msgid "" +"turn motor\n" +"\n" msgstr "" -"Vipiát pu ranjumuu se mata'aung nda nangaú viñe't (make' se mapup ravú kad-a" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "ngutue'p" +#: taextras.py:382 +#, fuzzy +msgid "port" +msgstr "Ndejei'" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:383 +msgid "power" msgstr "" -"lumei ne ngutue'p se chu' lumei ne nde'ets kily'e (lania'at make kujui nip " -"make' rabe'en)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Nijang se lumei xikjia' nde'ets kily'e" +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "nu'ua" +#: taextras.py:386 +msgid "turn a motor" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "ni'an" +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "niján'" +#: taextras.py:388 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "niñkijily'" +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "cian" +#: taextras.py:390 +msgid "PORT A" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "skusuá'" +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "niñkijiñ" +#: taextras.py:392 +msgid "PORT B" +msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "kad-uá" +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "numvúu" +#: taextras.py:394 +msgid "PORT C" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "makeje' kad-er xikjia' me'ets kily'e" +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "makeje' peuk vakja xikjia'p re kily'e se ndutsjau pu kumú'" +#: taextras.py:396 +msgid "" +"synchronize\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "makeje' mandap re kily'e me'ets" +#: taextras.py:397 +msgid "start motor" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "kiji'it ne ngutue'p re kily'e se ndutsjau pu kumú'" +#: taextras.py:398 +msgid "Run a motor forever." +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Nijang se lumei rabe'en make'" +#: taextras.py:399 +msgid "brake motor" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "masal' mamejep" +#: taextras.py:400 +msgid "Stop a specified motor." +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "lamejep lasalt nui ndejei' se lumei rabe'en" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:402 +msgid "reset motor" +msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "maleje'p" +#: taextras.py:403 +msgid "Reset the motor counter." +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" +#: taextras.py:404 +msgid "motor position" msgstr "" -"kia'ant pu ndejei' rabe'en se vanjiu' kimviu'p navé ndejei' rabe'en se " -"kimvia' njuts" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "vilyip lamejep" +#: taextras.py:405 +msgid "Get the motor position." +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "vilyip lamejep nui ndejei' rabe'en" +#: taextras.py:406 +msgid "PORT 1" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "masajaik" +#: taextras.py:407 +msgid "PORT 1 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +#: taextras.py:408 +#, fuzzy +msgid "read" +msgstr "nu'ua" + +#: taextras.py:409 +msgid "sensor" msgstr "" -"xajaik ne ndejei lumei rabe'en kuts'iñ'a (re rabe'en) kujaiñ'a ndejei' " -"rabe'en (malejeiñ re rabe'en)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "jui malep" +#: taextras.py:410 +msgid "Read sensor output." +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "katsjau malep vake' manalei kad-er limi" +#: taextras.py:411 +msgid "PORT 2" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:412 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "katsjau sad-ia' (lijeng)" +#: taextras.py:413 +msgid "light sensor" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:414 +msgid "gray sensor" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "nikji ne kiñui muu" +#: taextras.py:415 +msgid "PORT 3" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "vichjaut vipiat ne nikji kiñuimuu" +#: taextras.py:416 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "kensemakeje'" +#: taextras.py:417 +msgid "touch sensor" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "sau' lakejé" +#: taextras.py:418 +msgid "distance sensor" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "kutue' le'ei lakejé" +#: taextras.py:419 +msgid "PORT 4" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:420 +msgid "PORT 4 of the brick" msgstr "" -"vikiñ ne nabe'en semanakeje kiñyep se lu'ue lulejeñ sau' malejeiñ (kimvia) " -"maiñ kutue' lakeje (kujañ'a" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "rabe'en" +#: taextras.py:421 +msgid "sound sensor" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "make' nkjai' rabe'en se vat'ei vatsjau rabe'en" +#: taextras.py:422 +msgid "color sensor" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "mad-uajap navú" +#. 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:425 +msgid "set light" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "katsjau kapaat mad-uajap navú" +#: taextras.py:426 +msgid "Set color sensor light." +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "mana'p navú" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:428 +msgid "battery level" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "katsjau kapat mana'p navú" +#: taextras.py:429 +msgid "Get the battery level of the brick in millivolts" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "skad-a lulejem" +#. TRANS: PWM is pulse-width modulation +#: taextras.py:439 +msgid "PWM" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "katsjau kapat skad-a lulejem" +#: taextras.py:440 +msgid "SERVO" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "mut" +#: taextras.py:441 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "katsjau nip lupat" +#: taextras.py:442 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "y" +#: taextras.py:443 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "katsjau kad-ep lupat" +#: taextras.py:444 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "o" +#: taextras.py:445 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "katsjau nip kapat" +#: taextras.py:446 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Nijang se katsjau lumei kute" +#: taextras.py:447 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "mapee" +#: taextras.py:448 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "luma'ai se sania' lustjau na'a kad-a kusau rabe'en tijia'p" +#: taextras.py:449 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "Leem" +#: taextras.py:450 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "Meleix leem" +#: taextras.py:451 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "Maleix" +#: taextras.py:452 +msgid "Get the name of an Arduino." +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "vilyix re rabe'en se me'eje valeima" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:455 +msgid "pin mode" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "lik'iajam" +#: taextras.py:458 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "xi'iap" +#: taextras.py:459 +msgid "analog write" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "lik'iajam xi'iap" +#: taextras.py:461 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "katsjau lik'iajam kujui vake' ne nijang se lumei rabe'en" +#: taextras.py:462 +msgid "analog read" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "kad-ep" +#: taextras.py:463 +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 "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "lik'iajam kujui nipeuk" +#: taextras.py:465 +msgid "digital write" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:466 +msgid "Write digital value to specified port." msgstr "" -"katsjau lik'iajam-kujui-nipeuk vake't katsjau vupaat se lumei pu nijang " -"lumei kily'e" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "tejiap mameje'p" +#: taextras.py:467 +msgid "digital read" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "vikjiu't pu manajap nimia mamajap" +#: taextras.py:468 +msgid "Read value from digital port." +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "tejiap mamajap" +#: taextras.py:470 +msgid "Configure Arduino port for digital input." +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "vikjiu't pu manap nimia kupu'" +#: taextras.py:471 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "Mama'ai kanen vatsjau" +#: taextras.py:473 +msgid "Configure Arduino port for digital output." +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "luma'ai kanen vatsjau chu'maní" +#: taextras.py:474 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Nijang se lumei valei me'ets kad-er ndavai" +#. #-#-#-#-# pbs.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:479 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "ndapup" +#. TRANS: Programmable voltage output +#: taextras.py:481 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "kia'an ne ndavaí re ndaleiñ se me'e make'" +#: taextras.py:482 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "kily'e keich'" +#. TRANS: Square wave 1 voltage output +#: taextras.py:484 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "liñjup ne ngulje'e" +#: taextras.py:485 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "matsjau" +#. TRANS: Square wave 2 voltage output +#: taextras.py:487 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "stiñkjia'p ne manajap se vatsjaú nam'ejep ngunjiu'" +#: taextras.py:488 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "ma'ajau ne manajap matsjau mamejep ngunju'" +#. TRANS: Digital output level +#: taextras.py:490 +msgid "set OD1" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "makjaat kiñkie' nda ndajul'" +#: taextras.py:491 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "vikjiaat re rabe'en kupu se vania'at liviaun' nda" +#. TRANS: Input 1 voltage level +#: taextras.py:493 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "makjaat kiñkie' ndakjaat nui" +#: taextras.py:494 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "makjaat pu rabe'en kupu se vania'at liviau'n nui" +#. TRANS: Input 2 voltage level +#: taextras.py:497 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "ndakjaat nda" +#: taextras.py:498 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "lu'uei liviaun (kusau' rave'en)" +#. TRANS: Resistive sensor voltage level +#: taextras.py:501 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "ndakjaat nui" +#: taextras.py:502 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "se lu'uei liviaun' (kusau rabe'en)" +#: taextras.py:504 +msgid "capture" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "makjaat kiñkiep'" +#: taextras.py:505 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "ndakjaat" +#: taextras.py:506 +msgid "samples" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "liñjú" +#: taextras.py:507 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "ndakjaat lapai" +#. TRANS: MS is microseconds +#: taextras.py:509 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "vikjiat se liñju kupu se nam'ejep ngfunjiu' se vania'at liviaun," +#. TRANS: Analog input 1 voltage level +#: taextras.py:512 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "se lu'uei liviaun' mamejep ngunjiu' (kusau rabe'en)" +#: taextras.py:513 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "matsjau nda" +#. TRANS: Analog input 2 voltage level +#: taextras.py:515 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "kutap se ne manajap matsjau nda" +#: taextras.py:516 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "matsjau nui" +#. TRANS: Read input 1 voltage +#: taextras.py:518 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "kutap se ne manajap matsjau nui" +#: taextras.py:519 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "maka'an ne manajap se matsjau nda" +#. TRANS: Read input 2 voltage +#: taextras.py:521 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "maka'an ne manajap se matsjau nui" +#: taextras.py:522 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "xik'iai'" +#. TRANS: Read analog sensor input voltage +#: taextras.py:524 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "majian ngk'uix" +#: taextras.py:525 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "viviun lem re se lumei ndakal' ngk'uix" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:527 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "tsukue't matsjau" +#: taextras.py:528 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "vichjaut mi'ia re se lumei ngk'uix" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:530 +msgid "SQR2" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "matseiñ' mi'ia" +#: taextras.py:531 +msgid "read square wave 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "vikia'aut mi'ia re se xik'iai'" +#. TRANS: Read programmable voltage +#: taextras.py:533 +msgid "PVS" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Skad-a make' re se vu-ua me'ets" +#: taextras.py:534 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:535 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "tsukuet maleiñ ne se lijiu maka'an leet" #: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 #: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 @@ -733,341 +1648,692 @@ msgstr "Skad-a make' re se vu-ua me'ets" msgid "Title" msgstr "Ngunjiu' re kily'e me'ets" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Mama'ai ne kumu'" +#: 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 "Majau masau' re xikjiap' RGB ne ndake'eik leet maa pu manajap" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Ma'u'up re se vud-ua me'ets" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "niján'" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Ma'aung me'ets kily'e" +#: 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 "xikji'ik se lumei ne ndake'eik leet" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "nip nduju'u ndu'uets man'eiñ" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "lamejep pu se lu'uei lutsjau likiu' manei ravu x, y z ne manajap" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "nip la'u' peuk munu'uei mu nutsjau" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "katsjau lik'iajam kujui vake' ne nijang se lumei rabe'en" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "nip mvandaich'" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "vikjiu't pu manajap nimia mamajap" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "njai' ndejei'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "sania' se vania'at me'ets xiñi'iu xiñi'iu ne sugar" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "ma'u'up ne nijang likiu'uch'" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "ndakjaat nui" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "lavaun' kale nimia ne nijang se lumei re kily'e me'ets" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "ndakjaat nda" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Maveje'p..." +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Kigyuá" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Makjaat..." +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "vilyip lamejep nui ndejei' rabe'en" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "mates maseiñ" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "ma'aung nijang" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "masep peukma" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Majau tily'ajau" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "likiu'uch'" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "pu kauk tijiap ne tortugArte" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "sania' ndaka'an leet xiñi'iu xiñi'iu ne sugar" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "cian" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Maveje'p manu peuk me'ei matsjau" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "vikia'aut mi'ia re se xik'iai'" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "ma nuap laku'" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "peuk manamaa" + +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Skad-a make' se keich' kily'e" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "" +"vikjiat ravu se nichjaú pu kiñkie' kumu' nkjai' navú makjat ngk'uix SVG pu " +"xiñi'iu xiñi'iu matsjau kad-ua ninchaul" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "me'es matsjau ma'u'up kad-er se limi xiñi'iu xiñi'iu" + +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "ndaka'an let" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "skusuá'" + +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "vikjiu't pu manap nimia kupu'" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "katsjau sad-ia' (lijeng)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "makjat SVG" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "mapuu' ne nde'ets kily'e" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "mapee" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "ndakjaat" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Matsu' se mave'eje'p" #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" msgstr "mantsux" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "ma'ajau ne manajap matsjau mamejep ngunju'" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "matsjau" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" +"katsjau lik'iajam kujui nip peuk vake't katsjau vupaat se lumei pu nijang " +"lumei kily'e" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Vixa'aun re kily'e metets skad-a makee'" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "se lu'uei liviaun' (kusau rabe'en)" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Kumú' majau matsjau" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "masajaik" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "xikji'ik" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "ngunjiu' xikji'ik" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Makjaat matsjau" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "vupee sad-ia'" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Makjaat njai' xikji'ik" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "se lu'uei liviaun' mamejep ngunjiu' (kusau rabe'en)" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "manei" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "likiu'uch'" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Manei makjaat" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "lik'iajam xi'iap" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "kad-ep make' ne nabaik ta'ats" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "makeje' ngutue'p" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "lamee" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "mama'ai re se limi" #: TurtleArtActivity.py:266 turtleblocks.py:380 msgid "Turn on hover help" msgstr "Make' nabaik ta'ats" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Ma'u'up nijang" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "viviun lem re se lumei ndakal' ngk'uix" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "ma'aung nijang" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "kutap se ne manajap matsjau nda" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Tajaich maku'uts nimia kuvú" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Nijang se katsjau lumei kute" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "tajaich' maku'uts sad-ia ma kujaich'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +#, fuzzy +msgid "top of a collapsed stack" +msgstr "kimvia' nda manajap se vani'at mave'et" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Malejeiñ" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"katsjau lik'iajam-kujui-nipeuk vake't katsjau vupaat se lumei pu nijang " +"lumei kily'e" + +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "lumei majau masau' xikjia' ne nde'ets kily'e" + +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Ndich'u se me'ei maní" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "makeje' peuk manamá" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "tejiap mameje'p" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "liñjup ne ngulje'e" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "mamang peuk vakja" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "nip la'u' peuk munu'uei mu nutsjau" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "makeje' mandap re kily'e me'ets" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "k'ua' vake':" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"Mapup mane´p pu ranju'muu se me'ei mata'aun( make' se me'ei mane'ei ravú kad-" +"a)" #: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 #: TurtleArtActivity.py:747 turtleblocks.py:382 msgid "View" msgstr "Man´´u" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Kanen se k'ua manatsjau" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "mamejep majau masau se tsundue ne niñ'eje se ve'es pu kumú'" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Makjaat/Maveje'p" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Kily'e se liji vupai:" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Make'eik" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "Mama'ai kanen vatsjau" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Makua'al" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "niñkijily'" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Vichjaut mi'ia re se lumei ngk'uix" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "lijiú" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Mi'ia kutau nak'uju'ly" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "viñee't pu kimviu'p lamejep (xikjia't, nixaú)" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "makjat xikji'ik" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "lunep lijiu" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "tajaich' maku'uts sad-ia ma kujaich'" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "majáu ne nde'ets kil'e" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "ni'an" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "luma'ai se sania' lustjau na'a kad-a kusau rabe'en tijia'p" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "matseiñ' mi'ia" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "xi'iap" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Matsjau" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "mut" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "lik'iajam kujui nipeuk" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "luma'ai kanen vatsjau chu'maní" + +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "vikia't pu kumú' nimia ma kutau (angulo engrados)" + +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" msgstr "" +"lumei majau masau' se tsunduep ( lania'at lakje kujui nip manakje rabe'en)" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Mandap re kily'e me'ets" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "ma'u'up ne nijang likiu'uch'" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Matseí re kily'e me'ets" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +#, fuzzy +msgid "hide blocks" +msgstr "Ma'aung me'ets kily'e" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Maveje'p manu peuk me'ei matsjau" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "vakjap ne xikich ndukueje ne ndake'eik leet" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Matseiñ'" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "katsjau kapat mana'p navú" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Mapai latsjau" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "vichjaut mi'ia re se lumei ngk'uix" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Kigyuá" +#: turtleblocks.py:356 +#, fuzzy +msgid "Save" +msgstr "Makjat" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Nabaik" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "makjaat kiñkie' nda ndajul'" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Ndama'ai" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "makjaat kiñkie' ndakjaat nui" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Maveje'p kanen k'ua manatsjau" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"lumei peuk se ma nat'ei ma nanju sad-ia' x lumei ne kumu' (lania'at lakje " +"kujui nip manakje' rabe'en)" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Makjaat matsjau" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "kiji'it ne xikjia' se mane'eima nad-es niñ'eje' ne kumu´" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "makeje' kad-er xikjia' me'ets kily'e" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "manaja" + +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Manuap ma tabaik" #: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 msgid "Load plugin" msgstr "Maveje'p plugin" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Maveje'p kily'e keich' Python" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "rabe'en" -#: TurtleArtActivity.py:766 -msgid "Palettes" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "kimvia'" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Mapai nama web" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "vum'ejep ngunjiu'" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "makeje' peuk lu'ue lijiú" + +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Skad-a make' re se vu-ua me'ets" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "kad-uá" + +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "kia'an ne ndavaí re ndaleiñ se me'e make'" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Mapejeel'" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "maleje'p" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "kimvia' nda manajap se vani'at mave'et" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "njai' ndejei'" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "mapé re se limi" + +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "navu se lu'uei lutsjau manei" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" msgstr "" +"lumei ne ngutue'p se chu' lumei ne nde'ets kily'e (lania'at make kujui nip " +"make' rabe'en)" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Skad-a make' se keich' kily'e" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "makeje' xikjia'" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "sau' lakejé" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Nijang se vupai re nde'ets kily'e" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"katsjau lik'iajam-kujui-nipeuk vake't katsjau vupaat se lumei pu nijang " +"lumei kily'e" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "katsjau nip lupat" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Nijang se lumei rabe'en make'" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "navú plugin nip mvania'at manam'ejep." +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "vilyip lamejep" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Vipiup ne TortugArte pa ke kijiu'u kigui' ne plugin." +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "Leem" #: TurtleArtActivity.py:1135 #, python-format msgid "Plugin %s already installed." msgstr "Ne plugin %s majau mamejep." -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "¿Kimieng tsukuet manamejep %s?" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "kiji'it peuk ma vakja ne niñ'eje' se pu kumú' ve'es" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "pu kauk tijiap ne tortugArte" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "ve'eje' re kily'e" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Manuap ma tabaik" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "manei" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Ngul'ajau" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "matseiñ'" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Majau tily'ajau" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Mandap re kily'e me'ets" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Skad-akjee'" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Mi'ia kutau nak'uju'ly" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Majaumatsjau" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "nda'u'up" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Rim'ijip" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "kily'e keich'" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "vum'ejep ngunjiu'" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "kensemakeje'" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Lumei" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "katsjau kapaat mad-uajap navú" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Katsjau" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "vikia't pu kumú' nimia ngupeix (angelo en grados)" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Ndejei'" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "numvúu" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Kily'e se lumei liji vupai" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "vichjaut vipiat ne nikji kiñuimuu" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Matsjau" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"lumei peuk se ma nat'ei nanju sad-ia' y lumei ne kumú' (lania'at lakje' " +"kujui nip manakje rabe'en)" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Xikjia'" +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "ndama'ai" -#: 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 "Maveje'p" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "mad-uajap navú" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "coorx" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Mapai namá pu web" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Nabaik" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "makeje' peuk vakja xikjia'p re kily'e se ndutsjau pu kumú'" + +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "majau masau' kutsja'au ndukueje ne se lutsjau vani'at make'" + +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "navú plugin nip mvania'at manam'ejep." + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "ngulja'" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "ngube'ei" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "makeje' peuk lu'ue lijiú" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "katsjau kad-ep lupat" #: gnome_plugins/uploader_plugin.py:90 msgid "" @@ -1077,323 +2343,656 @@ msgstr "" "tumei numei peuk nu'uei njui pu http://turtleartesite.sugarlabs.org kujui " "luju'u lupu navu se ndul'ueje ma natsjau." -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "k'ua' vake':" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Mapai latsjau" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Kily'e se liji vupai:" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "kiji'it peuk mane'ei pu kumú' (0 se maa kibia ne kutau nak'ujuly" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "manaja se vat'ei vum'ejep ndape'et leet" #: gnome_plugins/uploader_plugin.py:120 msgid "Title:" msgstr "Ngunjiu' kily'e me'ets:" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Mamang peuk vakja:" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Nijang se lumei kily'e nop lik'iajam ndu'et" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Mapai nama web" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Vichjaut mi'ia re se lumei ngk'uix" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Mapejeel'" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Nijang se lumei valei me'ets kad-er ndavai" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Ndich'u se me'ei maní" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "make' nkjai' rabe'en se vat'ei vatsjau rabe'en" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Matsu' se mave'eje'p" +#: 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 "Maveje'p" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Katsjau" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "navu se lu'uei lutsjau manei" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "lu'uei liviaun (kusau' rave'en)" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "lamejep pu se lu'uei lutsjau likiu' manei ravu x, y z ne manajap" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Rim'ijip" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "lijiu" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "lamejep lasalt nui ndejei' se lumei rabe'en" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "skad-a lulejem" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "kad-ep" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "nip mvandaich'" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "luma'ai ne se lijiu u ndaka'an leet" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Pu kumú' nip manaju'u natsjau sania' xi'iap se likia'aut." + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "ngutue'p" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "nia" + +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "ma'ajau ne manajap pu se lumei sad-ia' ne ngube'ei (RFID)" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "vikia'aut pu kumú' lagu'ust' pu ngulja'" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "katsjau kapat skad-a lulejem" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Nijang se lumei xikjia' nde'ets kily'e" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "ma'ai ne ndaka'an leet u kad-er lijiu" + +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "vikjiaat re rabe'en kupu se vania'at liviaun' nda" + +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "makjaat pu rabe'en kupu se vania'at liviau'n nui" + +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "vikia'aut pu kumú' nimia ma ngupeix" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Ma'u'up re se vud-ua me'ets" + +#: pysamples/grecord.py:219 +#, fuzzy +msgid "save" +msgstr "makjat" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Xikjia'" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "makeje' ne nixi'ip pu niñ'eje' se vakeje' ne kumú'" + +#: turtleblocks.py:355 +#, fuzzy +msgid "Open" +msgstr "Maseiñ" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "masep peukma" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "coory" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "lik'iajam" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"vikia't pu kumú' nimia xcor, ycor; (0,0) vanjiu' kiñkie mejep kutau " +"nak'ujuly'." + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Ndama'ai" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "matsjau nui" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "matsjau nda" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "maljung se mane'p" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Make'eik" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Makua'al" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "nip nduju'u ndu'uets man'eiñ" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Ngul'ajau" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Mapai namá pu web" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Matseiñ'" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "ngumúu se liviuch' nui niñ'eje'" + +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Makjaat/Maveje'p" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "maka'an lijiu" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "" +"kia'ant pu ndejei' rabe'en se vanjiu' kimviu'p navé ndejei' rabe'en se " +"kimvia' njuts" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "Mama'ai kad-er licjau" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "vichiñ' ne kutau nak'ujuly' tsukuet vimiaik majau ne kumú'" #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" msgstr "se vat'ei vatjei ndape'et let" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "manaja" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "maka'an ne manajap se matsjau nda" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "manaja se vat'ei vum'ejep ndape'et leet" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Nijang se lumei kad-er k'ua manague' ngunjiu' kumu'" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "lunep lijiu" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "Meleix leem" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "manaja se vat'ei vum'ejep ndape'et leet" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "ma'u'up se makjaa't" -#: 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 "ne se lu'ujuñ manajap xikich'" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "¿Kimieng tsukuet manamejep %s?" -#: 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 "" -"li'iajam ne se lu'uei lu'ujuñ xikich' se njei' pu ndejei ne ndape'et leet " -"(navu se vat'ei tsjau':700 a 14000 ohms)" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Maveje'p kanen k'ua manatsjau" -#: 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 "xikich' manajap" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Kanen se k'ua manatsjau" -#: 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 "manajap se llu'ujuñ re xikich' se vat'ei vum'ejep ndape'et leet" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "kad-ep make' ne nabaik ta'ats" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Nijang se lumei kily'e nop lik'iajam ndu'et" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Kily'e se lumei liji vupai" -#: 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 "vanjial'" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "tejiap mamajap" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "vakjap ne xikich ndukueje ne ndake'eik leet" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Vipiup ne TortugArte pa ke kijiu'u kigui' ne plugin." -#: 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 "Majau masau' re xikjiap' RGB ne ndake'eik leet maa pu manajap" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"Vipiát pu ranjumuu se mata'aung nda nangaú viñe't (make' se mapup ravú kad-a" -#: 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 "xikji'ik se lumei ne ndake'eik leet" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Skad-akjee'" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "majau masau' kutsja'au ndukueje ne se lutsjau vani'at make'" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "mana'p navú" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "nikji ne kiñui muu" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "ma'ajau ne manajap pu se lumei sad-ia' ne ngube'ei (RFID)" +#: turtleblocks.py:370 +#, fuzzy +msgid "Rescale coordinates" +msgstr "tajaich' maku'uts sad-ia ma kujaich'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "vupee sad-ia'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "Ma'u'up re se vud-ua me'ets" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"katsjau lik'iajam-kujui-nipeuk vake't katsjau vupaat se lumei pu nijang " -"lumei kily'e" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "tijiap se vumang peuk vakja navu xiñi'iu xiñi'iu ne sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "lamee" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "mamejep tsuntué" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"katsjau lik'iajam kujui nip peuk vake't katsjau vupaat se lumei pu nijang " -"lumei kily'e" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +#, fuzzy +msgid "duration" +msgstr "lujuéeu'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "kimvia'" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "tajaich'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "kimvia' nda manajap se vani'at mave'et" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "niñkijiñ" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Tajaich maku'uts nimia kuvú" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "mates maseiñ" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "manaja se vat'ei vum'ejep ndape'et leet" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Majaumatsjau" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Mamang peuk vakja:" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 msgid "journal" msgstr "xiñi'iu xiñi'iu me'ets" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "sania' se vania'at me'ets xiñi'iu xiñi'iu ne sugar" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "majian ngk'uix" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "maka'an lijiu" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Pu kumú' laju'u' latsjau lagueje' sania' xi'iap se likia'aut." + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Maveje'p..." #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "sania' se lijiu ne xiñi'iu xiñi'iu ne sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "ndaka'an let" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Mama'ai ne kumu'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "sania' ndaka'an leet xiñi'iu xiñi'iu ne sugar" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "lavaun' kale nimia ne nijang se lumei re kily'e me'ets" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "mamang peuk vakja" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "makjaat kiñkiep'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "tijiap se vumang peuk vakja navu xiñi'iu xiñi'iu ne sugar" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Ma'aung me'ets kily'e" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "nda'u'up" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Maveje'p kily'e keich' Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "me'es matsjau ma'u'up kad-er se limi xiñi'iu xiñi'iu" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "masal' mamejep" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "ma'u'up se makjaa't" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "o" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "makeje' peuk lu'ue lijiú" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "katsjau malep vake' manalei kad-er limi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "tajaich rese mimi lichjau" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Matseí re kily'e me'ets" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "makjat xikji'ik" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "kiji'it ne ngutue'p re kily'e se ndutsjau pu kumú'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "ngunjiu' xikji'ik" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "lumei kad-er vu'u' ne kumu' (lania'at make' kujui nip make' rabe'en)" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "xikji'ik" + +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"vikiñ ne nabe'en semanakeje kiñyep se lu'ue lulejeñ sau' malejeiñ (kimvia) " +"maiñ kutue' lakeje (kujañ'a" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"lumei re xikjia' se chu' mani ne nde'ets kily'e (lania'at make' kijui ni " +"mvake rabe'en)" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Ma'u'up nijang" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "saves a picture to the Sugar Journal" msgstr "vikjiat nda xikji'ik pu xiñi'iu se lumei ne kad-ua niñchaul'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "makjat SVG" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Manei makjaat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "" -"vikjiat ravu se nichjaú pu kiñkie' kumu' nkjai' navú makjat ngk'uix SVG pu " -"xiñi'iu xiñi'iu matsjau kad-ua ninchaul" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "ndapup" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "tajaich'" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "vikia'aut ne kumu' nimia ma kutau" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "D-uaja'" + +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "ndakjaat lapai" + +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Lumei" + +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Vixa'aun re kily'e metets skad-a makee'" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "ma ngupeix" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "tajaich rese mimi lichjau" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "lumei skad-a li'iajam ne tajaich" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "mapé re se limi" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "stiñkjia'p ne manajap se vatsjaú nam'ejep ngunjiu'" + +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "vikjiat se liñju kupu se nam'ejep ngfunjiu' se vania'at liviaun," + +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "katsjau nip kapat" + +#: 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 "manajap se llu'ujuñ re xikich' se vat'ei vum'ejep ndape'et leet" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "vilyix re rabe'en se me'eje valeima" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Makjaat..." + +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "maka'an ne manajap se matsjau nui" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "makeje' xy" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "mane'ep ne kutau nak'ujuly'" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "makeje' xy" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "xik'iai'" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "Maleix" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 msgid "wait for current video or audio to complete" msgstr "mapeé lapaá lijiu maka'an re leet" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "mama'ai re se limi" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Makjaat njai' xikji'ik" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "luma'ai ne se lijiu u ndaka'an leet" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Malejeiñ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "Mama'ai kad-er licjau" +#: 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 "" +"li'iajam ne se lu'uei lu'ujuñ xikich' se njei' pu ndejei ne ndape'et leet " +"(navu se vat'ei tsjau':700 a 14000 ohms)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "ma'ai ne ndaka'an leet u kad-er lijiu" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "kutap se ne manajap matsjau nui" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "ma nuap laku'" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"xajaik ne ndejei lumei rabe'en kuts'iñ'a (re rabe'en) kujaiñ'a ndejei' " +"rabe'en (malejeiñ re rabe'en)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "tsukuet maleiñ ne se lijiu maka'an leet" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "kutue' le'ei lakejé" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "nia" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "mapúp mánee" + +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "tsukue't matsjau" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 msgid "hello" msgstr "hola" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "ve'eje' re kily'e" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "nu'ua" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "jui malep" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" + +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "" + +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" + +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Ndejei'" + +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" + +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" #. TRANS: pitch, duration, amplitude #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 @@ -1404,11 +3003,6 @@ msgstr "" msgid "amplitude" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -#, fuzzy -msgid "duration" -msgstr "lujuéeu'" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "" @@ -1474,10 +3068,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1626,11 +3216,6 @@ msgstr "" msgid "put a custom 'shell' on the turtle" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -#, fuzzy -msgid "top of a collapsed stack" -msgstr "kimvia' nda manajap se vani'at mave'et" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 @@ -1643,11 +3228,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "makeje' xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1660,20 +3240,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -#, fuzzy -msgid "hide blocks" -msgstr "Ma'aung me'ets kily'e" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "Ma'u'up re se vud-ua me'ets" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1730,11 +3300,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -#, fuzzy -msgid "width" -msgstr "nixi'i" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1747,11 +3312,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -#, fuzzy -msgid "height" -msgstr "majax" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1824,20 +3384,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "ndama'ai" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "makjat" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1871,16 +3421,6 @@ msgstr "" msgid "New" msgstr "" -#: turtleblocks.py:355 -#, fuzzy -msgid "Open" -msgstr "Maseiñ" - -#: turtleblocks.py:356 -#, fuzzy -msgid "Save" -msgstr "Makjat" - #: turtleblocks.py:357 msgid "Save as" msgstr "" @@ -1893,11 +3433,6 @@ msgstr "" msgid "File" msgstr "" -#: turtleblocks.py:370 -#, fuzzy -msgid "Rescale coordinates" -msgstr "tajaich' maku'uts sad-ia ma kujaich'" - #: turtleblocks.py:376 msgid "Reset block size" msgstr "" @@ -1931,66 +3466,10 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "distance" -#~ msgstr "kuba'ap" - -#, fuzzy -#~ msgid "right Butia" -#~ msgstr "kuas Butia" - -#, fuzzy -#~ msgid "stop Butia" -#~ msgstr "ndama'ai Butia" - -#, fuzzy -#~ msgid "Butia" -#~ msgstr "Butia" - -#, fuzzy -#~ msgid "right SumBot" -#~ msgstr "kuas SumBot" - -#, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" - -#, fuzzy -#~ msgid "triangle" -#~ msgstr "ranju'umù" - -#, fuzzy -#~ msgid "density" -#~ msgstr "vapu" - -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" - -#, fuzzy -#~ msgid "light" -#~ msgstr "kuas" - -#, fuzzy #~ msgid "grey" #~ msgstr "tsundué" #, fuzzy -#~ msgid "port" -#~ msgstr "Ndejei'" - -#, fuzzy -#~ msgid "read" -#~ msgstr "nu'ua" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" - -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" - -#, fuzzy #~ msgid "Palette of Arduino blocks" #~ msgstr "Nijang se lumei re me'ets kily'e lu'uei vani'at matsjau" diff --git a/po/pl.po b/po/pl.po index d865e9a..d9b2a8f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -19,712 +44,1742 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "bloki żółwia" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -"Żółw zainspirowany Logo, który rysuje kolorowe obrazki dzięki łączeniu " -"bloków programowania graficznego" - -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Przybornik komend żółwia" - -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "idź" - -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "przesuwa żółwia do przodu" - -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "cofaj" - -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "przemieszcza żółwia do tyłu" - -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "wyczyść" - -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "czyści ekran i ustawienia żółwia" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "w lewo" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "Żółwia Sztuka - Mini" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "przekręca żółwia odwrotnie do ruchu wskazówe zegara o podany kąt" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "Żółwiowe Pomieszanie" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "w prawo" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "Wybierz wyzwanie" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "przekręca żółwia zgodnie z ruchem wskazówek zegara (kąt w stopniach)" - -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "łuk" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "kąt" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "promień" - -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "przemieszcza żółwia wzdłuż łuku" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "ustaw xy" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "Paleta meksykańskich pesos" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "Paleta kolumbijskich pesos" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Paleta rwandyjskich franków" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "przybornik dollarów amerykańskich" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "przybornik dollarów australijskich" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "przybornik paragwajskich Guarani" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "przybornik peruwiańskich Nuevo Soles" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "przybornik urugwajskich pesos" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "TurtleBots" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "ustaw intensywność świecenia diody LED od 0 do 255" + +#: taextras.py:67 +msgid "returns the gray level" msgstr "" -"przesuwa żółwia do pozycji xcor, ycor; gdzie (0, 0) jest środkiem ekranu." -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "ustaw kierunek" +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "zwraca 1, gdy przycisk zostanie naciśnięty i 0 w przeciwnym przypadku" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "ustawia kierunek żółwia w stopniach (0 kieruje żółwia do góry ekranu)" +#: taextras.py:69 +msgid "returns the ambient light level" +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "wsp. x" +#: taextras.py:70 +msgid "returns the ambient temperature" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:71 +msgid "returns the distance from the object in front of the sensor" msgstr "" -"przechowuje bieżącą współrzędą x żółwia (może być użyty w miejscu klocka z " -"liczbą)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "wsp. y" +#: taextras.py:72 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "zwraca 0 lub 1 w zależności od nachylenia czujnika" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:73 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" msgstr "" -"przechowuje bieżącą współrzędną y żółwia (może być użyte w miejscu klocka z " -"liczbą)" +"zwraca 1, gdy czujnik wykrywa pole magnetyczne, 0 w przeciwnym przypadku" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "kierunek" +#: taextras.py:74 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "przełącza z 0 na 1, częstotliwość zależy od wibracji" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:75 +msgid "returns the value of the resistance" msgstr "" -"przechowuje bieżącą wartość kierunku żółwia (może być użyty w miejscu klocka " -"z liczbą)" - -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Przybornik komend pisaka" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "maluj ekran" +#: taextras.py:76 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "kolor" +#: taextras.py:77 +msgid "button" +msgstr "przycisk" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "cień" +#: taextras.py:78 +msgid "grayscale" +msgstr "skala szarości" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "wypełnia tło (kolorem, odcieniem)" +#: taextras.py:79 +msgid "ambient light" +msgstr "światło otoczenia" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "szary" +#: taextras.py:80 +msgid "temperature" +msgstr "temperatura" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "ustaw kolor" +#: taextras.py:81 taextras.py:292 +msgid "distance" +msgstr "odległość" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "ustawia kolor linii rysowanej przez żółwia" +#: taextras.py:82 taextras.py:289 +msgid "tilt" +msgstr "nachylenie" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "ustaw cień" +#: taextras.py:83 +msgid "magnetic induction" +msgstr "indukcja magnetyczna" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "ustawia cień linii rysowanej przez żółwia" +#: taextras.py:84 +msgid "vibration" +msgstr "wibracja" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "ustaw szary" +#: taextras.py:85 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 "opór" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "ustawia poziom szarości linii rysowanej przez żółwia" +#: taextras.py:86 +msgid "Butia Robot" +msgstr "Robot Butia" + +#: taextras.py:87 +msgid "refresh Butia" +msgstr "odświeź robota Butia" + +#: taextras.py:88 +msgid "refresh the state of the Butia palette and blocks" +msgstr "odśwież stan przybornika oraz klocków robota Butia" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:90 +msgid "battery charge Butia" +msgstr "naładowanie baterii Butia" + +#: taextras.py:91 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "zwraca poziom naładowania baterii jako liczbę między 0 i 255" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:93 +msgid "speed Butia" +msgstr "prędkość Butia" + +#: taextras.py:94 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:95 +msgid "the speed must be a value between 0 and 1023" msgstr "" -"przechowuje bieżący kolor pisaka (może być użyty w miejscu klocka z liczbą)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "przechowuje bieżący odcień pisaka" +#: taextras.py:96 +msgid "move Butia" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:97 +msgid "moves the Butia motors at the specified speed" msgstr "" -"przechowuje bieżący poziom szarości (może być użyty w miejscu klocka z " -"liczbą)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "podnieś pisak" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:99 +msgid "forward Butia" +msgstr "Butia do przodu" + +#: taextras.py:100 +msgid "move the Butia robot forward" +msgstr "przesuń robota Butia do przodu" + +#: taextras.py:101 +msgid "move the Butia robot forward a predefined distance" +msgstr "przesuń robota Butia do przodu o wcześniej określoną odległość" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:103 +msgid "left Butia" +msgstr "Butia w lewo" + +#: taextras.py:104 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "obróć robota Butia w prawo" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:106 +msgid "backward Butia" +msgstr "Butia do tyłu" + +#: taextras.py:107 +msgid "move the Butia robot backward" +msgstr "przesuń robota Butia do tyłu" + +#: taextras.py:108 +msgid "move the Butia robot backward a predefined distance" +msgstr "przesuń robota Butia do tyłu o wcześniej określoną odległość" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:110 +msgid "right Butia" +msgstr "Butia w prawo" + +#: taextras.py:111 +msgid "turn the Butia robot at right" +msgstr "obróć robota Butia w prawo" + +#: taextras.py:112 +msgid "turn Butia" +msgstr "obrót Butia" + +#: taextras.py:113 +msgid "turn the Butia robot x degrees" +msgstr "obróć robota Butia o x stopni" + +#: taextras.py:114 +msgid "stop Butia" +msgstr "zatrzymaj Butia" + +#: taextras.py:115 +msgid "stop the Butia robot" +msgstr "zatrzymaj robota Butia" + +#: taextras.py:116 +msgid "Butia" +msgstr "Butia" + +#: taextras.py:120 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Żółw nie będzie rysował podczas poruszania się." +#: taextras.py:121 +#, fuzzy +msgid "Error on initialization of the camera" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Błąd uruchomienia kamery." -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "opuść pisak" +#: taextras.py:122 +#, fuzzy +msgid "No camera was found" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Brak odnalezienia kamery" + +#: taextras.py:123 +msgid "Error stopping camera" +msgstr "Błąd zatrzymania kamery" + +#: taextras.py:124 +msgid "Error starting camera" +msgstr "Błąd uruchamienia kamery" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:126 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Żółw będzie rysował podczas poruszania się." +#: taextras.py:127 +msgid "FollowMe" +msgstr "ŚledźMnie" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "zmień rozmiar pisaka" +#: taextras.py:128 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "ustawia szerokość linii rysowanej przez żółwia" +#: taextras.py:129 +#, fuzzy +msgid "Search for a connected camera." +msgstr "Wyszukaj podłączone klocki NXT." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:131 +msgid "calibration" +msgstr "kalibracja" + +#: taextras.py:132 +#, fuzzy +msgid "store a personalized calibration" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"zwróć spersonalizowaną kalibrację\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"zwróć spersonalizowaną kalibrację\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"zapisuje spersonalizowaną kalibrację" + +#: taextras.py:133 +msgid "return a personalized calibration" +msgstr "zwróć spersonalizowaną kalibrację" + +#: taextras.py:134 +msgid "follow" +msgstr "śledź" + +#: taextras.py:135 +msgid "follow a color or calibration" +msgstr "śledź kolor lub kalibrację" + +#: taextras.py:136 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 "jasność" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "rozpocznij wypełnianie" +#: taextras.py:137 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:138 +msgid "minimum pixels" +msgstr "minimum pikseli" + +#: taextras.py:139 +msgid "set the minimal number of pixels to follow" +msgstr "ustaw minimalną liczbę pikseli do śledzenia" + +#: taextras.py:140 +msgid "threshold" +msgstr "próg" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:142 +msgid "set a threshold for a RGB color" +msgstr "ustaw próg dla koloru RGB" + +#: taextras.py:143 +msgid "camera mode" +msgstr "tryb kamery" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:145 +#, fuzzy +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"ustaw kolor trybu kamery na HSV\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"ustaw kolor trybu kamery na HSV\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"ustaw kolor trybu kamery: RGB, YUV lub HSV" + +#: taextras.py:146 +msgid "get brightness" msgstr "" -"rozpoczyna wypełniony wielokąt (używany z klockiem kończącym wypełnianie)" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "koniec wypełniania" +#: taextras.py:147 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:148 +msgid "average color" msgstr "" -"dokańcza wielokąt wypełniony (używane z klockiem rozpoczynąjącym wypełnianie " -"wielokąta)" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "rozmiar pisaka" +#: taextras.py:149 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:150 +msgid "x position" +msgstr "pozycja x" + +#: taextras.py:151 +msgid "return x position" +msgstr "zwróć pozycję x" + +#: taextras.py:152 +msgid "y position" +msgstr "pozycja y" + +#: taextras.py:153 +msgid "return y position" +msgstr "zwróć pozycję y" + +#: taextras.py:154 +msgid "pixels" +msgstr "piksele" + +#: taextras.py:155 +msgid "return the number of pixels of the biggest blob" +msgstr "zwróć liczbę pikseli największej plamy" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:157 +msgid "set the color mode of the camera to RGB" +msgstr "ustaw kolor trybu kamery na RGB" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:159 +msgid "set the color mode of the camera to YUV" +msgstr "ustaw kolor trybu kamery na YUV" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:161 +msgid "set the color mode of the camera to HSV" +msgstr "ustaw kolor trybu kamery na HSV" + +#: taextras.py:162 +msgid "empty calibration" +msgstr "opróżnij kalibrację" + +#: taextras.py:163 +msgid "error in string conversion" +msgstr "błąd w konwersji ciągu" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:168 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:169 +msgid "speed SumBot" +msgstr "prędkość SumBot" + +#: taextras.py:170 +msgid "submit the speed to the SumBot" +msgstr "prześlij prędkość do SumBota" + +#: taextras.py:171 +msgid "set the default speed for the movement commands" +msgstr "ustaw domyślną prędkością dla komend ruchu" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:173 +msgid "forward SumBot" +msgstr "SumBot do przodu" + +#: taextras.py:174 +msgid "move SumBot forward" +msgstr "przesuń SumBota do przodu" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:176 +msgid "backward SumBot" +msgstr "SumBot do tyłu" + +#: taextras.py:177 +msgid "move SumBot backward" +msgstr "przesuń SumBota do tyłu" + +#: taextras.py:178 +msgid "stop SumBot" +msgstr "zatrzymaj SumBota" + +#: taextras.py:179 +msgid "stop the SumBot" +msgstr "zatrzymaj SumBota" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:181 +msgid "left SumBot" +msgstr "SumBot w lewo" + +#: taextras.py:182 +msgid "turn left the SumBot" +msgstr "obróć SumBota w lewo" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:184 +msgid "right SumBot" +msgstr "SumBot w prawo" + +#: taextras.py:185 +msgid "turn right the SumBot" +msgstr "obróć SumBota w prawo" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.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:188 +msgid "angle to center" +msgstr "kąt z centrum" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:190 +msgid "get the angle to the center of the dohyo" +msgstr "pobierz kąt w stosunku do centrum dohyo" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:193 +msgid "angle to Enemy" +msgstr "kąt do przeciwnika" + +#: taextras.py:194 +msgid "get the angle to the Enemy" +msgstr "pobierz kąt w stosunku do przeciwnika" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:196 +msgid "x coor. SumBot" +msgstr "współrz. x SumBota" + +#: taextras.py:197 +msgid "get the x coordinate of the SumBot" +msgstr "pobierz współrzędną x SumBota" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:199 +msgid "y coor. SumBot" +msgstr "współrz. y SumBota" + +#: taextras.py:200 +msgid "get the y coordinate of the SumBot" +msgstr "pobierz współrzędną y SumBota" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:202 +msgid "x coor. Enemy" +msgstr "współrz. x przeciwnika" + +#: taextras.py:203 +msgid "get the x coordinate of the Enemy" +msgstr "pobierz współrzędną x przeciwnika" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:205 +msgid "y coor. Enemy" +msgstr "współrz. y przeciwnika" + +#: taextras.py:206 +msgid "get the y coordinate of the Enemy" +msgstr "pobierz współrzędną y przeciwnika" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:208 +msgid "rotation SumBot" +msgstr "obrót SumBota" + +#: taextras.py:209 +msgid "get the rotation of the Sumbot" +msgstr "pobierz obrót SumBota" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:211 +msgid "rotation Enemy" +msgstr "obrót przeciwnika" + +#: taextras.py:212 +msgid "get the rotation of the Enemy" +msgstr "pobierz obrót przeciwnika" + +#: taextras.py:213 +msgid "distance to center" +msgstr "odległość do środka" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:215 +msgid "get the distance to the center of the dohyo" +msgstr "pobierz odległość do centrum dohyo" + +#: taextras.py:216 +msgid "distance to Enemy" +msgstr "odległość do przeciwnika" + +#: taextras.py:217 +msgid "get the distance to the Enemy" +msgstr "pobierz odległość do przeciwnika" + +#: taextras.py:218 +msgid "update information" +msgstr "aktualizuj informacje" + +#: taextras.py:219 +msgid "update information from the server" +msgstr "aktualizuj informacje z serwera" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:224 +msgid "Palette of physics blocks" +msgstr "Przybornik klocków do fizyki" + +#: taextras.py:225 +msgid "start polygon" +msgstr "rozpocznij wielokąt" + +#: taextras.py:226 +msgid "Begin defining a new polygon based on the current Turtle xy position." msgstr "" -"przechowuje bieżący rozmiar pisaka (może być użyte w miejscu klocka z " -"liczbą)" +"Rozpocznij definiowanie nowego wielokąta, na podstawie bieżących " +"współrzędnych xy Żółwia." -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Przybornik kolorów pisaka" +#: taextras.py:228 +msgid "add point" +msgstr "dodaj punkt" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "czerwony" +#: taextras.py:229 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "Dodaj nowy punkt do bieżącego wielokąta w obecnej pozycji Żółwia xy." + +#: taextras.py:231 +msgid "end polygon" +msgstr "zakończ wielokąt" + +#: taextras.py:232 +msgid "Define a new polygon." +msgstr "Zdefiniuj nowy wielokąt." + +#: taextras.py:233 +msgid "end filled polygon" +msgstr "zakończ wypełniony wielokąt" + +#: taextras.py:234 +msgid "Not a simple polygon" +msgstr "Nie prosty wielokąt" + +#: taextras.py:235 +msgid "Define a new filled polygon." +msgstr "Zdefiniuj nowy wypełniony wielokąt." + +#: taextras.py:236 +msgid "triangle" +msgstr "Trójkąt" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:238 +msgid "base" +msgstr "podstawa" + +#: taextras.py:239 taextras.py:245 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "wysokość" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "pomarańczowy" +#: taextras.py:240 +msgid "Add a triangle object to the project." +msgstr "Dodaj obiekt trójkątny do projektu." -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "żółty" +#: taextras.py:241 +msgid "circle" +msgstr "okrąg" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "zielony" +#: taextras.py:242 +msgid "Add a circle object to the project." +msgstr "Dodaj okrągły obiekt do projektu." -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "niebieski" +#: taextras.py:243 +msgid "rectangle" +msgstr "prostokąt" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "błękitny" +#: taextras.py:244 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "szerokość" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "purpurowy" +#: taextras.py:246 +msgid "Add a rectangle object to the project." +msgstr "Dodaj prostokątny obiekt do projektu." -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "biały" +#: taextras.py:247 +msgid "reset" +msgstr "zresetuj" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "czarny" +#: taextras.py:248 +msgid "Reset the project; clear the object list." +msgstr "Zresetuj projekt, wyczyść listę obiektów." -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "ustaw kolor tekstu" +#: taextras.py:249 +msgid "motor" +msgstr "silnik" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "ustawia kolor tekstu pisanego przez żółwia" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:251 +msgid "torque" +msgstr "moment obrotowy" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "zmień rozmiar tekstu" +#: taextras.py:252 +msgid "speed" +msgstr "prędkość" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "ustawia rozmiar tekstu rysowanego przez żółwia" +#: taextras.py:253 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"Moment obrotowy silnika i szybkość od 0 (wyłączony) do liczb dodatnich; " +"silnik znajduje się na ostatnio stworzonym obiekcie." -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Przybornik operatorów liczbowych" +#: taextras.py:255 taextras.py:418 +msgid "pin" +msgstr "pinezka" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "plus" +#: taextras.py:256 +msgid "Pin an object down so that it cannot fall." +msgstr "Przypnij obiekt żeby nie mógł spaść." -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "dodaje dwa alfanumeryczne wejścia" +#: taextras.py:257 +msgid "joint" +msgstr "Połączenie" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "minus" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "odejmuje wartość z dolnego wejścia od wartości z górnego wejścia" +#: taextras.py:259 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "pomnóż" +#: taextras.py:260 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" +"Połącz dwa obiekty razem (ostatnio stworzony obiekt z obiektem w punkcie x, " +"y)." + +#: taextras.py:262 +msgid "save as Physics activity" +msgstr "zapisz aktywność jako Fizykę" + +#: taextras.py:263 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Zapisz projekt w Dzienniku jako Fizykę." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:265 +msgid "gear" +msgstr "przybory/koło" + +#: taextras.py:266 +#, fuzzy +msgid "Add a gear object to the project." +msgstr "Dodaj okrągły obiekt do projektu." -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "mnoży przez siebie dwie podane liczby" +#: taextras.py:267 +msgid "density" +msgstr "gęstość" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "dzielenie" +#: taextras.py:268 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "Ustaw gęstość dla obiektów (gęstość może być wartością dodatnią)." -#: TurtleArt/tabasics.py:604 +#: taextras.py:270 +msgid "friction" +msgstr "tarcie" + +#: taextras.py:271 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "dzieli wartość z górnego wejścia przez wartość z dolnego wejścia" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Ustaw tarcie dla obiektów (wartość od 0 do 1, gdzie 0 wyłącza tarcie a 1 to " +"silne tarcie)." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:274 +msgid "bounciness" +msgstr "elastyczność" + +#: taextras.py:275 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Ustaw elastyczność dla obiektów (wartość od 0 do 1, gdzie 0 oznacza brak " +"elastyczności a 1 dużą elastyczność)." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:278 +msgid "dynamic" +msgstr "dynamiczny" + +#: taextras.py:279 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Jeżeli dynamicznie = 1, obiekt może się ruszać, jeśli dynamiczne = 0, obiekt " +"nie porusza się." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:285 +msgid "Palette of WeDo blocks" +msgstr "Paleta klocków WeDo" + +#: taextras.py:286 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "równość" +#: taextras.py:287 +msgid "set current WeDo device" +msgstr "" -# A może "identyczności" lub "neutralny" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "operator tożsamości używany do rozbudowy klocków" +#: taextras.py:288 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "modulo" +#: taextras.py:290 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"wyjście czujnika przechylenia: (-1 == brak przechylenia, 0 == przechylenie " +"do przodu, 3 == przechylenie do tyłu, 1 == przechylenie w lewo, 2 == " +"przechylenie w prawo)" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:294 +msgid "distance sensor output" +msgstr "wyjście czujnika odległości" + +#: taextras.py:295 +msgid "Motor A" +msgstr "Silnik A" + +#: taextras.py:296 +msgid "returns the current value of Motor A" +msgstr "zwraca bieżącą wartość Silnika A" + +#: taextras.py:297 +msgid "Motor B" +msgstr "Silnik B" + +#: taextras.py:298 +msgid "returns the current value of Motor B" +msgstr "zwraca bieżącą wartość Silnika B" + +#: taextras.py:299 +msgid "set the value for Motor A" +msgstr "ustaw wartość Silnika A" + +#: taextras.py:300 +msgid "set the value for Motor B" +msgstr "ustaw wartość Silnika B" + +#: taextras.py:301 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "operator reszty" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:303 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:306 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "pierwiastek kwadratowy" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Paleta klocków silników LEGO NXT" + +#: taextras.py:313 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Paleta klocków czujników LEGO NXT" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:315 +msgid "touch" +msgstr "dotyk" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:317 +msgid "ultrasonic" +msgstr "ultradźwiękowy" + +#: taextras.py:318 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "kolor" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "wylicza pierwiastek kwadratowy" +#: taextras.py:319 +msgid "light" +msgstr "światło" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "losowy" +#: taextras.py:320 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "dźwięk" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "szary" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "maks" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:323 +#, fuzzy +msgid "Please check the connection with the brick" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Sprawdź połączenie z klockiem." -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "" -"zwraca liczbę (pseudo)losową z przedziału pomiędzy wartościami minimum " -"(górna) i maksimum (dolna)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "liczba" +#: taextras.py:325 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "używane jako wejście liczbowe w operatorach matematycznych" +#: taextras.py:326 +#, fuzzy +msgid "The value of power must be between -127 to 127" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Wartość mocy musi być między -127 a 127." -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "większe niż" +#: taextras.py:327 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "operator logiczny porównania 'większy niż'" +#: taextras.py:328 +#, fuzzy +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Wystąpił błąd: sprawdź wszystkie złącza i spróbuj połączyć ponownie." -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "mniejszy niż" +#: taextras.py:329 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "operator logiczny porównania 'mniejszy niż'" +#: taextras.py:330 +msgid "NXT not found" +msgstr "nie znaleziono NXT" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "równy" +#: taextras.py:331 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "operator logiczny 'równa się'" +#: taextras.py:332 +msgid "refresh NXT" +msgstr "odśwież NXT" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "nie" +#: taextras.py:333 +msgid "Search for a connected NXT brick." +msgstr "Wyszukaj podłączone klocki NXT." -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "operator logicznie 'NIE' (NOT)" +#: taextras.py:334 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "i" +#: taextras.py:335 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "operator logiczny 'I' (AND)" +#: taextras.py:336 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "lub" +#: taextras.py:337 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "operator logiczny 'LUB' (OR)" +#: taextras.py:338 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Przybornik operatorów kontroli przepływu" +#: taextras.py:339 +msgid "play tone" +msgstr "odwórz ton" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "czekaj" +#: taextras.py:340 +msgid "frequency" +msgstr "częstotliwość" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "wstrzymuje wykonanie programu przez podaną liczbę sekund" +#: taextras.py:341 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "czas" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "ciągle" +#: taextras.py:342 +msgid "Play a tone at frequency for time." +msgstr "Odtwórz ton o częstotliwości przez czas." -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "powtarzaj na zawsze" +#. TRANS: turn is the action +#: taextras.py:344 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "powtarzaj" +#: taextras.py:345 +msgid "port" +msgstr "port" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "powtarzaj w pętli określoną liczbę razy" +#: taextras.py:346 +msgid "power" +msgstr "moc" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "jeżeli" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:348 +msgid "rotations" +msgstr "obroty" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "wtedy" +#: taextras.py:349 +msgid "turn a motor" +msgstr "obróć silnik" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "jeżeli wtedy" +#: taextras.py:350 +#, fuzzy +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-#\n" +"zsynchronizuj dwa motory" + +#: taextras.py:351 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: taextras.py:352 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "synchronizuj dwa silniki podłączone do PORTU B i PORTU C" + +#: taextras.py:353 +msgid "PORT A" +msgstr "PORT A" + +#: taextras.py:354 +msgid "PORT A of the brick" +msgstr "PORT A klocka" + +#: taextras.py:355 +msgid "PORT B" +msgstr "PORT B" + +#: taextras.py:356 +msgid "PORT B of the brick" +msgstr "PORT B klocka" + +#: taextras.py:357 +msgid "PORT C" +msgstr "PORT C" + +#: taextras.py:358 +msgid "PORT C of the brick" +msgstr "PORT C klocka" + +#: taextras.py:359 +msgid "start motor" +msgstr "uruchom silnik" + +#: taextras.py:360 +msgid "Run a motor forever." +msgstr "Uruchom silnik na zawsze." + +#: taextras.py:361 +msgid "brake motor" +msgstr "zahamuj silnik" + +#: taextras.py:362 +msgid "Stop a specified motor." +msgstr "Zatrzymaj określony motor." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:364 +msgid "reset motor" +msgstr "resetuj silnik" + +#: taextras.py:365 +msgid "Reset the motor counter." +msgstr "Resetuj licznik silnika." + +#: taextras.py:366 +msgid "motor position" +msgstr "pozycja silnika" + +#: taextras.py:367 +msgid "Get the motor position." +msgstr "Pobierz pozycję silnika." + +#: taextras.py:368 +msgid "PORT 1" +msgstr "PORT 1" + +#: taextras.py:369 +msgid "PORT 1 of the brick" +msgstr "PORT 1 klocka" + +#: taextras.py:370 +msgid "read" +msgstr "wczytaj" + +#: taextras.py:371 +msgid "sensor" +msgstr "czujnik" + +#: taextras.py:372 +msgid "Read sensor output." +msgstr "Wczytaj wyjście czujnika." + +#: taextras.py:373 +msgid "PORT 2" +msgstr "PORT 2" + +#: taextras.py:374 +msgid "PORT 2 of the brick" +msgstr "PORT 2 klocka" + +#: taextras.py:375 +msgid "light sensor" +msgstr "czujnik światła" + +#: taextras.py:376 +msgid "gray sensor" msgstr "" -"operator 'jeżeli-wtedy' używa operatorów logicznych z przybornika Liczby" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "pozostałe" +#: taextras.py:377 +msgid "PORT 3" +msgstr "PORT 3" + +#: taextras.py:378 +msgid "PORT 3 of the brick" +msgstr "PORT 3 klocka" + +#: taextras.py:379 +msgid "touch sensor" +msgstr "czujnik dotykowy" + +#: taextras.py:380 +msgid "distance sensor" +msgstr "czujnik odległości" + +#: taextras.py:381 +msgid "PORT 4" +msgstr "PORT 4" + +#: taextras.py:382 +msgid "PORT 4 of the brick" +msgstr "PORT 4 klocka" + +#: taextras.py:383 +msgid "sound sensor" +msgstr "czujnik dźwięku" + +#: taextras.py:384 +msgid "color sensor" +msgstr "czujnik koloru" + +#. #-#-#-#-# pl.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) +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.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:387 +msgid "set light" +msgstr "ustaw światło" + +#: taextras.py:388 +msgid "Set color sensor light." +msgstr "Ustaw światło czujnika koloru." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:390 +msgid "battery level" +msgstr "poziom baterii" + +#: taextras.py:391 +msgid "Get battery level of the brick" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "jeżeli wtedy w-przeciwnym-razie" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:396 +msgid "HIGH" +msgstr "WYSOKO" + +#: taextras.py:397 +msgid "LOW" +msgstr "NISKO" + +#: taextras.py:398 +msgid "INPUT" +msgstr "WEJŚCIE" + +#: taextras.py:399 +msgid "OUTPUT" +msgstr "WYJŚCIE" + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:401 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:402 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:403 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "BŁĄD: Sprawdź Arduino i numer portu." + +#: taextras.py:404 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "BŁĄD: Wartość musi być liczbą między 0 a 255." + +#: taextras.py:405 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "BŁĄD: Wartość musi być albo WYSOKO albo NISKO." + +#: taextras.py:406 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "BŁĄD: Tryb musi być WEJŚCIE, WYJŚCIE, PWN albo SERVO." + +#: taextras.py:407 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:408 +msgid "Search for connected Arduinos." msgstr "" -"operator 'jeżeli-wtedy-w przeciwnym razie' używa operatorów logicznych z " -"przybornika Liczby" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "odstęp poziomy" +#: taextras.py:409 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "popycha stos w prawo" +#: taextras.py:410 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "odstęp pionowy" +#: taextras.py:411 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "popycha stos w dół" +#: taextras.py:412 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "zatrzymaj akcję" +#: taextras.py:413 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "zatrzymuje bieżącą akcję" +#: taextras.py:414 +msgid "Get the name of an Arduino." +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Przybornik klocków ze zmiennymi" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.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:417 +msgid "pin mode" +msgstr "tryb pin" + +#: taextras.py:419 +msgid "mode" +msgstr "tryb" + +#: taextras.py:420 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Wybierz funkcję pinu (WEJŚCIE, WYJŚCIE, PWM, SERVO)." + +#: taextras.py:421 +msgid "analog write" +msgstr "analogowy zapis" + +#: taextras.py:422 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "wartość" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "start" +#: taextras.py:423 +msgid "Write analog value in specified port." +msgstr "Zapisz analogową wartość w wybranym porcie." -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "łączy akcje z przycikami uruchamiania paska narzędzi" +#: taextras.py:424 +msgid "analog read" +msgstr "analogowy odczyt" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "tekst" +#: taextras.py:425 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" +"Wczytaj wartość z analogowego portu. Wartość może być między 0 a 1023. Użyj " +"Vref, aby ustalić napięcie. Dla USB, volt=((odczyt)*5)/1024), w przybliżeniu." + +#: taextras.py:427 +msgid "digital write" +msgstr "cyfrowy zapis" + +#: taextras.py:428 +msgid "Write digital value to specified port." +msgstr "Zapisz cyfrową wartość do wybranego portu." + +#: taextras.py:429 +msgid "digital read" +msgstr "cyfrowy odczyt" + +#: taextras.py:430 +msgid "Read value from digital port." +msgstr "Odczytaj wartość z cyfrowego portu." + +#: taextras.py:431 +msgid "Set HIGH value for digital port." +msgstr "Ustaw wartość WYSOKO dla cyfrowego portu." + +#: taextras.py:432 +msgid "Configure Arduino port for digital input." +msgstr "Skonfiguruj port Arduino dla cyfrowego wejścia." + +#: taextras.py:433 +msgid "Configure Arduino port to drive a servo." +msgstr "Skonfiguruj port Arduino do kierowania servo." + +#: taextras.py:434 +msgid "Set LOW value for digital port." +msgstr "Ustaw wartość NISKO dla cyfrowego portu." + +#: taextras.py:435 +msgid "Configure Arduino port for digital output." +msgstr "Skonfiguruj port Arduino dla cyfrowego wyjścia." + +#: taextras.py:436 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Skonfiguruj port Arduino dla PWM (modulacji szerokości impulsów)." + +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:441 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "Paleta klocków WeDo" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "wartość tekstowa" +#. TRANS: Programmable voltage output +#: taextras.py:443 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "akcje" +#: taextras.py:444 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "szczyt nazywalnego stosu akcji" +#. TRANS: Square wave 1 voltage output +#: taextras.py:446 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "wywołuje nazwany stos akcji" +#: taextras.py:447 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "włóż do pudła 1" +#. TRANS: Square wave 2 voltage output +#: taextras.py:449 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "przechowuje wartość liczbową w Zmiennej 1" +#: taextras.py:450 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "włóż do pudła 2" +#. TRANS: Digital output level +#: taextras.py:452 +msgid "set OD1" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "przechowuje wartość liczbową w Zmiennej 2" +#: taextras.py:453 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "pudło 1" +#. TRANS: Input 1 voltage level +#: taextras.py:455 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Zmienna 1 (wartość liczbowa)" +#: taextras.py:456 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "pudło 2" +#. TRANS: Input 2 voltage level +#: taextras.py:459 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Zmienna 2 (wartość liczbowa)" +#: taextras.py:460 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "przechowaj w" +#. TRANS: Resistive sensor voltage level +#: taextras.py:463 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "pudło" +#: taextras.py:464 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "wartość" +#: taextras.py:466 +msgid "capture" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "moje pudło" +#: taextras.py:467 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "przechowuje wartość liczbową w nazwanej zmiennej" +#: taextras.py:468 +msgid "samples" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "zmienna nazwana (wartość liczbowa)" +#: taextras.py:469 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "akcja 1" +#. TRANS: MS is microseconds +#: taextras.py:471 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "szczyt stosu Akcja 1" +#. TRANS: Analog input 1 voltage level +#: taextras.py:474 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "akcja 2" +#: taextras.py:475 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "szczyt stosu akcji 2" +#. TRANS: Analog input 2 voltage level +#: taextras.py:477 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "wywołuje stos akcji 1" +#: taextras.py:478 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "wywołanie stosu akcji 2" +#. TRANS: Read input 1 voltage +#: taextras.py:480 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "kosz" +#: taextras.py:481 +msgid "read input 1 voltage" +msgstr "" -# A może "pusty" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "opróżnij kosz" +#. TRANS: Read input 2 voltage +#: taextras.py:483 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "ostatecznie usuwa przedmioty z kosza" +#: taextras.py:484 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "przywróć wszystko" +#. TRANS: Read analog sensor input voltage +#: taextras.py:486 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "przywróć wszystkie klocki z kosza" +#: taextras.py:487 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "wyczyść wszystkie" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:489 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "przesuń wszystkie klocki do kosza" +#: taextras.py:490 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Współdziel wybrane klocki" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:492 +msgid "SQR2" +msgstr "" + +#: taextras.py:493 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:495 +msgid "PVS" +msgstr "" + +#: taextras.py:496 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:497 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "Wznów odtwarzanie wideo lub audio" #: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 #: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 @@ -738,854 +1793,723 @@ msgstr "Współdziel wybrane klocki" msgid "Title" msgstr "Tytuł" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Zatrzymaj żółwia" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Pokaż klocki" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Schowaj klocki" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "nie ma wyjścia na" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Nie wiem jak" - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "nie lubi" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "jako wejście" - -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "wyświetla kolejny przybornik" - -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "zmienia orientację przybornika klocków" - -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Załaduj..." +#: 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 "Średni kolor RGB z kamery jest odkładany na stos" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Zapisz..." +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "żółty" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "kliknij aby otworzyć" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "wyświetla współrzędne biegunowe" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientacja" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "opróżnia stos (FILO, first-in-last-out)" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "następny" +#: 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 "wyjście kamery" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "przesuń" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "odłóż wartości przyspieszenia (x, y, z) na stos" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" +"operator 'jeżeli-wtedy' używa operatorów logicznych z przybornika Liczby" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Wybierz klock do współdzielenia" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Żółwik" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "obraz" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Zapisz jako Logo" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "popycha stos w prawo" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Zapisz jako obraz" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Obiekt z dziennika Bajtek.edu.pl" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "stopklatka" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "pudło 2" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Zapisz stopklatkę" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "pudło 1" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Wyłącz pomoc przy najechaniu myszką" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Krok" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Włącz pomoc przy najechaniu myszką" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "mnoży przez siebie dwie podane liczby" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Pokaż przybornik" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Pokaż/schowaj schemat" #: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 msgid "Hide palette" msgstr "Schowaj przybornik" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Przeskaluj współrzędne w dół" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Koledzy" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Przeskaluj współrzędne w górę" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Moja sesja z Żółwia Sztuką" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Edytuje" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "obiekt wideo Dziennika Bajtek.edu.pl" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Widok" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "niebieski" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projekt" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"Żółw zainspirowany Logo, który rysuje kolorowe obrazki dzięki łączeniu " +"bloków programowania graficznego" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Zapisz/Załaduj" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "współrzędna x prawej strony ekranu" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopiuj" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Przybornik z dodatkowymi opcjami" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Wklej" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Załaduj przykład" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "przywróć klocki z kosza" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "przesuń wszystkie klocki do kosza" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Pełen ekran" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "lista" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "współrzędne kartezjańskie" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Nie można zapisać do katalogu z konfiguracją: %s" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Współrzędne biegunowe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "Wznów media" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Współrzędne metryczne" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "kierunek" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Powiększ klocki" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Wspóldzielenie klocków zablokowane" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Zmniejsz klocki" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "zapisuje grafikę żółwia jako plik SVG w Dzienniku Bajtek.edu.pl" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Załaduj przykład" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "wypisuje tekst lub pokazuje multimedia z Dziennika" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Wyczyść" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Uruchom" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "wideo" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Krok" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "błękitny" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Pomoc" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "wyświetla współrzędne kartezjańskie" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Stop" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Brak opcji działania:" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Załaduj projekt" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "popycha stos w dół" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Załaduj wtyczkę" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "operator reszty" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Ładuj blok Pythona" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "dół y" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "przybornik kolorów" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "zapisz SVG" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Wspóldzielenie klocków zablokowane" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "uruchom kod znaleziony w module tamyblock.py znalezionym w Dzienniku" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "opuść pisak" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "czekaj" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "pudło" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Wgranie pliku nie powiodło się!" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "przesuń" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Wtyczka nie mogła zostać zainstalowana." +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "wywołuje nazwany stos akcji" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Proszę uruchom ponownie Żółwią Sztukę, aby użyć wtyczki." +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "akcje" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Wtyczka %s już jest zainstalowana." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operator 'wykonuj-dopóki-Prawda' używa operatorów logicznych z przybornika " +"Liczby" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Czy na pewno chcesz zainstalować ponownie %s?" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "użycie" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Moja sesja z Żółwia Sztuką" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Zmienna 2 (wartość liczbowa)" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Aktywuj tryb współpracy" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "dzielenie" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Aktywności" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "nazwa obrazka" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Koledzy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "podczas gdy" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Podziel się" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "szerokość ramy" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Konfiguracja" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "opróżnić stos?" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Sąsiedztwo" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "zmienna nazwana (wartość liczbowa)" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Ksywka" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "następny" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "ID konta" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "jeżeli wtedy" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Serwer" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "zmień rozmiar pisaka" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Port" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "szablon prezentacj: wybierz obiekt Dziennika (brak opisu)" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Hasło" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "dopóki" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Zarejestruj się" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "zatrzymaj media" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Kolory" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Włącz pomoc przy najechaniu myszką" -#: 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 "Wgraj" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "ostatecznie usuwa przedmioty z kosza" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "półobrót" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Wgraj do Sieci" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "szczyt stosu Akcja 1" -#: gnome_plugins/uploader_plugin.py:90 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"Musisz mieć konto w http://turtleartsite.sugarlabs.org aby wgrać tam swój " -"projekt." +"klocek programowalny: uzywany do dodawania zaawansowanych równań " +"matematycznych z jedną zmienną, np. sin(x)" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Użytkownik:" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Przybornik operatorów kontroli przepływu" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Hasło:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "szczyt zwiniętego stosu" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Tytuł:" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"operator 'jeżeli-wtedy-w przeciwnym razie' używa operatorów logicznych z " +"przybornika Liczby" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Opis:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "zwraca współrzędną y myszki" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Prześlij do Internetu" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "przechowuje bieżący odcień pisaka" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Anuluj" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "fala sinusoidalna" #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "Nie można zalogować" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Wgranie pliku nie powiodło się!" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "w lewo x" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Przybornik klocków z czujnikami" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "ustaw kierunek" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "przyspieszenie" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "Kolor RGB pod żółwiem jest odesłany do stosu" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "odłóż wartości przyspieszenia (x, y, z) na stos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "uporządkuj ekran chowając klocki" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "dźwięk" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "surowy sygnał wejścia mikrofonowego" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "głośność" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "głośność wejścia mikrofonowego" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "wysokość tonu" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "wysokość tonu wejścia mikrofonu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python chr operator" -#: 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 "opór" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "odstęp poziomy" -#: 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 "opór wejścia mikrofonu" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Współrzędne metryczne" -#: 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 "napięcie" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "wartość tekstowa" -#: 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 "napięcie wejścia mikrofonowego" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "opis" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Paleta obiektów multimedialnych" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Nie wiem jak" -#: 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 "jasność" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "zmień rozmiar tekstu" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "kamera wykryła poziom światła" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Użytkownik:" -#: 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 "Średni kolor RGB z kamery jest odkładany na stos" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"rozpoczyna wypełniony wielokąt (używany z klockiem kończącym wypełnianie)" -#: 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 "wyjście kamery" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "szablon prezentacji: wybierz cztery obiekty Dziennika" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "poziom światła wykryty przez czujnik światła" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Widok" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "ustawia poziom szarości linii rysowanej przez żółwia" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "odczytaj wartość z urządzenia RFID" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Hasło:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "podczas gdy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "żółw widzi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operator 'powtarzaj-dopóki-Prawda', który używa operatorów logicznych z " -"przybornika liczb" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "zatrzymaj akcję" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "dopóki" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "zielony" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operator 'wykonuj-dopóki-Prawda' używa operatorów logicznych z przybornika " -"Liczby" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "cień" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "góra" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "wypełnia tło (kolorem, odcieniem)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "wierzch zwijalnego stosu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "zapisz obrazek" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "dziennik" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "wysokość tonu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Obiekt z dziennika Bajtek.edu.pl" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "zwraca 1 jeśli wciśnięty zostaje przycisk myszy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "audio" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Przeskaluj współrzędne w górę" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "obiekt audio Dziennika Bajtek.edu.pl" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "podnieś pisak" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "wideo" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "pomarańczowy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "obiekt wideo Dziennika Bajtek.edu.pl" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "wstrzymuje wykonanie programu przez podaną liczbę sekund" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "opis" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "odkłada wartość na stos (FILO, first-in-last-out)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "pole opisowe Dziennika Bajtek.edu.pl" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "wyczyść wszystkie" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "pokaż" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "wtedy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "wypisuje tekst lub pokazuje multimedia z Dziennika" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Zarejestruj się" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "pokaż wyrównane" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "nie" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "ustaw skalę" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "jeżeli wtedy w-przeciwnym-razie" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "ustawia skalę (mediów)" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "zatrzymuje bieżącą akcję" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "zapisz obrazek" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "przekręca żółwia zgodnie z ruchem wskazówek zegara (kąt w stopniach)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "nazwa obrazka" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"przechowuje bieżący poziom szarości (może być użyty w miejscu klocka z " +"liczbą)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "zapisuje obraz do Dziennika Bajtek.edu.pl" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "współrzędna x lewej strony ekranu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "zapisz SVG" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Przywróć rozmiar klocków" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "zapisuje grafikę żółwia jako plik SVG w Dzienniku Bajtek.edu.pl" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "żółw" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "skala" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "wyświetla kolejny przybornik" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "przechowuje bieżącą wartość skali" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "schowaj schemat" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "czeka na media" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "kamera wykryła poziom światła" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "poczekaj na zakończenie bieżącego audio lub video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python int operator" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "zatrzymaj media" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "operator logiczny porównania 'mniejszy niż'" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "zatrzymaj video lub audio" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "przywróć wszystkie klocki z kosza" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "wstrzymaj media" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Zapisz" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "Wstrzymaj wideo lub audio" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "włóż do pudła 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "Wznów media" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "włóż do pudła 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "Wznów odtwarzanie wideo lub audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "ukryj paski narzędzi Bajtek.edu.pl" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "mówić" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"przechowuje bieżącą współrzędą x żółwia (może być użyty w miejscu klocka z " +"liczbą)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "cześć" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "pisz" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "mówi tekst" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "zwraca współrzędną x myszki" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "fala sinusoidalna" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "czerwony" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "amplituda" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Zapisz jako Logo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "czas trwania" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "ustawia kolor linii rysowanej przez żółwia" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"gra falę sinusoidalną o częstotliwości, amplitudzie i trwaniu ( w sekundach)" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "ustaw kolor tekstu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "guzik w dół" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "głośność" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "zwraca 1 jeśli wciśnięty zostaje przycisk myszy" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Aktywuj tryb współpracy" + +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Przybornik klocków z czujnikami" + +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Załaduj wtyczkę" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "zwraca Prawda jeśli wciśnięty zostaje przycisk myszy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "myszka x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "zwraca współrzędną x myszki" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "myszka y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "zwraca współrzędną y myszki" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "liczba" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "odczytaj klawiaturę" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "odczytuje klawiaturę (wynik zapisywany jest w klocku klawiatury)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "góra" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "klawiatura" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Prześlij do Internetu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "przechowuje wynik działania klocka odczytu klawiatury jako ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "współrzędne kartezjańskie" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "odczytaj piksle" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Ksywka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "Kolor RGB pod żółwiem jest odesłany do stosu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "ustaw skalę" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "żółw widzi" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Współdziel wybrane klocki" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "zwraca kolor jaki \"widzi\" żółw" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "biały" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "czas" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "łączy akcje z przycikami uruchamiania paska narzędzi" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "upływ czasu (w sekundach) od rozpoczęcia programu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Przybornik z dodatkowymi opcjami" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "na stos" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "odkłada wartość na stos (FILO, first-in-last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "pokaż stos" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "pokazuje wartości ze stosu ( FILO, first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "opróżnij stos" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "opróżnia stos (FILO, first-in-last-out)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "ze stosu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "zdejmuje wartość ze stosu (FILO, first-in last-out)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "opróżnić stos?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "zwraca Prawda, gdy stos jest pusty" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "komentarz" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "wstawia komentarz w twoim kodzie" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "pisz" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "amplituda" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "wypisuje wartość w klocku stanu na dole ekranu" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Anuluj" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python chr operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "wysokość ramy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python int operator" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "przezentacja 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "minus" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"klocek programowalny: uzywany do dodawania zaawansowanych równań " -"matematycznych z jedną zmienną, np. sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "i" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"klocek programowalny: używany aby dodać równania matematyczne wielu " -"zmiennych np. sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "wierzch zwijalnego stosu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"klocek programowalny: używany do dodawania równań matematycznych wielu " -"zmiennych, np. sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "jako wejście" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1593,56 +2517,27 @@ msgstr "" msgid "Python block" msgstr "blok Pythona" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "uruchom kod znaleziony w module tamyblock.py znalezionym w Dzienniku" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Kartezjańskie" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "wyświetla współrzędne kartezjańskie" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "biegun" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "wyświetla współrzędne biegunowe" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "żółw" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "wybiera którym żółwiem kierować" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "czeka na media" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "skorupa żółwia" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "przyspieszenie" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "ustawia własną 'skorupę' żółwia" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"przechowuje bieżący rozmiar pisaka (może być użyte w miejscu klocka z liczbą)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "szczyt zwiniętego stosu" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "ustaw kolor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "załaduj" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1650,71 +2545,69 @@ msgstr "załaduj" msgid "loads a block" msgstr "ładuje klocek" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "ustaw xy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Przybornik komend pisaka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "przybornik kolorów" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "pokazuje wartości ze stosu ( FILO, first-in last-out)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "zaznacz przybornik kolorów" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operator 'powtarzaj-dopóki-Prawda', który używa operatorów logicznych z " +"przybornika liczb" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Przybornik szablonów prezentacji" +#: turtleblocks.py:363 +msgid "File" +msgstr "Plik" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "schowaj schemat" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "operator logicznie 'NIE' (NOT)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "uporządkuj ekran chowając klocki" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "współrzędna y dołu ekranu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "pokaż schemat" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "szablon prezentacj: wybierz obiekt Dziennika (z opisem)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "przywraca schowane klocki" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Przybornik operatorów liczbowych" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "ukryj paski narzędzi Bajtek.edu.pl" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "pomnóż" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "lista" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "ciągle" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "lista wypuntkowana prezentacji" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Wtyczka %s już jest zainstalowana." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "szablon prezentacji: lista punktów" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "ustawia cień linii rysowanej przez żółwia" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "szablon prezentacj: wybierz obiekt Dziennika (brak opisu)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "mówi tekst" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "szablon prezentacj: wybierz obiekt Dziennika (z opisem)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "stopklatka" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "szablon prezentacji: wybierz cztery obiekty Dziennika" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "wyczyść" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1723,1006 +2616,1052 @@ msgstr "szablon prezentacji: wybierz cztery obiekty Dziennika" msgid "presentation template: select two Journal objects" msgstr "szablon prezentacji: wybierz dwa obiekty z Dziennika" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "współrzędna x lewej strony ekranu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "dół" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "współrzędna y dołu ekranu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "szerokość" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "szerokość ramy" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "współrzędna x prawej strony ekranu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "współrzędna y góry ekranu" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "wysokość" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "wysokość ramy" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "tytuł x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "tytuł y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "w lewo x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "góra y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "w prawo x" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Powiększ klocki" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "dół y" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Pełen ekran" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "prezentacja 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Nie znaleziono pliku" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "przezentacja 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "pokaż" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "prezentacja 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "tekst" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "prezentacja 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "losowy" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "operator logiczny porównania 'większy niż'" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "przekręca żółwia odwrotnie do ruchu wskazówe zegara o podany kąt" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "czarny" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "wylicza pierwiastek kwadratowy" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" +"przechowuje bieżącą współrzędną y żółwia (może być użyte w miejscu klocka z " +"liczbą)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "zmień wartość końcową rgb, aby ułożyć" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "myszka x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "myszka y" #: pysamples/grecord.py:215 msgid "stop" msgstr "zatrzymaj" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "graj" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "Zapisz" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "inne" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "półobrót" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "Zrób półobrót" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "użycie" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Brak opcji działania:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Nie znaleziono pliku" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Nie można zapisać do katalogu z konfiguracją: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Nowy" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Otwórz" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Zapisz" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Zapisz jako" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Zakończ" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Plik" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Przeskaluj współrzędne" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Przywróć rozmiar klocków" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Pokaż/schowaj schemat" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Narzędzia" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Śledź" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Żółw" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "większe niż" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "wsp. x" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Masz niezapisaną pracę. Czy chcesz ją zapisać przed zakończeniem?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Pomoc" #: turtleblocks.py:448 msgid "Save project?" msgstr "Zapisać projekt?" -#~ msgid "Turtle Art Mini" -#~ msgstr "Żółwia Sztuka - Mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "Żółwiowe Pomieszanie" - -#~ msgid "Select a challenge" -#~ msgstr "Wybierz wyzwanie" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Paleta meksykańskich pesos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Paleta kolumbijskich pesos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Paleta rwandyjskich franków" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "wybiera którym żółwiem kierować" -#~ msgid "Palette of US dollars" -#~ msgstr "przybornik dollarów amerykańskich" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "w prawo x" -#~ msgid "Palette of Australian dollars" -#~ msgstr "przybornik dollarów australijskich" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "ustawia kolor tekstu pisanego przez żółwia" -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "przybornik paragwajskich Guarani" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "poziom światła wykryty przez czujnik światła" -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "przybornik peruwiańskich Nuevo Soles" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "Wtyczka nie mogła zostać zainstalowana." -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "przybornik urugwajskich pesos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "klawiatura" -#~ msgid "TurtleBots" -#~ msgstr "TurtleBots" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "łuk" -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "ustaw intensywność świecenia diody LED od 0 do 255" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "promień" -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "zwraca poziom szarości obiektu jako liczbę między 0 a 1023" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Współrzędne biegunowe" -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "zwraca 1, gdy przycisk zostanie naciśnięty i 0 w przeciwnym przypadku" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "ustaw cień" -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "zwraca poziom światła otoczenia jako liczbę między 0 a 1023" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "operator logiczny 'I' (AND)" -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "zwraca temperaturę otoczenia w postaci liczby od 0 do 255" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Musisz mieć konto w http://turtleartsite.sugarlabs.org aby wgrać tam swój " +"projekt." -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "zwraca odległość od obiektu przed czujnikiem jako liczbę od 0 do 255" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "przybornik kolorów" -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "zwraca 0 lub 1 w zależności od nachylenia czujnika" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Uruchom" -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "zwraca 1, gdy czujnik wykrywa pole magnetyczne, 0 w przeciwnym przypadku" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "pokaż stos" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "przełącza z 0 na 1, częstotliwość zależy od wibracji" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "ustawia kierunek żółwia w stopniach (0 kieruje żółwia do góry ekranu)" -#~ msgid "LED" -#~ msgstr "LED" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "zaznacz przybornik kolorów" -#~ msgid "button" -#~ msgstr "przycisk" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "głośność wejścia mikrofonowego" -#~ msgid "grayscale" -#~ msgstr "skala szarości" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Tytuł:" -#~ msgid "ambient light" -#~ msgstr "światło otoczenia" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Paleta obiektów multimedialnych" -#~ msgid "temperature" -#~ msgstr "temperatura" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Przybornik klocków ze zmiennymi" -#~ msgid "distance" -#~ msgstr "odległość" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "używane jako wejście liczbowe w operatorach matematycznych" -#~ msgid "tilt" -#~ msgstr "nachylenie" +#: 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 "Wgraj" -#~ msgid "magnetic induction" -#~ msgstr "indukcja magnetyczna" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Serwer" -#~ msgid "vibration" -#~ msgstr "wibracja" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "prezentacja 2x2" -#~ msgid "Butia Robot" -#~ msgstr "Robot Butia" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Zmienna 1 (wartość liczbowa)" -#~ msgid "refresh Butia" -#~ msgstr "odświeź robota Butia" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Sąsiedztwo" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "odśwież stan przybornika oraz klocków robota Butia" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "dodaje dwa alfanumeryczne wejścia" -#~ msgid "battery charge Butia" -#~ msgstr "naładowanie baterii Butia" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "równy" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "zwraca poziom naładowania baterii jako liczbę między 0 i 255" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "pozostałe" -#~ msgid "speed Butia" -#~ msgstr "prędkość Butia" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "nie lubi" -#~ msgid "forward Butia" -#~ msgstr "Butia do przodu" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Masz niezapisaną pracę. Czy chcesz ją zapisać przed zakończeniem?" -#~ msgid "move the Butia robot forward" -#~ msgstr "przesuń robota Butia do przodu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "przywraca schowane klocki" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "przesuń robota Butia do przodu o wcześniej określoną odległość" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "załaduj" -#~ msgid "left Butia" -#~ msgstr "Butia w lewo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "zatrzymaj video lub audio" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "obróć robota Butia w prawo" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Żółw nie będzie rysował podczas poruszania się." -#~ msgid "backward Butia" -#~ msgstr "Butia do tyłu" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "ze stosu" -#~ msgid "move the Butia robot backward" -#~ msgstr "przesuń robota Butia do tyłu" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "rozmiar pisaka" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "przesuń robota Butia do tyłu o wcześniej określoną odległość" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "skorupa żółwia" -#~ msgid "right Butia" -#~ msgstr "Butia w prawo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"gra falę sinusoidalną o częstotliwości, amplitudzie i trwaniu ( w sekundach)" -#~ msgid "turn the Butia robot at right" -#~ msgstr "obróć robota Butia w prawo" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "turn Butia" -#~ msgstr "obrót Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "mówić" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "obróć robota Butia o x stopni" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "odczytaj wartość z urządzenia RFID" -#~ msgid "stop Butia" -#~ msgstr "zatrzymaj Butia" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "przemieszcza żółwia wzdłuż łuku" -#~ msgid "stop the Butia robot" -#~ msgstr "zatrzymaj robota Butia" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "Zrób półobrót" -#~ msgid "Butia" -#~ msgstr "Butia" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "operator logiczny 'równa się'" -#, fuzzy -#~ msgid "Error on initialization of the camera" -#~ msgstr "Błąd uruchomienia kamery." +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Przybornik kolorów pisaka" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Brak odnalezienia kamery" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "Wstrzymaj wideo lub audio" -#~ msgid "Error stopping camera" -#~ msgstr "Błąd zatrzymania kamery" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "przechowuje wartość liczbową w Zmiennej 1" -#~ msgid "Error starting camera" -#~ msgstr "Błąd uruchamienia kamery" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "przechowuje wartość liczbową w Zmiennej 2" -#~ msgid "FollowMe" -#~ msgstr "ŚledźMnie" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "ustawia własną 'skorupę' żółwia" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Wyszukaj podłączone klocki NXT." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "guzik w dół" -#~ msgid "calibration" -#~ msgstr "kalibracja" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "przemieszcza żółwia do tyłu" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "zapisuje spersonalizowaną kalibrację" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "współrzędna y góry ekranu" -#~ msgid "return a personalized calibration" -#~ msgstr "zwróć spersonalizowaną kalibrację" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Pokaż klocki" -#~ msgid "follow" -#~ msgstr "śledź" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "graj" -#~ msgid "follow a color or calibration" -#~ msgstr "śledź kolor lub kalibrację" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "Zapisz" -#~ msgid "minimum pixels" -#~ msgstr "minimum pikseli" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Kolory" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "ustaw minimalną liczbę pikseli do śledzenia" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "ustawia szerokość linii rysowanej przez żółwia" -#~ msgid "threshold" -#~ msgstr "próg" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Otwórz" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "ustaw próg dla koloru RGB" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientacja" -#~ msgid "camera mode" -#~ msgstr "tryb kamery" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "wsp. y" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "ustaw kolor trybu kamery: RGB, YUV lub HSV" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"klocek programowalny: używany aby dodać równania matematyczne wielu " +"zmiennych np. sqrt(x*x+y*y)" -#~ msgid "x position" -#~ msgstr "pozycja x" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "jeżeli" -#~ msgid "return x position" -#~ msgstr "zwróć pozycję x" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"przesuwa żółwia do pozycji xcor, ycor; gdzie (0, 0) jest środkiem ekranu." -#~ msgid "y position" -#~ msgstr "pozycja y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "return y position" -#~ msgstr "zwróć pozycję y" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Stop" -#~ msgid "pixels" -#~ msgstr "piksele" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "akcja 2" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "zwróć liczbę pikseli największej plamy" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "akcja 1" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "ustaw kolor trybu kamery na RGB" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "koniec wypełniania" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "ustaw kolor trybu kamery na YUV" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopiuj" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "ustaw kolor trybu kamery na HSV" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Wklej" -#~ msgid "empty calibration" -#~ msgstr "opróżnij kalibrację" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "nie ma wyjścia na" -#~ msgid "error in string conversion" -#~ msgstr "błąd w konwersji ciągu" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Aktywności" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Wgraj do Sieci" -#~ msgid "speed SumBot" -#~ msgstr "prędkość SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "opróżnij stos" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "prześlij prędkość do SumBota" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "zdejmuje wartość ze stosu (FILO, first-in last-out)" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "ustaw domyślną prędkością dla komend ruchu" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Wyczyść" -#~ msgid "forward SumBot" -#~ msgstr "SumBot do przodu" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Przybornik szablonów prezentacji" -#~ msgid "move SumBot forward" -#~ msgstr "przesuń SumBota do przodu" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "kąt" -#~ msgid "backward SumBot" -#~ msgstr "SumBot do tyłu" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "równość" -#~ msgid "move SumBot backward" -#~ msgstr "przesuń SumBota do tyłu" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Zapisz/Załaduj" -#~ msgid "stop SumBot" -#~ msgstr "zatrzymaj SumBota" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "góra y" -#~ msgid "stop the SumBot" -#~ msgstr "zatrzymaj SumBota" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "audio" -#~ msgid "left SumBot" -#~ msgstr "SumBot w lewo" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Narzędzia" -#~ msgid "turn left the SumBot" -#~ msgstr "obróć SumBota w lewo" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Port" -#~ msgid "right SumBot" -#~ msgstr "SumBot w prawo" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "w lewo" -#~ msgid "turn right the SumBot" -#~ msgstr "obróć SumBota w prawo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "komentarz" -#~ msgid "angle to center" -#~ msgstr "kąt z centrum" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "odejmuje wartość z dolnego wejścia od wartości z górnego wejścia" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "pobierz kąt w stosunku do centrum dohyo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "wstrzymaj media" -#~ msgid "angle to Enemy" -#~ msgstr "kąt do przeciwnika" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "zmień wartość końcową rgb, aby ułożyć" -#~ msgid "get the angle to the Enemy" -#~ msgstr "pobierz kąt w stosunku do przeciwnika" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "odczytuje klawiaturę (wynik zapisywany jest w klocku klawiatury)" -#~ msgid "x coor. SumBot" -#~ msgstr "współrz. x SumBota" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Kartezjańskie" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "pobierz współrzędną x SumBota" +#: 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 "napięcie" -#~ msgid "y coor. SumBot" -#~ msgstr "współrz. y SumBota" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "czyści ekran i ustawienia żółwia" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "pobierz współrzędną y SumBota" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "surowy sygnał wejścia mikrofonowego" -#~ msgid "x coor. Enemy" -#~ msgstr "współrz. x przeciwnika" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "zwraca kolor jaki \"widzi\" żółw" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "pobierz współrzędną x przeciwnika" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "wywołuje stos akcji 1" -#~ msgid "y coor. Enemy" -#~ msgstr "współrz. y przeciwnika" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Przybornik komend żółwia" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "pobierz współrzędną y przeciwnika" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "powtarzaj na zawsze" -#~ msgid "rotation SumBot" -#~ msgstr "obrót SumBota" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "pokaż wyrównane" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "pobierz obrót SumBota" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Żółwik" -#~ msgid "rotation Enemy" -#~ msgstr "obrót przeciwnika" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Czy na pewno chcesz zainstalować ponownie %s?" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "pobierz obrót przeciwnika" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Załaduj projekt" -#~ msgid "distance to center" -#~ msgstr "odległość do środka" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projekt" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "pobierz odległość do centrum dohyo" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Śledź" -#~ msgid "distance to Enemy" -#~ msgstr "odległość do przeciwnika" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Wyłącz pomoc przy najechaniu myszką" -#~ msgid "get the distance to the Enemy" -#~ msgstr "pobierz odległość do przeciwnika" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "modulo" -#~ msgid "update information" -#~ msgstr "aktualizuj informacje" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Hasło" -#~ msgid "update information from the server" -#~ msgstr "aktualizuj informacje z serwera" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "odstęp pionowy" -#~ msgid "Palette of physics blocks" -#~ msgstr "Przybornik klocków do fizyki" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Proszę uruchom ponownie Żółwią Sztukę, aby użyć wtyczki." -#~ msgid "start polygon" -#~ msgstr "rozpocznij wielokąt" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"dokańcza wielokąt wypełniony (używane z klockiem rozpoczynąjącym wypełnianie " +"wielokąta)" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Rozpocznij definiowanie nowego wielokąta, na podstawie bieżących " -#~ "współrzędnych xy Żółwia." +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Podziel się" -#~ msgid "add point" -#~ msgstr "dodaj punkt" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "mniejszy niż" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "Dodaj nowy punkt do bieżącego wielokąta w obecnej pozycji Żółwia xy." +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "pierwiastek kwadratowy" -#~ msgid "end polygon" -#~ msgstr "zakończ wielokąt" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Przeskaluj współrzędne" -#~ msgid "Define a new polygon." -#~ msgstr "Zdefiniuj nowy wielokąt." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "pokaż schemat" -#~ msgid "end filled polygon" -#~ msgstr "zakończ wypełniony wielokąt" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Zakończ" -#~ msgid "Not a simple polygon" -#~ msgstr "Nie prosty wielokąt" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "w prawo" -#~ msgid "Define a new filled polygon." -#~ msgstr "Zdefiniuj nowy wypełniony wielokąt." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "pole opisowe Dziennika Bajtek.edu.pl" -#~ msgid "triangle" -#~ msgstr "Trójkąt" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "ustaw szary" -#~ msgid "base" -#~ msgstr "podstawa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "lista wypuntkowana prezentacji" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Dodaj obiekt trójkątny do projektu." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "czas trwania" -#~ msgid "circle" -#~ msgstr "okrąg" +#: turtleblocks.py:354 +msgid "New" +msgstr "Nowy" -#~ msgid "Add a circle object to the project." -#~ msgstr "Dodaj okrągły obiekt do projektu." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "wstawia komentarz w twoim kodzie" -#~ msgid "rectangle" -#~ msgstr "prostokąt" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "odczytaj piksle" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Dodaj prostokątny obiekt do projektu." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "skala" -#~ msgid "reset" -#~ msgstr "zresetuj" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "dół" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Zresetuj projekt, wyczyść listę obiektów." +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "purpurowy" -#~ msgid "motor" -#~ msgstr "silnik" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Przeskaluj współrzędne w dół" -#~ msgid "torque" -#~ msgstr "moment obrotowy" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "kliknij aby otworzyć" -#~ msgid "speed" -#~ msgstr "prędkość" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "wysokość tonu wejścia mikrofonu" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "Moment obrotowy silnika i szybkość od 0 (wyłączony) do liczb dodatnich; " -#~ "silnik znajduje się na ostatnio stworzonym obiekcie." +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Konfiguracja" -#~ msgid "pin" -#~ msgstr "pinezka" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Opis:" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Przypnij obiekt żeby nie mógł spaść." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "dziennik" -#~ msgid "joint" -#~ msgstr "Połączenie" +# A może "pusty" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "opróżnij kosz" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "" -#~ "Połącz dwa obiekty razem (ostatnio stworzony obiekt z obiektem w punkcie x, " -#~ "y)." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Żółw będzie rysował podczas poruszania się." -#~ msgid "save as Physics activity" -#~ msgstr "zapisz aktywność jako Fizykę" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Załaduj..." -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Zapisz projekt w Dzienniku jako Fizykę." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "obiekt audio Dziennika Bajtek.edu.pl" -#~ msgid "gear" -#~ msgstr "przybory/koło" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Zatrzymaj żółwia" -#, fuzzy -#~ msgid "Add a gear object to the project." -#~ msgstr "Dodaj okrągły obiekt do projektu." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Żółw" -#~ msgid "density" -#~ msgstr "gęstość" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "zmienia orientację przybornika klocków" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "Ustaw gęstość dla obiektów (gęstość może być wartością dodatnią)." +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "przechowaj w" -#~ msgid "friction" -#~ msgstr "tarcie" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Schowaj klocki" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Ustaw tarcie dla obiektów (wartość od 0 do 1, gdzie 0 wyłącza tarcie a 1 to " -#~ "silne tarcie)." +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Ładuj blok Pythona" -#~ msgid "bounciness" -#~ msgstr "elastyczność" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "plus" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Ustaw elastyczność dla obiektów (wartość od 0 do 1, gdzie 0 oznacza brak " -#~ "elastyczności a 1 dużą elastyczność)." +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "lub" -#~ msgid "dynamic" -#~ msgstr "dynamiczny" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "szablon prezentacji: lista punktów" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "Jeżeli dynamicznie = 1, obiekt może się ruszać, jeśli dynamiczne = 0, obiekt " -#~ "nie porusza się." +# A może "identyczności" lub "neutralny" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "operator tożsamości używany do rozbudowy klocków" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Paleta klocków WeDo" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Zmniejsz klocki" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "wyjście czujnika przechylenia: (-1 == brak przechylenia, 0 == przechylenie " -#~ "do przodu, 3 == przechylenie do tyłu, 1 == przechylenie w lewo, 2 == " -#~ "przechylenie w prawo)" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "ustawia rozmiar tekstu rysowanego przez żółwia" -#~ msgid "distance sensor output" -#~ msgstr "wyjście czujnika odległości" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"przechowuje bieżącą wartość kierunku żółwia (może być użyty w miejscu klocka " +"z liczbą)" -#~ msgid "Motor A" -#~ msgstr "Silnik A" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "obraz" -#~ msgid "returns the current value of Motor A" -#~ msgstr "zwraca bieżącą wartość Silnika A" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"zwraca liczbę (pseudo)losową z przedziału pomiędzy wartościami minimum " +"(górna) i maksimum (dolna)" -#~ msgid "Motor B" -#~ msgstr "Silnik B" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"przechowuje bieżący kolor pisaka (może być użyty w miejscu klocka z liczbą)" -#~ msgid "returns the current value of Motor B" -#~ msgstr "zwraca bieżącą wartość Silnika B" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Pokaż przybornik" -#~ msgid "set the value for Motor A" -#~ msgstr "ustaw wartość Silnika A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "zapisuje obraz do Dziennika Bajtek.edu.pl" -#~ msgid "set the value for Motor B" -#~ msgstr "ustaw wartość Silnika B" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Zapisz stopklatkę" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Paleta klocków silników LEGO NXT" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "start" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Paleta klocków czujników LEGO NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "zwraca Prawda, gdy stos jest pusty" -#~ msgid "touch" -#~ msgstr "dotyk" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "przesuwa żółwia do przodu" -#~ msgid "ultrasonic" -#~ msgstr "ultradźwiękowy" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "idź" -#~ msgid "light" -#~ msgstr "światło" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "moje pudło" -#, fuzzy -#~ msgid "grey" -#~ msgstr "szary" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "ID konta" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Sprawdź połączenie z klockiem." +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Wybierz klock do współdzielenia" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "Wartość mocy musi być między -127 a 127." +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "cofaj" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "Wystąpił błąd: sprawdź wszystkie złącza i spróbuj połączyć ponownie." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "ustawia skalę (mediów)" -#~ msgid "NXT not found" -#~ msgstr "nie znaleziono NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "przechowuje bieżącą wartość skali" -#~ msgid "refresh NXT" -#~ msgstr "odśwież NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "prezentacja 1x1" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Wyszukaj podłączone klocki NXT." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "prezentacja 1x2" -#~ msgid "play tone" -#~ msgstr "odwórz ton" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "szczyt nazywalnego stosu akcji" -#~ msgid "frequency" -#~ msgstr "częstotliwość" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "przechowuje wartość liczbową w nazwanej zmiennej" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Odtwórz ton o częstotliwości przez czas." +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "operator logiczny 'LUB' (OR)" -#~ msgid "port" -#~ msgstr "port" +#: 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 "napięcie wejścia mikrofonowego" -#~ msgid "power" -#~ msgstr "moc" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "powtarzaj w pętli określoną liczbę razy" -#~ msgid "rotations" -#~ msgstr "obroty" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Zapisz..." -#~ msgid "turn a motor" -#~ msgstr "obróć silnik" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "wywołanie stosu akcji 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 #, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "zsynchronizuj dwa motory" - -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "synchronizuj dwa silniki podłączone do PORTU B i PORTU C" - -#~ msgid "PORT A" -#~ msgstr "PORT A" - -#~ msgid "PORT A of the brick" -#~ msgstr "PORT A klocka" - -#~ msgid "PORT B" -#~ msgstr "PORT B" - -#~ msgid "PORT B of the brick" -#~ msgstr "PORT B klocka" - -#~ msgid "PORT C" -#~ msgstr "PORT C" - -#~ msgid "PORT C of the brick" -#~ msgstr "PORT C klocka" - -#~ msgid "start motor" -#~ msgstr "uruchom silnik" - -#~ msgid "Run a motor forever." -#~ msgstr "Uruchom silnik na zawsze." - -#~ msgid "brake motor" -#~ msgstr "zahamuj silnik" - -#~ msgid "Stop a specified motor." -#~ msgstr "Zatrzymaj określony motor." - -#~ msgid "reset motor" -#~ msgstr "resetuj silnik" - -#~ msgid "Reset the motor counter." -#~ msgstr "Resetuj licznik silnika." - -#~ msgid "motor position" -#~ msgstr "pozycja silnika" +msgid "setxy" +msgstr "ustaw xy" -#~ msgid "Get the motor position." -#~ msgstr "Pobierz pozycję silnika." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "tytuł y" -#~ msgid "PORT 1" -#~ msgstr "PORT 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "tytuł x" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORT 1 klocka" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "maluj ekran" -#~ msgid "read" -#~ msgstr "wczytaj" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "inne" -#~ msgid "sensor" -#~ msgstr "czujnik" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Zapisz jako" -#~ msgid "Read sensor output." -#~ msgstr "Wczytaj wyjście czujnika." +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "ustaw xy" -#~ msgid "PORT 2" -#~ msgstr "PORT 2" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "kosz" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORT 2 klocka" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "biegun" -#~ msgid "light sensor" -#~ msgstr "czujnik światła" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "powtarzaj" -#~ msgid "PORT 3" -#~ msgstr "PORT 3" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "poczekaj na zakończenie bieżącego audio lub video" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORT 3 klocka" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Zapisz jako obraz" -#~ msgid "touch sensor" -#~ msgstr "czujnik dotykowy" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Edytuje" -#~ msgid "distance sensor" -#~ msgstr "czujnik odległości" +#: 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 "opór wejścia mikrofonu" -#~ msgid "PORT 4" -#~ msgstr "PORT 4" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "szczyt stosu akcji 2" -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORT 4 klocka" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "dzieli wartość z górnego wejścia przez wartość z dolnego wejścia" -#~ msgid "sound sensor" -#~ msgstr "czujnik dźwięku" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "maks" -#~ msgid "color sensor" -#~ msgstr "czujnik koloru" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "wypisuje wartość w klocku stanu na dole ekranu" -#~ msgid "set light" -#~ msgstr "ustaw światło" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "rozpocznij wypełnianie" -#~ msgid "Set color sensor light." -#~ msgstr "Ustaw światło czujnika koloru." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "przechowuje wynik działania klocka odczytu klawiatury jako ASCII" -#~ msgid "battery level" -#~ msgstr "poziom baterii" +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pl.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "na stos" -#~ msgid "HIGH" -#~ msgstr "WYSOKO" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"klocek programowalny: używany do dodawania równań matematycznych wielu " +"zmiennych, np. sin(x+y+z)" -#~ msgid "LOW" -#~ msgstr "NISKO" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "przywróć wszystko" -#~ msgid "INPUT" -#~ msgstr "WEJŚCIE" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "cześć" -#~ msgid "OUTPUT" -#~ msgstr "WYJŚCIE" +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "bloki żółwia" -#~ msgid "PWM" -#~ msgstr "PWM" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#~ msgid "SERVO" -#~ msgstr "SERVO" +#: TurtleArtActivity.py:766 +#, fuzzy +msgid "Palettes" +msgstr "przybornik kolorów" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "BŁĄD: Sprawdź Arduino i numer portu." +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "BŁĄD: Wartość musi być liczbą między 0 a 255." +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "BŁĄD: Wartość musi być albo WYSOKO albo NISKO." +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "BŁĄD: Tryb musi być WEJŚCIE, WYJŚCIE, PWN albo SERVO." +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#~ msgid "pin mode" -#~ msgstr "tryb pin" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#~ msgid "mode" -#~ msgstr "tryb" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Wybierz funkcję pinu (WEJŚCIE, WYJŚCIE, PWM, SERVO)." +#: turtleblocks.py:407 +msgid "About..." +msgstr "" -#~ msgid "analog write" -#~ msgstr "analogowy zapis" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "zwraca poziom szarości obiektu jako liczbę między 0 a 1023" -#~ msgid "Write analog value in specified port." -#~ msgstr "Zapisz analogową wartość w wybranym porcie." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "zwraca poziom światła otoczenia jako liczbę między 0 a 1023" -#~ msgid "analog read" -#~ msgstr "analogowy odczyt" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "zwraca temperaturę otoczenia w postaci liczby od 0 do 255" #~ 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." +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" #~ msgstr "" -#~ "Wczytaj wartość z analogowego portu. Wartość może być między 0 a 1023. Użyj " -#~ "Vref, aby ustalić napięcie. Dla USB, volt=((odczyt)*5)/1024), w " -#~ "przybliżeniu." - -#~ msgid "digital write" -#~ msgstr "cyfrowy zapis" +#~ "zwraca odległość od obiektu przed czujnikiem jako liczbę od 0 do 255" -#~ msgid "Write digital value to specified port." -#~ msgstr "Zapisz cyfrową wartość do wybranego portu." - -#~ msgid "digital read" -#~ msgstr "cyfrowy odczyt" - -#~ msgid "Read value from digital port." -#~ msgstr "Odczytaj wartość z cyfrowego portu." - -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Ustaw wartość WYSOKO dla cyfrowego portu." - -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Skonfiguruj port Arduino dla cyfrowego wejścia." - -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Skonfiguruj port Arduino do kierowania servo." - -#~ msgid "Set LOW value for digital port." -#~ msgstr "Ustaw wartość NISKO dla cyfrowego portu." - -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Skonfiguruj port Arduino dla cyfrowego wyjścia." - -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Skonfiguruj port Arduino dla PWM (modulacji szerokości impulsów)." +#~ msgid "Restore blocks from trash" +#~ msgstr "przywróć klocki z kosza" #, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Paleta klocków WeDo" +#~ msgid "grey" +#~ msgstr "szary" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "ustaw prędkość silników Butia jako wartość pomiędzy 0 a 1023, przekazywaną " -#~ "przez argument" +#~ "ustaw prędkość silników Butia jako wartość pomiędzy 0 a 1023, " +#~ "przekazywaną przez argument" #, fuzzy #~ msgid "turn the Butia robot to the left" @@ -2897,10 +3836,11 @@ msgstr "Zapisać projekt?" #~ msgstr "zahamuj określiony silnik" #~ msgid "" -#~ "returns the object gray level encountered him as a number between 0 and 1023" -#~ msgstr "" -#~ "zwraca poziom szarości napotkanego obiektu jako liczbę w przedziale od 0 do " +#~ "returns the object gray level encountered him as a number between 0 and " #~ "1023" +#~ msgstr "" +#~ "zwraca poziom szarości napotkanego obiektu jako liczbę w przedziale od 0 " +#~ "do 1023" #~ msgid "activity count" #~ msgstr "łącznie aktywności" diff --git a/po/ps.po b/po/ps.po index 92258ff..88fe09f 100644 --- a/po/ps.po +++ b/po/ps.po @@ -1,13 +1,50 @@ +# #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,6 +59,1850 @@ msgstr "" "X-Generator: Pootle 1.2.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "کچه" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "سور" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "رنګ" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "ښي" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "غږ" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "اکر" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-#\n" +"بېلګې" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "سرلیک" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "دويم کوتۍ" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "اول کوتی" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +#, fuzzy +msgid "Step" +msgstr "قدم" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +#, fuzzy +msgid "Hide palette" +msgstr "پالیټ پټول" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "سرکی" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "قلم کښته" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "انتظار" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "بکس" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "تش پنډ" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "متن" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "د قلم کچه وټاکئ" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "سرکی ټاکل" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "د قلم کچه وټاکئ" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "سيوری" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "قلم پورته" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "نو بیا" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ندی" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +#, fuzzy +msgid "turtle" +msgstr "شمشتی" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "بلاکونه پټول" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "په اول کوتي کې يې وځيرمئ" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "په دويم کوتي کې يې وځيرمئ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "چاپ" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +#, fuzzy +msgid "Save as Logo" +msgstr "نښان ساتل" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "د متن رنګ ټاکل" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "شميره" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "قدم" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "سيوری وټاکئ" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "او " + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "رنګ وټاکئ" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "لږترلږه" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "زما بلاک پورته کړه" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "د تل لپاره" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "پاکول" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "بلاکونه ښودل" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +#, fuzzy +msgid "Fullscreen" +msgstr "بشپړه پرده" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "متن" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "ناټاکلې" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "شاته" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "قدم" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "کیليدړه" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "آرک" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "وړانګه" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "سيوری وټاکئ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "پنډ ښودل" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "سرلیک" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "بل څه" + +#. #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "دنګون" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "د قلم کچه" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +#, fuzzy +msgid "Show blocks" +msgstr "بلاکونه ښودل" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "رنګ" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "که" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +#, fuzzy +msgid "Stop" +msgstr "قدم" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "تش پنډ" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "پاکول" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "زاويه" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "کيڼ" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "شمشتی هنر" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "پروژه" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "بلاکونه ښودل" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +#, fuzzy +msgid "Stop turtle" +msgstr "شمشتۍ درول" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "شمشتی" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +#, fuzzy +msgid "Hide blocks" +msgstr "بلاکونه پټول" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "يا" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +#, fuzzy +msgid "Show palette" +msgstr "پالیټ ښودل" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "پېل" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "مخته" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "شاته" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "xy وټاکئ" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "پرده ډکول" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "توګه ساتل" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "xy وټاکئ" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "تکرار" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +#, fuzzy +msgid "Save as image" +msgstr "د انځور په توګه ساتل" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "زیات نه زیات" + +#. #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ps.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "دیکه" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -36,37 +1917,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "مخته" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "شاته" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "پاکول" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "کيڼ" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -80,75 +1942,31 @@ msgstr "ښي" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "آرک" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "زاويه" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "وړانګه" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy وټاکئ" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "سرکی ټاکل" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "سرکی" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -159,23 +1977,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "پرده ډکول" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "رنګ" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "سيوری" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -186,18 +1987,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "رنګ وټاکئ" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "سيوری وټاکئ" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -222,26 +2015,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "قلم پورته" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "قلم کښته" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "د قلم کچه وټاکئ" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -262,10 +2043,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "د قلم کچه" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -306,24 +2083,10 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "شاته" - -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "د متن رنګ ټاکل" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "د قلم کچه وټاکئ" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -393,26 +2156,10 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "ناټاکلې" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "لږترلږه" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "زیات نه زیات" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "شميره" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -441,26 +2188,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ندی" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "او " - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "يا" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -470,38 +2205,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "انتظار" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "د تل لپاره" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "تکرار" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "که" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "نو بیا" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -510,10 +2225,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "بل څه" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -550,25 +2261,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "پېل" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "متن" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -590,34 +2286,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "په اول کوتي کې يې وځيرمئ" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "په دويم کوتي کې يې وځيرمئ" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "اول کوتی" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "دويم کوتۍ" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -626,14 +2306,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "بکس" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -706,36 +2378,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "سرلیک" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -#, fuzzy -msgid "Stop turtle" -msgstr "شمشتۍ درول" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -#, fuzzy -msgid "Show blocks" -msgstr "بلاکونه ښودل" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -#, fuzzy -msgid "Hide blocks" -msgstr "بلاکونه پټول" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -777,11 +2419,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "متن" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -797,26 +2434,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "شمشتی هنر" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -#, fuzzy -msgid "Save as Logo" -msgstr "نښان ساتل" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -#, fuzzy -msgid "Save as image" -msgstr "د انځور په توګه ساتل" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" @@ -835,16 +2456,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -#, fuzzy -msgid "Show palette" -msgstr "پالیټ ښودل" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -#, fuzzy -msgid "Hide palette" -msgstr "پالیټ پټول" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -863,10 +2474,6 @@ msgstr "" msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "پروژه" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" @@ -884,12 +2491,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -#, fuzzy -msgid "Fullscreen" -msgstr "بشپړه پرده" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -902,11 +2503,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "بلاکونه ښودل" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -916,29 +2512,14 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "پاکول" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -#, fuzzy -msgid "Step" -msgstr "قدم" - #: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 msgid "Help" msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -#, fuzzy -msgid "Stop" -msgstr "قدم" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1050,11 +2631,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "رنګ" - #: 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 @@ -1083,11 +2659,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "سرلیک" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1126,11 +2697,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "غږ" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1157,13 +2723,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1190,15 +2749,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1248,13 +2798,6 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "قدم" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1306,11 +2849,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "سيوری وټاکئ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1442,10 +2980,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "کیليدړه" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1466,10 +3000,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1478,46 +3008,22 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "دیکه" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "پنډ ښودل" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 msgid "shows values in FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "تش پنډ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "دنګون" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "تش پنډ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" @@ -1532,10 +3038,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "چاپ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1600,12 +3102,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "شمشتی" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1630,18 +3126,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "زما بلاک پورته کړه" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "xy وټاکئ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1654,19 +3138,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "بلاکونه پټول" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "بلاکونه ښودل" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1723,10 +3198,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "سور" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1739,10 +3210,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "کچه" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1815,11 +3282,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "قدم" - #: pysamples/grecord.py:217 msgid "play" msgstr "" @@ -1869,11 +3331,6 @@ msgstr "" msgid "Save" msgstr "" -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "توګه ساتل" - #: turtleblocks.py:362 msgid "Quit" msgstr "" @@ -1902,10 +3359,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "شمشتی" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1919,18 +3372,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "ښي" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "اکر" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "بېلګې" - -#, fuzzy #~ msgid "Save as HTML" #~ msgstr "د هټمل په توګه ساتل" diff --git a/po/pt.po b/po/pt.po index b463556..0c284dd 100644 --- a/po/pt.po +++ b/po/pt.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,707 +43,1709 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "blocos de tartaruga" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Palete de comandos da tartaruga" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "TartarugArte Mini" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "avançar" - -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "move a tartaruga para a frente" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "Confusão Tartaruga" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "recuar" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "Escolhe um desafio" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "move a tartaruga para trás" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "limpar" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "Palete de pesos Mexicanos" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "Palete de pesos Colombianos" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Palete de francos Ruandenses" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "Paleta de dólares EUA" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "Paleta de dólares Australianos" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "Paleta de Guaranis Paraguaios" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Paleta de Nuevo Soles Peruanos" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "Paleta de Pesos Uruguaios" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "TartarugaBots" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "ajustar a intensidade do LED entre 0 e 255" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "devolve o nível de cinza do objeto como um número entre 0 e 1023" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "devolve 1 quando o botão é premido, caso contrário devolve 0" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "devolve o nível de luz ambiente como um número entre 0 e 1023" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "devolve a temperatura ambiente como um número entre 0 e 255" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" +"devolve a distância do objeto em frente ao sensor como um número entre 0 e " +"255" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "limpa o ecrã e coloca a tartaruga na posição inicial" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "devolve 0 ou 1 dependendo da inclinação do sensor" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "esquerda" - -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" msgstr "" -"roda a tartaruga na direção contrária dos ponteiros do relógio (ângulo em " -"graus)" - -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "direita" +"devolve 1 quando o sensor deteta um campo magnético, caso contrário devolve 0" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "roda a tartaruga na direção dos ponteiros do relógio (ângulo em graus)" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "alterna de 0 para 1, a frequência depende da vibração" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arco" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "ângulo" +#: taextras.py:77 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "raio" +#: taextras.py:78 +msgid "button" +msgstr "botão" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "move a tartaruga ao longo de um arco" +#: taextras.py:79 +msgid "grayscale" +msgstr "escala de cinza" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "definir xy" +#: taextras.py:80 +msgid "ambient light" +msgstr "luz ambiente" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:81 +msgid "temperature" +msgstr "temperatura" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "distância" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -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ã." +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "inclinação" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "definir orientação" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "indução magnética" -#: TurtleArt/tabasics.py:217 -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ã)" +#: taextras.py:85 +msgid "vibration" +msgstr "vibração" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "coor.x" +#: taextras.py:86 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 "resistência" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "Robô Butia" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "refrescar Butia" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "refresca o estado da palete e blocos Butia" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "carga de bateria Butia" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "devolve a carga de bateria como um número entre 0 e 255" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "velocidade Butia" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" msgstr "" -"contém o valor atual da coordenada X da tartaruga (pode ser usado em vez de " -"um bloco de número)" - -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "coor.y" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" msgstr "" -"contém o valor atual da coordenada Y da tartaruga (pode ser usado em vez de " -"um bloco de número)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "orientação" - -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "avançar Butia" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "move o robô Butia em frente" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "move o robô Butia uma distância predefinida" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "esquerda Butia" + +#: taextras.py:103 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "roda o robô Butia para a direita" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "recuar Butia" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "move o robô Butia para trás" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "move o robô Butia para trás uma distância predefinida" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "direita Butia" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "roda o robô Butia para a direita" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "rodar Butia" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "roda o robô Butia x graus" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "parar Butia" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "para o robô Butia" + +#: taextras.py:115 +msgid "Butia" +msgstr "Butia" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" msgstr "" -"contém o valor atual da orientação da tartaruga (pode ser usado em vez de um " -"bloco de número)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Palete de comandos da caneta" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "preencher ecrã" +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "Erro na inicialização da câmara" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "cor" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "tom" - -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "preenche o fundo com (cor, tom)" - -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "cinza" +#: taextras.py:121 +#, fuzzy +msgid "No camera was found" +msgstr "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"Não foi encontrada nenhuma câmara" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "Erro ao parar câmara" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "Erro ao iniciar câmara" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "definir cor" +#: taextras.py:126 +msgid "FollowMe" +msgstr "SegueMe" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "define a cor da linha desenhada pela tartaruga" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "definir tom" +#: taextras.py:128 +#, fuzzy +msgid "Search for a connected camera." +msgstr "Procurar por um bloco NXT ligado." + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "calibração" + +#: taextras.py:131 +#, fuzzy +msgid "store a personalized calibration" +msgstr "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"voltar à calibração personalizada\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"voltar à calibração personalizada\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"guarda uma calibração personalizada" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "voltar à calibração personalizada" + +#: taextras.py:133 +msgid "follow" +msgstr "seguir" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "seguir uma cor ou calibração" + +#: taextras.py:135 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 "luminosidade" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "define o tom da linha desenhada pela tartaruga" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "definir cinza" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "mínimo de pixéis" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "define o número mínimo de pixeis a seguir" + +#: taextras.py:139 +msgid "threshold" +msgstr "limiar" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "define um limiar para uma cor RGB" + +#: taextras.py:142 +msgid "camera mode" +msgstr "modo de câmara" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "define o nível de cinza da linha desenhada pela tartaruga" +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:146 +msgid "get the brightness of the ambient light" msgstr "" -"contém a cor atual da caneta (pode ser usado em vez de um bloco de número)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "contém o tom atual da caneta" +#: taextras.py:147 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"contém o nível de cinza atual (pode ser usado em vez de um bloco de número)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "caneta levantada" +#: taextras.py:149 +msgid "x position" +msgstr "posição x" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "A tartaruga não desenhará quando movida." +#: taextras.py:150 +msgid "return x position" +msgstr "devolve posição x" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "caneta embaixo" +#: taextras.py:151 +msgid "y position" +msgstr "posição y" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "A tartaruga desenhará quando movida." +#: taextras.py:152 +msgid "return y position" +msgstr "devolve posição y" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "definir tamanho da caneta" +#: taextras.py:153 +msgid "pixels" +msgstr "pixéis" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "define o tamanho da linha desenhada pela tartaruga" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "devolve o número de pixeis da maior mancha" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "iniciar preenchimento" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" msgstr "" -"inicia polígono preenchido (utilizado com o bloco terminar preenchimento)" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "terminar preenchimento" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:161 +msgid "empty calibration" +msgstr "esvaziar calibração" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "erro na conversão da string" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "SumBot" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "velocidade SumBot" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "envia a velocidade ao SumBot" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "define a velocidade padrão para os comandos de movimento" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "avançar SumBot" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "move o SumBot em frente" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "recuar SumBot" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "move o SumBot para trás" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "parar SumBot" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "pára o SumBot" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "esquerda SumBot" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "roda o SumBot para a esquerda" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "direita SumBot" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "roda o SumBot para a direita" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.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:187 +msgid "angle to center" +msgstr "ângulo ao centro" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "obtém o ângulo ao centro do dojo" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "ângulo ao Inimigo" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "obtém o ângulo ao Inimigo" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "coor. x SumBot" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "obtém a coordenada x do SumBot" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "coor. y SumBot" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "obtém a coordenada y do SumBot" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "coor. x Inimigo" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "obtém a coordenada x do Inimigo" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "coor. y Inimigo" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "obtém a coordenada y do Inimigo" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "rotação SumBot" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "obtém a rotação do SumBot" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "rotação Inimigo" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "obtém a rotação do Inimigo" + +#: taextras.py:212 +msgid "distance to center" +msgstr "distância ao centro" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "obtém a distância ao centro do dojo" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "distância ao Inimigo" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "obtém a distância ao Inimigo" + +#: taextras.py:217 +msgid "update information" +msgstr "atualizar informação" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "atualiza informação do servidor" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "Palete de blocos Física" + +#: taextras.py:224 +msgid "start polygon" +msgstr "iniciar polígono" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." msgstr "" -"completa o polígono preenchido (utilizado com o bloco iniciar preenchimento)" +"Começa a definir um novo polígono com base na posição XY atual da Tartaruga." -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "tamanho da caneta" +#: taextras.py:227 +msgid "add point" +msgstr "adicionar ponto" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." msgstr "" -"contém o tamanho atual da caneta (pode ser usado em vez de um bloco de " -"número)" +"Adiciona um novo ponto ao polígono atual baseado com base na posição XY " +"atual da Tartaruga." + +#: taextras.py:230 +msgid "end polygon" +msgstr "terminar polígono" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "Define um novo polígono." + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "terminar polígono preenchido" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "Não é um polígono simples" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "Define um novo polígono preenchido." + +#: taextras.py:235 +msgid "triangle" +msgstr "triângulo" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "base" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Palete de cores da caneta" +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "altura" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "vermelho" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "Adiciona um objeto de triângulo ao projeto." -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "laranja" +#: taextras.py:240 +msgid "circle" +msgstr "círculo" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "amarelo" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "Adiciona um objeto de círculo ao projeto." -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "verde" +#: taextras.py:242 +msgid "rectangle" +msgstr "retângulo" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "ciano" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "largura" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "azul" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "Adiciona um objeto de retângulo ao projeto." -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "roxo" +#: taextras.py:246 +msgid "reset" +msgstr "reiniciar" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "branco" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "Reinicia o projeto; limpa a lista de objetos." -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "preto" +#: taextras.py:248 +msgid "motor" +msgstr "motor" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "definir cor do texto" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "binário" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "define a cor do texto desenhado pela tartaruga" +#: taextras.py:251 +msgid "speed" +msgstr "velocidade" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "definir tamanho do texto" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"O binário do motor e a velocidade variam entre 0 (desligado) e números " +"positivos; o motor é colocado no último objeto criado." -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "define o tamanho do texto desenhado pela tartaruga" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "pino" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Palete de operadores numéricos" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "Prende um objeto de modo a que não possa cair." -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "mais" +#: taextras.py:256 +msgid "joint" +msgstr "articulação" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "soma duas entradas alfanuméricas" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "menos" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "subtrai a entrada numérica de baixo à entrada numérica em cima" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "Junta dois objetos (o último objeto criado e o objeto no ponto x, y)." + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "guardar como atividade de Física" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Guardar o projeto no Diário como uma atividade Física." + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "engrenagem" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "Adiciona um objeto engrenagem ao projeto." + +#: taextras.py:266 +msgid "density" +msgstr "densidade" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" +"Define a propriedade de densidade para objetos (densidade pode ser qualquer " +"número positivo)." -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "multiplicar" +#: taextras.py:269 +msgid "friction" +msgstr "fricção" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplica duas entradas numéricas" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" +"Define a propriedade de fricção para objetos (valor de 0 a 1, em que 0 " +"desliga a fricção e 1 é fricção forte)." + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "ricochete" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Ajusta a propriedade de ricochete para objetos (valores de 0 a 1, em que 0 " +"significa sem ricochete e 1 tem muito ricochete)." + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "dinâmico" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"se dinâmico = 1, o objeto pode se mover; se dinâmico = 0, está fixo sua " +"posição." + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "Palete de blocos WeDo" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "dividir" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"saída do sensor de inclinação: (-1 == sem inclinação, 0 == inclinação para a " +"frente, 3 == inclinação para trás, 1 == inclinação para a esquerda, 2 == " +"inclinação para a direita)" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "saída sensor de distância" + +#: taextras.py:294 +msgid "Motor A" +msgstr "Motor A" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "devolve o valor atual do Motor A" + +#: taextras.py:296 +msgid "Motor B" +msgstr "Motor B" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "devolve o valor atual do Motor B" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "define o valor para o Motor A" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "define o valor para Motor B" + +#: taextras.py:300 +msgid "WeDo is unavailable" msgstr "" -"divide a entrada numérica em cima (numerador) pela entrada numérica de baixo " -"(denominador)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identidade" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "operador de identidade utilizado para extender blocos" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "Palete de blocos de motor do LEGO NXT" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "Palete de blocos de sensor do LEGO NXT" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "tato" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "ultrassónico" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "cor" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "operador módulo (resto da divisão inteira)" +#: taextras.py:318 +msgid "light" +msgstr "luz" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "som" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "raiz quadrada" +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "cinza" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "calcula a raiz quadrada" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +#, fuzzy +msgid "Please check the connection with the brick" +msgstr "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"Por favor verifica a ligação com o bloco." -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "aleatório" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "mín" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "máx" +#: taextras.py:325 +#, fuzzy +msgid "The value of power must be between -127 to 127" +msgstr "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"O valor da energia deve ser entre -127 e 127." -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -"devolve um número aleatório entre os valores mínimo (em cima) e máximo (em " -"baixo)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "número" +#: taextras.py:327 +#, fuzzy +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ocorreu um erro: verifica todas as ligações e tenta ligar novamente." -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "utilizado como entrada numérica em operadores matemáticos" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "maior que" +#: taextras.py:329 +msgid "NXT not found" +msgstr "NXT não encontrado" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "operador lógico maior-que" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "menor que" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "atualizar NXT" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "operador lógico menor-que" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "Procurar por um bloco NXT ligado." -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "igual" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "operador lógico igual-a" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "não é igual" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "operador lógico não-é-igual (NOT)" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "e" +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "operador lógico e (AND)" +#: taextras.py:338 +msgid "play tone" +msgstr "tocar tom" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "ou" +#: taextras.py:339 +msgid "frequency" +msgstr "frequência" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "operador lógico ou (OR)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "tempo" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Palete de operadores de fluxo" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "Toca um tom na frequência durante tempo." -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "esperar" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "pausa a execução do programa um determinado número de segundos" +#: taextras.py:344 +msgid "port" +msgstr "porta" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "para sempre" +#: taextras.py:345 +msgid "power" +msgstr "energia" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "repete para sempre" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "rotações" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repetir" +#: taextras.py:348 +msgid "turn a motor" +msgstr "gira um motor" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "repete determinado número de vezes" +#: taextras.py:349 +#, fuzzy +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"sincroniza dois motores" + +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "se" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "sincroniza dois motores conectados na PORTA B e na PORTA C" + +#: taextras.py:352 +msgid "PORT A" +msgstr "PORTA A" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "PORTA A do bloco" + +#: taextras.py:354 +msgid "PORT B" +msgstr "PORTA B" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "PORTA B do bloco" + +#: taextras.py:356 +msgid "PORT C" +msgstr "PORTA C" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "PORTA C do bloco" + +#: taextras.py:358 +msgid "start motor" +msgstr "arrancar motor" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "Corre um motor para sempre." + +#: taextras.py:360 +msgid "brake motor" +msgstr "travar motor" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "Para um motor especificado." + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "reiniciar motor" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "Reinicia o contador do motor." + +#: taextras.py:365 +msgid "motor position" +msgstr "posição do motor" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "Devolve a posição do motor." + +#: taextras.py:367 +msgid "PORT 1" +msgstr "PORTA 1" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "PORTA 1 do bloco" + +#: taextras.py:369 +msgid "read" +msgstr "ler" + +#: taextras.py:370 +msgid "sensor" +msgstr "sensor" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "Ler saída do sensor." + +#: taextras.py:372 +msgid "PORT 2" +msgstr "PORTA 2" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "PORTA 2 do bloco" + +#: taextras.py:374 +msgid "light sensor" +msgstr "sensor de luz" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "então" +#: taextras.py:376 +msgid "PORT 3" +msgstr "PORTA 3" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "PORTA 3 do bloco" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "sensor de tato" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "sensor de distancia" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "PORTA 4" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "PORTA 4 do bloco" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "sensor de som" + +#: taextras.py:383 +msgid "color sensor" +msgstr "sensor de cor" + +#. #-#-#-#-# pt.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) +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.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:386 +msgid "set light" +msgstr "definir luz" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "Define a luz do sensor de cor." + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "se então" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "operador se-então que usa operadores booleanos da palete Números" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "HIGH" + +#: taextras.py:396 +msgid "LOW" +msgstr "LOW" + +#: taextras.py:397 +msgid "INPUT" +msgstr "INPUT" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "OUTPUT" + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "PWM" + +#: taextras.py:401 +msgid "SERVO" +msgstr "SERVO" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "ERRO: Verifica o Arduino e o número da porta." + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "ERRO: Valor deve ser um número entre 0 a 255." + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "ERRO: Valor deve ser HIGH ou LOW." + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "ERRO: O modo deve ser INPUT, OUTPUT, PWM ou SERVO." + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "senão" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "se então senão" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -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" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "espaço horizontal" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "expande pilha para a direita" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "espaço vertical" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "expande pilha para baixo" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "parar ação" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.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:416 +msgid "pin mode" +msgstr "modo pino" + +#: taextras.py:418 +msgid "mode" +msgstr "modo" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Escolhe a função do pino (INPUT, OUTPUT, PWM, SERVO)." + +#: taextras.py:420 +msgid "analog write" +msgstr "escrever analógico" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "valor" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "para a ação atual" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "Escreve valor analógico na porta especificada." -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Palete de blocos de variável" +#: taextras.py:423 +msgid "analog read" +msgstr "ler analógico" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "iniciar" +#: taextras.py:424 +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 "" +"Lê valor da porta analógica. Valor pode ser entre 0 e 1023. Utiliza Vref " +"para determinar a voltagem. Para USB, volt=((ler)*5)/1024) aproximadamente." + +#: taextras.py:426 +msgid "digital write" +msgstr "escrever digital" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "Escreve valor digital na porta especificada." + +#: taextras.py:428 +msgid "digital read" +msgstr "ler digital" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "Lê valor de porta digital." + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "Define valor HIGH para porta digital." + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "Configura porta do Arduino para entrada digital." + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "Configura porta do Arduino para guiar um \"servo\" (motor)." + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "Define valor LOW para porta digital." + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "Configura porta do Arduino para saída digital." + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "Configura porta do Arduino para PWM (modulação por largura de pulso)." + +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "Palete de blocos WeDo" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "conecta ação com os botões de execução da barra de ferramentas" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "texto" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "valor de texto" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "ação" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "topo da pilha de ação com nome" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "invoca pilha de ação com nome" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "guardar na caixa 1" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "guarda o valor numérico na Variável 1" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "guardar na caixa 2" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "guarda o valor numérico na Variável 2" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "caixa 1" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Variável 1 (valor numérico)" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "caixa 2" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Variável 2 (valor numérico)" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "guardar em" +#: taextras.py:465 +msgid "capture" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "caixa" +#: taextras.py:466 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "valor" +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-#\n" +"exemplos" + +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "a minha caixa" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "guarda valor numérico em variável com nome" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "variável com nome (valor numérico)" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "ação 1" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "topo da pilha Ação 1" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "ação 2" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "topo da pilha Ação 2" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "invoca pilha Ação 1" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "invoca pilha Ação 2" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "lixo" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "esvaziar lixo" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "apaga permanentemente os itens no lixo" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "restaurar tudo" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "restaura todos os blocos do lixo" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "limpar tudo" +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "move todos os blocos para o lixo" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Partilhar os blocos selecionados" +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "retomar a reprodução de vídeo ou áudio" #: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 #: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 @@ -732,854 +1759,704 @@ msgstr "Partilhar os blocos selecionados" msgid "Title" msgstr "Título" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Parar tartaruga" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Mostrar blocos" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Esconder blocos" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "não saiu para" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Eu não sei como" - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "não gosta" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "como entrada" - -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "mostra a palete seguinte" - -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "altera a orientação das paletes de blocos" - -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Carregar..." - -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Guardar..." - -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "clica para abrir" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientação" +#: 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 "O valor médio da cor RGB da câmara é inserido na pilha" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "próximo" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "amarelo" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "deslocar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "mostra coordenadas polares" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "esvazia FILO (pilha último a entrar, primeiro a sair)" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Selecionar blocos para partilhar" +#: 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 "saída da câmara" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "TartarugArte" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "inserir a aceleração em X, Y, Z para pilha" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "imagem" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "operador se-então que usa operadores booleanos da palete Números" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Guardar como Logo" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "expande pilha para a direita" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Guardar como imagem" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Objeto de média do Diário do Sugar" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "revisão" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "caixa 2" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Guardar revisão" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "caixa 1" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Desligar ajuda flutuante" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Passo a passo" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Ligar ajuda flutuante" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplica duas entradas numéricas" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Mostrar palete" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Mostrar/esconder blocos" #: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 msgid "Hide palette" msgstr "Esconder palete" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Diminuir a escala das coordenadas" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Aumentar a escala das coordenadas" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Parceiros" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Editar" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "A minha sessão TartarugArte" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Ver" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Objeto de vídeo do Diário do Sugar" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projeto" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "ciano" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Guardar/Carregar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "coor.x da direita do ecrã" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copiar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Palete de opções extra" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Colar" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Carregar exemplo" -#: TurtleArtActivity.py:591 -#, fuzzy -msgid "Restore blocks from trash" -msgstr "restaura todos os blocos do lixo" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "move todos os blocos para o lixo" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Ecrã Inteiro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "lista" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Coordenadas cartesianas" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "O diretório de configuração não tem permissão de escrita: %s" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Coordenadas polares" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "retomar média" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Coordenadas métricas" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "orientação" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Aumentar tamanho dos blocos" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Partilha de blocos desativada" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Diminuir tamanho dos blocos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +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" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Carregar exemplo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "desenha texto ou mostra média do Diário" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Limpar" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Executar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "vídeo" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Passo a passo" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "azul" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Ajuda" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "mostra coordenadas Cartesianas" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Parar" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Ação sem opção:" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Carregar projeto" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "expande pilha para baixo" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Carregar plugin" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "operador módulo (resto da divisão inteira)" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Carregar bloco de Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "y base" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "palete" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "guardar SVG" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Partilha de blocos desativada" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +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" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "caneta embaixo" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "esperar" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "caixa" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "A transferência falhou!" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "deslocar" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "O plugin não pode ser instalado." +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "invoca pilha de ação com nome" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Por favor reinicia o TartarugArte para utilizar este plugin." +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "ação" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "O plugin %s já está instalado." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operador faz-até-Verdade que utiliza operadores booleanos da palete de " +"Números" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Queres reinstalar %s?" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "utilização é" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "A minha sessão TartarugArte" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Variável 2 (valor numérico)" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Ativar colaboração" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "dividir" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Atividades" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "nome da imagem" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Parceiros" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "enquanto" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Partilhar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "a largura da tela" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Configuração" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "pilha vazia?" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Vizinhança" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "variável com nome (valor numérico)" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Nome" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "próximo" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Identificação de conta" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "se então" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Servidor" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "definir tamanho da caneta" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Porta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "modelo de apresentação: escolhe objeto do Diário (sem descrição)" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Palavra-Passe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "até" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Registar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "parar média" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Cores" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Ligar ajuda flutuante" -#: 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 "Transferir" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "apaga permanentemente os itens no lixo" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "rodar 180°" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Transferir para a Web" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "topo da pilha Ação 1" -#: gnome_plugins/uploader_plugin.py:90 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"Precisas de ter uma conta em http://turtleartsite.sugarlabs.org para " -"transferir o teu projeto." +"um bloco programável: utilizado para adicionar equações matemáticas " +"avançadas de uma variável, por ex., sin(x)" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Nome de Utilizador:" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Palete de operadores de fluxo" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Palavra-Passe:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "topo de uma pilha que encolhe. Usado com o bloco base" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Título:" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +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" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Descrição:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "devolve a coordenada Y do rato" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Enviar à Web" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "contém o tom atual da caneta" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Cancelar" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinusoide" #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "O login falhou" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "A transferência falhou!" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "x esquerda" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Palete de blocos de sensores" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "definir orientação" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "aceleração" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "a cor RGB por debaixo da tartaruga é inserida na pilha" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "inserir a aceleração em X, Y, Z para pilha" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "arruma a área de trabalho escondendo os blocos" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "som" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "sinal bruto da entrada do microfone" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "volume" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "volume da entrada do microfone" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "altura do som" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "altura do som da entrada do microfone" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Operador Python de chr" -#: 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 "resistência" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "espaço horizontal" -#: 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 "resistência da entrada do microfone" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Coordenadas métricas" -#: 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 "voltagem" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "valor de texto" -#: 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 "voltagem da entrada do microfone" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "descrição" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Palete de objetos de média" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Eu não sei como" -#: 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 "luminosidade" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "definir tamanho do texto" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "nível de luz detetado pela câmara" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Nome de Utilizador:" -#: 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 "O valor médio da cor RGB da câmara é inserido na pilha" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" +"inicia polígono preenchido (utilizado com o bloco terminar preenchimento)" -#: 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 "saída da câmara" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "modelo de apresentação: escolhe quatro objetos do Diário" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "nível de luz detetado pelo sensor de luz" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Ver" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "define o nível de cinza da linha desenhada pela tartaruga" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "ler valor do dispositivo RFID" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Palavra-Passe:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "enquanto" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "tartaruga vê" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operador faz-enquanto-Verdade que utiliza operadores booleanos da palete de " -"Números" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "parar ação" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "até" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "verde" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"operador faz-até-Verdade que utiliza operadores booleanos da palete de " -"Números" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "tom" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "topo" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "preenche o fundo com (cor, tom)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "topo de uma pilha que pode encolher" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "guardar imagem" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "diário" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "altura do som" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Objeto de média do Diário do Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "devolve 1 se o botão do rato for premido" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "áudio" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Aumentar a escala das coordenadas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Objeto de som do Diário do Sugar" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "caneta levantada" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "vídeo" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "laranja" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Objeto de vídeo do Diário do Sugar" +#: TurtleArt/tabasics.py:747 +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:175 -msgid "description" -msgstr "descrição" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "insere valor no FILO (pilha último a entrar, primeiro a sair)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Campo de descrição do Diário do Sugar" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "limpar tudo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "mostrar" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "então" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "desenha texto ou mostra média do Diário" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Registar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "mostrar alinhado" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "não é igual" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "ajustar escala" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "se então senão" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "ajusta a escala do média" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "para a ação atual" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "guardar imagem" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "roda a tartaruga na direção dos ponteiros do relógio (ângulo em graus)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "nome da imagem" +#: TurtleArt/tabasics.py:368 +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:248 -msgid "saves a picture to the Sugar Journal" -msgstr "guarda uma imagem no Diário do Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "coor.x da esquerda do ecrã" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "guardar SVG" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Repor o tamanho dos blocos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -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:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "tartaruga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "escala" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "mostra a palete seguinte" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "contém o valor atual da escala" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "esconder blocos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "esperar por média" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "nível de luz detetado pela câmara" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "espera que o vídeo ou áudio atual acabe" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Operador Python de int" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "parar média" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "operador lógico menor-que" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "parar vídeo ou áudio" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "restaura todos os blocos do lixo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "pausar média" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Guardar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "pausar vídeo ou áudio" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "guardar na caixa 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "retomar média" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "guardar na caixa 2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "retomar a reprodução de vídeo ou áudio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "esconde as barras de ferramentas do Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "falar" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +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:307 -msgid "hello" -msgstr "olá" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "imprimir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "fala texto" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "devolve a coordenada X do rato" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinusoide" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "vermelho" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Guardar como Logo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "duração" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "define a cor da linha desenhada pela tartaruga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -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:460 +msgid "set text color" +msgstr "definir cor do texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "botão premido" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "volume" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "devolve 1 se o botão do rato for premido" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Ativar colaboração" + +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Palete de blocos de sensores" + +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Carregar plugin" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "devolve Verdadeiro se o botão do rato for premido" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "x rato" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "devolve a coordenada X do rato" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "y rato" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "devolve a coordenada Y do rato" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "número" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "consultar teclado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -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:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "topo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "teclado" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Enviar à Web" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "contém resultados do bloco consultar-teclado em ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Coordenadas cartesianas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "ler pixel" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Nome" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -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:234 +msgid "set scale" +msgstr "ajustar escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "tartaruga vê" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Partilhar os blocos selecionados" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "devolve a cor que a tartaruga \"vê\"" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "branco" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "tempo" +#: TurtleArt/tabasics.py:846 +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:448 msgid "elapsed time (in seconds) since program started" msgstr "tempo decorrido (em segundos) desde que o programa começou" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Palete de opções extra" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "inserir" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "insere valor no FILO (pilha último a entrar, primeiro a sair)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "mostrar pilha" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "mostra valores no FILO (pilha último a entrar, primeiro a sair)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "esvaziar pilha" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "esvazia FILO (pilha último a entrar, primeiro a sair)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "retirar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "retira valor do FILO (pilha último a entrar, primeiro a sair)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "pilha vazia?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "devolve Verdadeiro se a pilha estiver vazia" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "comentar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "coloca um comentário no teu código" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "imprimir" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "imprime valor no bloco de estado na base do ecrã" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Cancelar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Operador Python de chr" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "a altura da tela" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Operador Python de int" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "apresentação 2x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "menos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -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:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "e" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -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)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "topo de uma pilha que pode encolher" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -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/talogo.py:624 +msgid "as input" +msgstr "como entrada" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1587,56 +2464,28 @@ msgstr "" msgid "Python block" msgstr "Bloco de Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -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" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesiano" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "mostra coordenadas Cartesianas" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "Polar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "mostra coordenadas polares" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "tartaruga" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "escolhe que tartaruga comandar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "esperar por média" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "carapaça da tartaruga" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "aceleração" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "coloca uma \"carapaça\" personalizada na tartaruga" +#: TurtleArt/tabasics.py:427 +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)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "topo de uma pilha que encolhe. Usado com o bloco base" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "definir cor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "carregar" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "mín" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1644,70 +2493,69 @@ msgstr "carregar" msgid "loads a block" msgstr "carrega um bloco" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "definir xy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Palete de comandos da caneta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "palete" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "mostra valores no FILO (pilha último a entrar, primeiro a sair)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "seleciona uma palete" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"operador faz-enquanto-Verdade que utiliza operadores booleanos da palete de " +"Números" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Palete de modelos de apresentação" +#: turtleblocks.py:363 +msgid "File" +msgstr "Ficheiro" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "esconder blocos" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "operador lógico não-é-igual (NOT)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "arruma a área de trabalho escondendo os blocos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "coor.y da base do ecrã" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "mostrar blocos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "modelo de apresentação: escolhe objeto do Diário (com descrição)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "restaura blocos escondidos" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Palete de operadores numéricos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "esconde as barras de ferramentas do Sugar" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "multiplicar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "lista" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "para sempre" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "lista de pontos de apresentação" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "O plugin %s já está instalado." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "modelo de apresentação: lista de pontos" +#: TurtleArt/tabasics.py:329 +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:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "modelo de apresentação: escolhe objeto do Diário (sem descrição)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "fala texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "modelo de apresentação: escolhe objeto do Diário (com descrição)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "revisão" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "modelo de apresentação: escolhe quatro objetos do Diário" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "limpar" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1716,995 +2564,1053 @@ msgstr "modelo de apresentação: escolhe quatro objetos do Diário" msgid "presentation template: select two Journal objects" msgstr "modelo de apresentação: escolhe dois objetos do Diário" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "coor.x da esquerda do ecrã" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "base" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "coor.y da base do ecrã" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "largura" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "a largura da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "coor.x da direita do ecrã" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "coor.y do topo do ecrã" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "altura" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "a altura da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "x título" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "y título" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "x esquerda" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "y topo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "x direita" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Aumentar tamanho dos blocos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "y base" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Ecrã Inteiro" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "apresentação 1x1" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Ficheiro não encontrado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "apresentação 2x1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "mostrar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "apresentação 1x2" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "apresentação 2x2" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "aleatório" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "operador lógico maior-que" -#: pysamples/brain.py:54 -msgid "Spanish" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" +"roda a tartaruga na direção contrária dos ponteiros do relógio (ângulo em " +"graus)" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "preto" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "calcula a raiz quadrada" -#: pysamples/brain.py:100 +#: TurtleArt/tabasics.py:237 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" +"contém o valor atual da coordenada Y da tartaruga (pode ser usado em vez de " +"um bloco de número)" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "x rato" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "y rato" #: pysamples/grecord.py:215 msgid "stop" msgstr "parar" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "tocar" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "guardar" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "rodar 180°" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "roda 180 graus" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "utilização é" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Ação sem opção:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Ficheiro não encontrado" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "O diretório de configuração não tem permissão de escrita: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "Novo" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Abrir" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Guardar" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Guardar como" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Sair" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Ficheiro" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Repor a escala das coordenadas" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Repor o tamanho dos blocos" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Mostrar/esconder blocos" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Ferramentas" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Depurar" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Tartaruga" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "maior que" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "coor.x" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Tens trabalho não guardado. Queres guardar antes de sair?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Ajuda" #: turtleblocks.py:448 msgid "Save project?" msgstr "Guardar projeto?" -#~ msgid "Turtle Art Mini" -#~ msgstr "TartarugArte Mini" - -#~ msgid "Turtle Confusion" -#~ msgstr "Confusão Tartaruga" - -#~ msgid "Select a challenge" -#~ msgstr "Escolhe um desafio" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Palete de pesos Mexicanos" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Palete de pesos Colombianos" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Palete de francos Ruandenses" - -#~ msgid "Palette of US dollars" -#~ msgstr "Paleta de dólares EUA" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "Paleta de dólares Australianos" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "Paleta de Guaranis Paraguaios" - -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "Paleta de Nuevo Soles Peruanos" - -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "Paleta de Pesos Uruguaios" - -#~ msgid "TurtleBots" -#~ msgstr "TartarugaBots" - -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "ajustar a intensidade do LED entre 0 e 255" - -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "devolve o nível de cinza do objeto como um número entre 0 e 1023" - -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "devolve 1 quando o botão é premido, caso contrário devolve 0" - -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "devolve o nível de luz ambiente como um número entre 0 e 1023" - -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "devolve a temperatura ambiente como um número entre 0 e 255" - -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "" -#~ "devolve a distância do objeto em frente ao sensor como um número entre 0 e " -#~ "255" - -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "devolve 0 ou 1 dependendo da inclinação do sensor" - -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "" -#~ "devolve 1 quando o sensor deteta um campo magnético, caso contrário devolve " -#~ "0" - -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "alterna de 0 para 1, a frequência depende da vibração" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "escolhe que tartaruga comandar" -#~ msgid "LED" -#~ msgstr "LED" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "x direita" -#~ msgid "button" -#~ msgstr "botão" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "define a cor do texto desenhado pela tartaruga" -#~ msgid "grayscale" -#~ msgstr "escala de cinza" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "nível de luz detetado pelo sensor de luz" -#~ msgid "ambient light" -#~ msgstr "luz ambiente" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "O plugin não pode ser instalado." -#~ msgid "temperature" -#~ msgstr "temperatura" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "teclado" -#~ msgid "distance" -#~ msgstr "distância" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arco" -#~ msgid "tilt" -#~ msgstr "inclinação" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "raio" -#~ msgid "magnetic induction" -#~ msgstr "indução magnética" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Coordenadas polares" -#~ msgid "vibration" -#~ msgstr "vibração" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "definir tom" -#~ msgid "Butia Robot" -#~ msgstr "Robô Butia" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "operador lógico e (AND)" -#~ msgid "refresh Butia" -#~ msgstr "refrescar Butia" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Precisas de ter uma conta em http://turtleartsite.sugarlabs.org para " +"transferir o teu projeto." -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "refresca o estado da palete e blocos Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "palete" -#~ msgid "battery charge Butia" -#~ msgstr "carga de bateria Butia" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Executar" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "devolve a carga de bateria como um número entre 0 e 255" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "mostrar pilha" -#~ msgid "speed Butia" -#~ msgstr "velocidade Butia" +#: TurtleArt/tabasics.py:217 +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ã)" -#~ msgid "forward Butia" -#~ msgstr "avançar Butia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "seleciona uma palete" -#~ msgid "move the Butia robot forward" -#~ msgstr "move o robô Butia em frente" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "volume da entrada do microfone" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "move o robô Butia uma distância predefinida" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Título:" -#~ msgid "left Butia" -#~ msgstr "esquerda Butia" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Palete de objetos de média" +#: TurtleArtActivity.py:591 #, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "roda o robô Butia para a direita" - -#~ msgid "backward Butia" -#~ msgstr "recuar Butia" - -#~ msgid "move the Butia robot backward" -#~ msgstr "move o robô Butia para trás" - -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "move o robô Butia para trás uma distância predefinida" - -#~ msgid "right Butia" -#~ msgstr "direita Butia" - -#~ msgid "turn the Butia robot at right" -#~ msgstr "roda o robô Butia para a direita" - -#~ msgid "turn Butia" -#~ msgstr "rodar Butia" +msgid "Restore blocks from trash" +msgstr "restaura todos os blocos do lixo" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "roda o robô Butia x graus" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Palete de blocos de variável" -#~ msgid "stop Butia" -#~ msgstr "parar Butia" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "utilizado como entrada numérica em operadores matemáticos" -#~ msgid "stop the Butia robot" -#~ msgstr "para o robô Butia" +#: 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 "Transferir" -#~ msgid "Butia" -#~ msgstr "Butia" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Servidor" -#~ msgid "Error on initialization of the camera" -#~ msgstr "Erro na inicialização da câmara" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "apresentação 2x2" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "Não foi encontrada nenhuma câmara" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Variável 1 (valor numérico)" -#~ msgid "Error stopping camera" -#~ msgstr "Erro ao parar câmara" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Vizinhança" -#~ msgid "Error starting camera" -#~ msgstr "Erro ao iniciar câmara" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "soma duas entradas alfanuméricas" -#~ msgid "FollowMe" -#~ msgstr "SegueMe" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "igual" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "Procurar por um bloco NXT ligado." +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "senão" -#~ msgid "calibration" -#~ msgstr "calibração" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "não gosta" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "guarda uma calibração personalizada" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Tens trabalho não guardado. Queres guardar antes de sair?" -#~ msgid "return a personalized calibration" -#~ msgstr "voltar à calibração personalizada" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "restaura blocos escondidos" -#~ msgid "follow" -#~ msgstr "seguir" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "carregar" -#~ msgid "follow a color or calibration" -#~ msgstr "seguir uma cor ou calibração" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "parar vídeo ou áudio" -#~ msgid "minimum pixels" -#~ msgstr "mínimo de pixéis" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "A tartaruga não desenhará quando movida." -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "define o número mínimo de pixeis a seguir" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "retirar" -#~ msgid "threshold" -#~ msgstr "limiar" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "tamanho da caneta" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "define um limiar para uma cor RGB" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "carapaça da tartaruga" -#~ msgid "camera mode" -#~ msgstr "modo de câmara" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "toca uma sinusoide na frequência, amplitude, e duração (em segundos)" -#~ msgid "x position" -#~ msgstr "posição x" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "return x position" -#~ msgstr "devolve posição x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "falar" -#~ msgid "y position" -#~ msgstr "posição y" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "ler valor do dispositivo RFID" -#~ msgid "return y position" -#~ msgstr "devolve posição y" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "move a tartaruga ao longo de um arco" -#~ msgid "pixels" -#~ msgstr "pixéis" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "roda 180 graus" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "devolve o número de pixeis da maior mancha" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "operador lógico igual-a" -#~ msgid "empty calibration" -#~ msgstr "esvaziar calibração" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Palete de cores da caneta" -#~ msgid "error in string conversion" -#~ msgstr "erro na conversão da string" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "pausar vídeo ou áudio" -#~ msgid "SumBot" -#~ msgstr "SumBot" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "guarda o valor numérico na Variável 1" -#~ msgid "speed SumBot" -#~ msgstr "velocidade SumBot" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "guarda o valor numérico na Variável 2" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "envia a velocidade ao SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "coloca uma \"carapaça\" personalizada na tartaruga" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "define a velocidade padrão para os comandos de movimento" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "botão premido" -#~ msgid "forward SumBot" -#~ msgstr "avançar SumBot" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "move a tartaruga para trás" -#~ msgid "move SumBot forward" -#~ msgstr "move o SumBot em frente" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "coor.y do topo do ecrã" -#~ msgid "backward SumBot" -#~ msgstr "recuar SumBot" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Mostrar blocos" -#~ msgid "move SumBot backward" -#~ msgstr "move o SumBot para trás" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "tocar" -#~ msgid "stop SumBot" -#~ msgstr "parar SumBot" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "guardar" -#~ msgid "stop the SumBot" -#~ msgstr "pára o SumBot" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Cores" -#~ msgid "left SumBot" -#~ msgstr "esquerda SumBot" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "define o tamanho da linha desenhada pela tartaruga" -#~ msgid "turn left the SumBot" -#~ msgstr "roda o SumBot para a esquerda" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Abrir" -#~ msgid "right SumBot" -#~ msgstr "direita SumBot" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientação" -#~ msgid "turn right the SumBot" -#~ msgstr "roda o SumBot para a direita" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "coor.y" -#~ msgid "angle to center" -#~ msgstr "ângulo ao centro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +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)" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "obtém o ângulo ao centro do dojo" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "se" -#~ msgid "angle to Enemy" -#~ msgstr "ângulo ao Inimigo" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +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ã." -#~ msgid "get the angle to the Enemy" -#~ msgstr "obtém o ângulo ao Inimigo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "x coor. SumBot" -#~ msgstr "coor. x SumBot" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Parar" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "obtém a coordenada x do SumBot" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "ação 2" -#~ msgid "y coor. SumBot" -#~ msgstr "coor. y SumBot" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "ação 1" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "obtém a coordenada y do SumBot" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "terminar preenchimento" -#~ msgid "x coor. Enemy" -#~ msgstr "coor. x Inimigo" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copiar" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "obtém a coordenada x do Inimigo" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Colar" -#~ msgid "y coor. Enemy" -#~ msgstr "coor. y Inimigo" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "não saiu para" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "obtém a coordenada y do Inimigo" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Atividades" -#~ msgid "rotation SumBot" -#~ msgstr "rotação SumBot" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Transferir para a Web" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "obtém a rotação do SumBot" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "esvaziar pilha" -#~ msgid "rotation Enemy" -#~ msgstr "rotação Inimigo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "retira valor do FILO (pilha último a entrar, primeiro a sair)" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "obtém a rotação do Inimigo" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Limpar" -#~ msgid "distance to center" -#~ msgstr "distância ao centro" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Palete de modelos de apresentação" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "obtém a distância ao centro do dojo" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "ângulo" -#~ msgid "distance to Enemy" -#~ msgstr "distância ao Inimigo" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identidade" -#~ msgid "get the distance to the Enemy" -#~ msgstr "obtém a distância ao Inimigo" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Guardar/Carregar" -#~ msgid "update information" -#~ msgstr "atualizar informação" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "y topo" -#~ msgid "update information from the server" -#~ msgstr "atualiza informação do servidor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "áudio" -#~ msgid "Palette of physics blocks" -#~ msgstr "Palete de blocos Física" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Ferramentas" -#~ msgid "start polygon" -#~ msgstr "iniciar polígono" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Porta" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "" -#~ "Começa a definir um novo polígono com base na posição XY atual da Tartaruga." +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "esquerda" -#~ msgid "add point" -#~ msgstr "adicionar ponto" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "comentar" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "" -#~ "Adiciona um novo ponto ao polígono atual baseado com base na posição XY " -#~ "atual da Tartaruga." +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "subtrai a entrada numérica de baixo à entrada numérica em cima" -#~ msgid "end polygon" -#~ msgstr "terminar polígono" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "pausar média" -#~ msgid "Define a new polygon." -#~ msgstr "Define um novo polígono." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"consulta por entrada de teclado (resultados guardados no bloco teclado)" -#~ msgid "end filled polygon" -#~ msgstr "terminar polígono preenchido" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesiano" -#~ msgid "Not a simple polygon" -#~ msgstr "Não é um polígono simples" +#: 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 "voltagem" -#~ msgid "Define a new filled polygon." -#~ msgstr "Define um novo polígono preenchido." +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "limpa o ecrã e coloca a tartaruga na posição inicial" -#~ msgid "triangle" -#~ msgstr "triângulo" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "sinal bruto da entrada do microfone" -#~ msgid "base" -#~ msgstr "base" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "devolve a cor que a tartaruga \"vê\"" -#~ msgid "Add a triangle object to the project." -#~ msgstr "Adiciona um objeto de triângulo ao projeto." +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "invoca pilha Ação 1" -#~ msgid "circle" -#~ msgstr "círculo" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Palete de comandos da tartaruga" -#~ msgid "Add a circle object to the project." -#~ msgstr "Adiciona um objeto de círculo ao projeto." +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "repete para sempre" -#~ msgid "rectangle" -#~ msgstr "retângulo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "mostrar alinhado" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Adiciona um objeto de retângulo ao projeto." +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "TartarugArte" -#~ msgid "reset" -#~ msgstr "reiniciar" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Queres reinstalar %s?" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "Reinicia o projeto; limpa a lista de objetos." +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Carregar projeto" -#~ msgid "motor" -#~ msgstr "motor" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projeto" -#~ msgid "torque" -#~ msgstr "binário" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Depurar" -#~ msgid "speed" -#~ msgstr "velocidade" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Desligar ajuda flutuante" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "" -#~ "O binário do motor e a velocidade variam entre 0 (desligado) e números " -#~ "positivos; o motor é colocado no último objeto criado." +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" -#~ msgid "pin" -#~ msgstr "pino" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Palavra-Passe" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "Prende um objeto de modo a que não possa cair." +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "espaço vertical" -#~ msgid "joint" -#~ msgstr "articulação" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Por favor reinicia o TartarugArte para utilizar este plugin." -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "Junta dois objetos (o último objeto criado e o objeto no ponto x, y)." +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"completa o polígono preenchido (utilizado com o bloco iniciar preenchimento)" -#~ msgid "save as Physics activity" -#~ msgstr "guardar como atividade de Física" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Partilhar" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "Guardar o projeto no Diário como uma atividade Física." +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "menor que" -#~ msgid "gear" -#~ msgstr "engrenagem" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "raiz quadrada" -#~ msgid "Add a gear object to the project." -#~ msgstr "Adiciona um objeto engrenagem ao projeto." +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Repor a escala das coordenadas" -#~ msgid "density" -#~ msgstr "densidade" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "mostrar blocos" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "" -#~ "Define a propriedade de densidade para objetos (densidade pode ser qualquer " -#~ "número positivo)." +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Sair" -#~ msgid "friction" -#~ msgstr "fricção" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "direita" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "" -#~ "Define a propriedade de fricção para objetos (valor de 0 a 1, em que 0 " -#~ "desliga a fricção e 1 é fricção forte)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Campo de descrição do Diário do Sugar" -#~ msgid "bounciness" -#~ msgstr "ricochete" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "definir cinza" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "" -#~ "Ajusta a propriedade de ricochete para objetos (valores de 0 a 1, em que 0 " -#~ "significa sem ricochete e 1 tem muito ricochete)." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "lista de pontos de apresentação" -#~ msgid "dynamic" -#~ msgstr "dinâmico" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "duração" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "" -#~ "se dinâmico = 1, o objeto pode se mover; se dinâmico = 0, está fixo sua " -#~ "posição." +#: turtleblocks.py:354 +msgid "New" +msgstr "Novo" -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Palete de blocos WeDo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "coloca um comentário no teu código" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "" -#~ "saída do sensor de inclinação: (-1 == sem inclinação, 0 == inclinação para a " -#~ "frente, 3 == inclinação para trás, 1 == inclinação para a esquerda, 2 == " -#~ "inclinação para a direita)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "ler pixel" -#~ msgid "distance sensor output" -#~ msgstr "saída sensor de distância" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "escala" -#~ msgid "Motor A" -#~ msgstr "Motor A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "base" -#~ msgid "returns the current value of Motor A" -#~ msgstr "devolve o valor atual do Motor A" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "roxo" -#~ msgid "Motor B" -#~ msgstr "Motor B" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Diminuir a escala das coordenadas" -#~ msgid "returns the current value of Motor B" -#~ msgstr "devolve o valor atual do Motor B" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "clica para abrir" -#~ msgid "set the value for Motor A" -#~ msgstr "define o valor para o Motor A" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "altura do som da entrada do microfone" -#~ msgid "set the value for Motor B" -#~ msgstr "define o valor para Motor B" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Configuração" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "Palete de blocos de motor do LEGO NXT" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Descrição:" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "Palete de blocos de sensor do LEGO NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "diário" -#~ msgid "touch" -#~ msgstr "tato" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "esvaziar lixo" -#~ msgid "ultrasonic" -#~ msgstr "ultrassónico" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "A tartaruga desenhará quando movida." -#~ msgid "light" -#~ msgstr "luz" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Carregar..." -#, fuzzy -#~ msgid "grey" -#~ msgstr "cinza" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Objeto de som do Diário do Sugar" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "Por favor verifica a ligação com o bloco." +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Parar tartaruga" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "O valor da energia deve ser entre -127 e 127." +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Tartaruga" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "Ocorreu um erro: verifica todas as ligações e tenta ligar novamente." +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "altera a orientação das paletes de blocos" -#~ msgid "NXT not found" -#~ msgstr "NXT não encontrado" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "guardar em" -#~ msgid "refresh NXT" -#~ msgstr "atualizar NXT" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Esconder blocos" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "Procurar por um bloco NXT ligado." +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Carregar bloco de Python" -#~ msgid "play tone" -#~ msgstr "tocar tom" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "mais" -#~ msgid "frequency" -#~ msgstr "frequência" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "ou" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "Toca um tom na frequência durante tempo." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "modelo de apresentação: lista de pontos" -#~ msgid "port" -#~ msgstr "porta" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "operador de identidade utilizado para extender blocos" -#~ msgid "power" -#~ msgstr "energia" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Diminuir tamanho dos blocos" -#~ msgid "rotations" -#~ msgstr "rotações" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "define o tamanho do texto desenhado pela tartaruga" -#~ msgid "turn a motor" -#~ msgstr "gira um motor" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"contém o valor atual da orientação da tartaruga (pode ser usado em vez de um " +"bloco de número)" -#, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "sincroniza dois motores" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "imagem" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "sincroniza dois motores conectados na PORTA B e na PORTA C" +#: TurtleArt/tabasics.py:650 +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)" -#~ msgid "PORT A" -#~ msgstr "PORTA A" +#: TurtleArt/tabasics.py:349 +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)" -#~ msgid "PORT A of the brick" -#~ msgstr "PORTA A do bloco" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Mostrar palete" -#~ msgid "PORT B" -#~ msgstr "PORTA B" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "guarda uma imagem no Diário do Sugar" -#~ msgid "PORT B of the brick" -#~ msgstr "PORTA B do bloco" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Guardar revisão" -#~ msgid "PORT C" -#~ msgstr "PORTA C" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "iniciar" -#~ msgid "PORT C of the brick" -#~ msgstr "PORTA C do bloco" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "devolve Verdadeiro se a pilha estiver vazia" -#~ msgid "start motor" -#~ msgstr "arrancar motor" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "move a tartaruga para a frente" -#~ msgid "Run a motor forever." -#~ msgstr "Corre um motor para sempre." +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "avançar" -#~ msgid "brake motor" -#~ msgstr "travar motor" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "a minha caixa" -#~ msgid "Stop a specified motor." -#~ msgstr "Para um motor especificado." +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Identificação de conta" -#~ msgid "reset motor" -#~ msgstr "reiniciar motor" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Selecionar blocos para partilhar" -#~ msgid "Reset the motor counter." -#~ msgstr "Reinicia o contador do motor." +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "recuar" -#~ msgid "motor position" -#~ msgstr "posição do motor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "ajusta a escala do média" -#~ msgid "Get the motor position." -#~ msgstr "Devolve a posição do motor." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "contém o valor atual da escala" -#~ msgid "PORT 1" -#~ msgstr "PORTA 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "apresentação 1x1" -#~ msgid "PORT 1 of the brick" -#~ msgstr "PORTA 1 do bloco" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "apresentação 1x2" -#~ msgid "read" -#~ msgstr "ler" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "topo da pilha de ação com nome" -#~ msgid "sensor" -#~ msgstr "sensor" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "guarda valor numérico em variável com nome" -#~ msgid "Read sensor output." -#~ msgstr "Ler saída do sensor." +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "operador lógico ou (OR)" -#~ msgid "PORT 2" -#~ msgstr "PORTA 2" +#: 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 "voltagem da entrada do microfone" -#~ msgid "PORT 2 of the brick" -#~ msgstr "PORTA 2 do bloco" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "repete determinado número de vezes" -#~ msgid "light sensor" -#~ msgstr "sensor de luz" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Guardar..." -#~ msgid "PORT 3" -#~ msgstr "PORTA 3" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "invoca pilha Ação 2" -#~ msgid "PORT 3 of the brick" -#~ msgstr "PORTA 3 do bloco" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "definir xy" -#~ msgid "touch sensor" -#~ msgstr "sensor de tato" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "y título" -#~ msgid "distance sensor" -#~ msgstr "sensor de distancia" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "x título" -#~ msgid "PORT 4" -#~ msgstr "PORTA 4" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "preencher ecrã" -#~ msgid "PORT 4 of the brick" -#~ msgstr "PORTA 4 do bloco" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Guardar como" -#~ msgid "sound sensor" -#~ msgstr "sensor de som" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "definir xy" -#~ msgid "color sensor" -#~ msgstr "sensor de cor" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "lixo" -#~ msgid "set light" -#~ msgstr "definir luz" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "Polar" -#~ msgid "Set color sensor light." -#~ msgstr "Define a luz do sensor de cor." +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repetir" -#~ msgid "HIGH" -#~ msgstr "HIGH" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "espera que o vídeo ou áudio atual acabe" -#~ msgid "LOW" -#~ msgstr "LOW" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Guardar como imagem" -#~ msgid "INPUT" -#~ msgstr "INPUT" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Editar" -#~ msgid "OUTPUT" -#~ msgstr "OUTPUT" +#: 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 "resistência da entrada do microfone" -#~ msgid "PWM" -#~ msgstr "PWM" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "topo da pilha Ação 2" -#~ msgid "SERVO" -#~ msgstr "SERVO" +#: TurtleArt/tabasics.py:604 +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)" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "ERRO: Verifica o Arduino e o número da porta." +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "máx" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "ERRO: Valor deve ser um número entre 0 a 255." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "imprime valor no bloco de estado na base do ecrã" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "ERRO: Valor deve ser HIGH ou LOW." +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "iniciar preenchimento" -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "ERRO: O modo deve ser INPUT, OUTPUT, PWM ou SERVO." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "contém resultados do bloco consultar-teclado em ASCII" -#~ msgid "pin mode" -#~ msgstr "modo pino" +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "inserir" -#~ msgid "mode" -#~ msgstr "modo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +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)" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "Escolhe a função do pino (INPUT, OUTPUT, PWM, SERVO)." +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "restaurar tudo" -#~ msgid "analog write" -#~ msgstr "escrever analógico" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "olá" -#~ msgid "Write analog value in specified port." -#~ msgstr "Escreve valor analógico na porta especificada." +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "blocos de tartaruga" -#~ msgid "analog read" -#~ msgstr "ler analógico" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#~ 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 "" -#~ "Lê valor da porta analógica. Valor pode ser entre 0 e 1023. Utiliza Vref " -#~ "para determinar a voltagem. Para USB, volt=((ler)*5)/1024) aproximadamente." +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "cinza" -#~ msgid "digital write" -#~ msgstr "escrever digital" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#~ msgid "Write digital value to specified port." -#~ msgstr "Escreve valor digital na porta especificada." +#: TurtleArtActivity.py:766 +#, fuzzy +msgid "Palettes" +msgstr "palete" -#~ msgid "digital read" -#~ msgstr "ler digital" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "Read value from digital port." -#~ msgstr "Lê valor de porta digital." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "Define valor HIGH para porta digital." +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "Configura porta do Arduino para entrada digital." +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "Configura porta do Arduino para guiar um \"servo\" (motor)." +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#~ msgid "Set LOW value for digital port." -#~ msgstr "Define valor LOW para porta digital." +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "Configura porta do Arduino para saída digital." +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "Configura porta do Arduino para PWM (modulação por largura de pulso)." +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Palete de blocos WeDo" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" -#, fuzzy -#~ msgid "samples" -#~ msgstr "exemplos" +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "" -#~ "define a velocidade dos motores Butia como um valor entre 0 e 1023, passado " -#~ "como argumento" +#~ "define a velocidade dos motores Butia como um valor entre 0 e 1023, " +#~ "passado como argumento" #~ msgid "turn the Butia robot to the left" #~ msgstr "gira o robô Butia para a esquerda" @@ -2867,10 +3773,11 @@ msgstr "Guardar projeto?" #~ msgstr "empurrabotão" #~ 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 "" -#~ "devolve o nível de cinza do objecto encontrado por ele como um número entre " -#~ "0 e 1023" +#~ "devolve o nível de cinza do objecto encontrado por ele como um número " +#~ "entre 0 e 1023" #~ msgid "activity count" #~ msgstr "número de acessos" @@ -2969,8 +3876,8 @@ msgstr "Guardar projeto?" #~ 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)" +#~ "guarda o tamanho actual da cor do texto (pode ser usado em lugar de um " +#~ "bloco de número)" #, fuzzy #~ msgid "flow" diff --git a/po/pt_BR.po b/po/pt_BR.po index 8d980e1..ee6dbe0 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,590 +43,1998 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -#, fuzzy -msgid "Palette of turtle commands" -msgstr "paleta de comandos da tartaruga" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "para frente" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:132 -#, fuzzy -msgid "moves turtle forward" -msgstr "mover a tartaruga para frente" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "voltar" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -#, fuzzy -msgid "moves turtle backward" -msgstr "mover a tartaruga para trás" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "limpar" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -#, fuzzy -msgid "clears the screen and reset the turtle" -msgstr "limpar a tela e inicializar a tartaruga" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "esquerda" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:166 -#, fuzzy -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "virar a tartaruga no sentido anti-horário (ângulo em graus)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "direita" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:178 -#, fuzzy -msgid "turns turtle clockwise (angle in degrees)" -msgstr "virar a tartaruga no sentido horário (ângulo em graus)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arco" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "ângulo" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "raio" +#: taextras.py:86 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 "" -#: TurtleArt/tabasics.py:190 -#, fuzzy -msgid "moves turtle along an arc" -msgstr "mover a tartaruga formando um arco" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "ajustar xy" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "altura" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "largura" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -#, fuzzy +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -"mover a tartaruga para a posição xcor, ycor; (0, 0). Isto é o centro da " -"tela." -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "definir cabeçalho" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -#, fuzzy -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "definir a direção da tartaruga (0 é para a frente do topo da tela.)" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "coordenada X" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -"prender na atual coordenada x o valor da tartaruga (pode ser usado no lugar " -"de um número de bloco)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "coordenada Y" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:270 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"prender na atual coordenada y o valor da tartaruga (pode ser usado no lugar " -"de um número de bloco)" -# Ou cabeçalho -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "direção" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:274 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -"prender o valor da atual direção da tartaruga (pode ser usada no lugar de um " -"número de bloco)" -#: TurtleArt/tabasics.py:282 -#, fuzzy -msgid "Palette of pen commands" -msgstr "paleta de comandos da caneta" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "preencher tela" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "cor" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "tonalidade" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "direita" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "preenche o fundo (cor, formato)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "som" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:320 +msgid "grey" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "ajustar cor" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -#, fuzzy -msgid "sets color of the line drawn by the turtle" -msgstr "definir a cor da linha desenhada pela tartaruga" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "ajustar sombra" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -#, fuzzy -msgid "sets shade of the line drawn by the turtle" -msgstr "definir o formato da linha desenhada pela tartaruga" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -#: TurtleArt/tabasics.py:340 -#, fuzzy -msgid "sets gray level of the line drawn by the turtle" -msgstr "definir o formato da linha desenhada pela tartaruga" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" msgstr "" -"fixa a cor atual da caneta (pode ser usado no lugar de um bloco numérico)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" +#: taextras.py:329 +msgid "NXT not found" msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" msgstr "" -"prender o valor atual da escala (pode ser usada no lugar de um número de " -"bloco)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "levantar caneta" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -#, fuzzy -msgid "Turtle will not draw when moved." -msgstr "tartaruga não pode desenhar quando movimentada" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "baixar caneta" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -#, fuzzy -msgid "Turtle will draw when moved." -msgstr "tartaruga pode desenhar enquanto movimentada" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "ajustar tamanho da caneta" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -#, fuzzy -msgid "sets size of the line drawn by the turtle" -msgstr "definir o tamanho da linha desenhada pela tartaruga" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" +#: taextras.py:337 +msgid "Get the name of a brick." msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:338 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" +#: taextras.py:339 +msgid "frequency" msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "tamanho da caneta" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" msgstr "" -"fixa o tamanho atual da caneta (pode ser usado no lugar de um bloco " -"numérico)" -#: TurtleArt/tabasics.py:441 -#, fuzzy -msgid "Palette of pen colors" -msgstr "paleta de comandos da caneta" +#: taextras.py:344 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "vermelho" +#: taextras.py:345 +msgid "power" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "laranja" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "amarelo" +#: taextras.py:348 +msgid "turn a motor" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "verde" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "ciano" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "azul" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "violeta" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArt/tabasics.py:453 -#, fuzzy -msgid "white" -msgstr "enquanto" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "voltar" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "ajustar cor do texto" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArt/tabasics.py:463 -#, fuzzy -msgid "sets color of text drawn by the turtle" -msgstr "definir a cor do texto desenhado pela tartaruga" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "ajustar tamanho do texto" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArt/tabasics.py:474 -#, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "definir o tamanho do texto desenhado pela tartaruga" +#: taextras.py:358 +msgid "start motor" +msgstr "" -#: TurtleArt/tabasics.py:557 -#, fuzzy -msgid "Palette of numeric operators" -msgstr "paleta de operadores numéricos" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" +#: taextras.py:360 +msgid "brake motor" msgstr "" -#: TurtleArt/tabasics.py:567 +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 #, fuzzy -msgid "adds two alphanumeric inputs" -msgstr "adiciona duas entradas numéricas" +msgid "read" +msgstr "vermelho" -#: TurtleArt/tabasics.py:575 -msgid "minus" +#: taextras.py:370 +msgid "sensor" msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "subtrai a entrada numérica de baixo da entrada numérica de cima" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" +#: taextras.py:372 +msgid "PORT 2" msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplica as duas entradas numéricas" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" +#: taextras.py:374 +msgid "light sensor" msgstr "" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +#: taextras.py:375 +msgid "grey sensor" msgstr "" -"divide a entrada numérica de cima (numerador) pela entrada numérica de baixo " -"(denominador)" -#: TurtleArt/tabasics.py:614 -msgid "identity" +#: taextras.py:376 +msgid "PORT 3" msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "operador identidade usado para extender blocos" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "mod" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "operador módulo (resto)" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" +#: taextras.py:380 +msgid "PORT 4" msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" +#: taextras.py:381 +msgid "PORT 4 of the brick" msgstr "" -#: TurtleArt/tabasics.py:639 -#, fuzzy -msgid "calculates square root" -msgstr "calcular raiz quadrada" +#: taextras.py:382 +msgid "sound sensor" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "aleatório" +#: taextras.py:383 +msgid "color sensor" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" +#. 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:386 +msgid "set light" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "máximo" +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" -#: TurtleArt/tabasics.py:650 -#, fuzzy -msgid "returns random number between minimum (top) and maximum (bottom) values" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" msgstr "" -"retorna um número aleatório entre os valores mínimo (esquerda) e máximo " -"(direita)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "número" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "usado como entrada numérica em operações matemáticas" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" +#: taextras.py:396 +msgid "LOW" msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "operador lógico maior-que" +#: taextras.py:397 +msgid "INPUT" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" +#: taextras.py:398 +msgid "OUTPUT" msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "operador lógico menor-que" +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" +#: taextras.py:401 +msgid "SERVO" msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "operador lógico igual-a" +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "não" +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "operador lógico Não (NOT)" +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "e" +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "operador lógico E (AND)" +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "ou" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "operador lógico OU (OR)" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -#, fuzzy -msgid "Palette of flow operators" -msgstr "paleta de operadores de movimento" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "esperar" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" +#: taextras.py:411 +msgid "number of Arduino boards" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "para sempre" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: TurtleArt/tabasics.py:758 +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 #, fuzzy -msgid "loops forever" -msgstr "repetir infinitamente" +msgid "mode" +msgstr "mod" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "repetir" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: TurtleArt/tabasics.py:770 +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "valor" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 #, fuzzy -msgid "loops specified number of times" -msgstr "repetir um número específico de vezes" +msgid "samples" +msgstr "" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-#\n" +"Exemplos" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "se" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "então" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "operador se-então que usa operadores boleanos da paleta de Números" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "senão" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" +#: taextras.py:477 +msgid "read analog input 2 voltage" msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "operador se-então-senão usa operadores boleanos da pelata de Números" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" msgstr "" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "título" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "amarelo" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "operador se-então que usa operadores boleanos da paleta de Números" + #: TurtleArt/tabasics.py:812 #, fuzzy msgid "jogs stack right" msgstr "empurrar pilha para direita" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Objeto de mídia do Diário" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "caixa 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "caixa 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Passo" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplica as duas entradas numéricas" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Mostrar/esconder blocos" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Esconder paleta" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +#, fuzzy +msgid "Sugar Journal video object" +msgstr "Objeto de som do Diário" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "ciano" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor da direita da tela" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +#, fuzzy +msgid "Palette of extra options" +msgstr "paleta de opções extras" + +# Ou cabeçalho +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "direção" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +#, fuzzy +msgid "draws text or show media from the Journal" +msgstr "desenhar texto ou exibir mídia de Jornal" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "azul" #: TurtleArt/tabasics.py:820 #, fuzzy msgid "jogs stack down" msgstr "empurrar pilha para baixo" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "operador módulo (resto)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "base" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "salvar como SVG" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "" +"executa o código encontrado no módulo tamyblock.py encontrado no Diário" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "baixar caneta" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "esperar" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "caixa" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#, fuzzy +msgid "invokes named action stack" +msgstr "invocar pilha de ação nomeada" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "ação" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +#, fuzzy +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "operador se-então-senão usa operadores boleanos da pelata de Números" + +#: TurtleArt/tabasics.py:922 +#, fuzzy +msgid "Variable 2 (numeric value)" +msgstr "variável 2 (valor numérico)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "nome da imagem" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "enquanto" + +# Canvas é uma palavra difícil, depende muito do contexto em que se aplica para ficar coerente. +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "a largura da tela" + +# KSp54N ntmbjiiaoekm, [url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/ +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "" +"KSp54N ntmbjiiaoekm, [url=http://" +"bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]" +"vsvihmzobocj[/link], http://elhuengzhnsf.com/" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "variável nomeada (valor numérico)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "próximo" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "ajustar tamanho da caneta" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "modelo de apresentação: selecionar objeto do Diário (sem descrição)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "até que" + +#: TurtleArt/tabasics.py:958 +#, fuzzy +msgid "top of Action 1 stack" +msgstr "início de ação da pilha 1" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#, fuzzy +msgid "Palette of flow operators" +msgstr "paleta de operadores de movimento" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "operador se-então-senão usa operadores boleanos da pelata de Números" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "definir cabeçalho" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#, fuzzy +msgid "declutters canvas by hiding blocks" +msgstr "limpar a tela ocultando os blocos" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "valor string" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "eu não sei como fazer" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "ajustar tamanho do texto" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "modelo de apresentação: selecionar quatro objetos do Diário" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Visualizar" + +#: TurtleArt/tabasics.py:340 +#, fuzzy +msgid "sets gray level of the line drawn by the turtle" +msgstr "definir o formato da linha desenhada pela tartaruga" + #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "parar ação" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "verde" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "tonalidade" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "preenche o fundo (cor, formato)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "salvar imagem" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Aumentar escala das coordenadas" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "levantar caneta" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "laranja" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +#, fuzzy +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "então" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "não" + +#: TurtleArt/tabasics.py:178 +#, fuzzy +msgid "turns turtle clockwise (angle in degrees)" +msgstr "virar a tartaruga no sentido horário (ângulo em graus)" + +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" msgstr "" +"prender o valor atual da escala (pode ser usada no lugar de um número de " +"bloco)" -#: TurtleArt/tabasics.py:838 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor da esquerda da tela" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Reiniciar tamanho do bloco" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 #, fuzzy -msgid "Palette of variable blocks" -msgstr "paleta de blocos variáveis" +msgid "turtle" +msgstr "Tartaruga" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "iniciar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "esconder blocos" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "operador lógico menor-que" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Salvar" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "armazenar na caixa 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "armazenar na caixa 2" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"prender na atual coordenada x o valor da tartaruga (pode ser usado no lugar " +"de um número de bloco)" + +# Mostrar ou imprimir? +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "imprimir" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Salvar como Logo" + +#: TurtleArt/tabasics.py:317 +#, fuzzy +msgid "sets color of the line drawn by the turtle" +msgstr "definir a cor da linha desenhada pela tartaruga" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "ajustar cor do texto" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "número" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "topo" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "coordenadas cartesianas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "configurar escala" + +#: TurtleArt/tabasics.py:453 +#, fuzzy +msgid "white" +msgstr "enquanto" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "conecta a ação aos botões da barra de ferramentas" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "a altura da tela" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "apresentação" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "e" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "como entrada" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"fixa o tamanho atual da caneta (pode ser usado no lugar de um bloco numérico)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "ajustar cor" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "carregar meu bloco" + +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "paleta de comandos da caneta" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +#, fuzzy +msgid "shows values in FILO (first-in last-out heap)" +msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +#, fuzzy +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "operador se-então-senão usa operadores boleanos da pelata de Números" + +#: turtleblocks.py:363 +msgid "File" +msgstr "Arquivo" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "operador lógico Não (NOT)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor da base da tela" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "modelo de apresentação: selecionar objeto do Diário (com descrição)" + +#: TurtleArt/tabasics.py:557 +#, fuzzy +msgid "Palette of numeric operators" +msgstr "paleta de operadores numéricos" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "para sempre" + +#: TurtleArt/tabasics.py:329 +#, fuzzy +msgid "sets shade of the line drawn by the turtle" +msgstr "definir o formato da linha desenhada pela tartaruga" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "instantâneo" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "limpar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "modelo de apresentação: selecionar dois objetos do Diário" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Aumentar os blocos" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Tela cheia" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "mostrar" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -613,75 +2046,484 @@ msgstr "conecta a ação aos botões da barra de ferramentas" msgid "text" msgstr "texto" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "valor string" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "aleatório" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "ação" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "operador lógico maior-que" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "início da pilha de ações nomeáveis" +#: TurtleArt/tabasics.py:166 +#, fuzzy +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "virar a tartaruga no sentido anti-horário (ângulo em graus)" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#: TurtleArt/tabasics.py:454 #, fuzzy -msgid "invokes named action stack" -msgstr "invocar pilha de ação nomeada" +msgid "black" +msgstr "voltar" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "armazenar na caixa 1" +#: TurtleArt/tabasics.py:639 +#, fuzzy +msgid "calculates square root" +msgstr "calcular raiz quadrada" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"prender na atual coordenada y o valor da tartaruga (pode ser usado no lugar " +"de um número de bloco)" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "topo" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "coordenada X" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Ajuda" + +#: TurtleArt/tabasics.py:463 +#, fuzzy +msgid "sets color of text drawn by the turtle" +msgstr "definir a cor do texto desenhado pela tartaruga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "teclado" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arco" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "raio" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "coordenadas polares" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "ajustar sombra" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "operador lógico E (AND)" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Executar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "mostrar acervo" + +#: TurtleArt/tabasics.py:217 +#, fuzzy +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "definir a direção da tartaruga (0 é para a frente do topo da tela.)" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "título" + +#: TurtleArt/tabasics.py:838 +#, fuzzy +msgid "Palette of variable blocks" +msgstr "paleta de blocos variáveis" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "usado como entrada numérica em operações matemáticas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "apresentação" + +#: TurtleArt/tabasics.py:912 +#, fuzzy +msgid "Variable 1 (numeric value)" +msgstr "variável 1 (valor numérico)" + +#: TurtleArt/tabasics.py:567 +#, fuzzy +msgid "adds two alphanumeric inputs" +msgstr "adiciona duas entradas numéricas" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "senão" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "não gosto" + +#: TurtleArt/tabasics.py:379 +#, fuzzy +msgid "Turtle will not draw when moved." +msgstr "tartaruga não pode desenhar quando movimentada" + +#. #-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "sacar" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "tamanho da caneta" + +#: TurtleArt/tabasics.py:190 +#, fuzzy +msgid "moves turtle along an arc" +msgstr "mover a tartaruga formando um arco" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "operador lógico igual-a" + +#: TurtleArt/tabasics.py:441 +#, fuzzy +msgid "Palette of pen colors" +msgstr "paleta de comandos da caneta" #: TurtleArt/tabasics.py:888 #, fuzzy msgid "stores numeric value in Variable 1" msgstr "armazenar o valor numérico na variável 1" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "armazenar na caixa 2" - #: TurtleArt/tabasics.py:901 #, fuzzy msgid "stores numeric value in Variable 2" msgstr "armazenar o valor numérico na variável 2" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "caixa 1" +#: TurtleArt/tabasics.py:143 +#, fuzzy +msgid "moves turtle backward" +msgstr "mover a tartaruga para trás" -#: TurtleArt/tabasics.py:912 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor do topo da tela" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Mostrar blocos" + +#: pysamples/grecord.py:219 #, fuzzy -msgid "Variable 1 (numeric value)" -msgstr "variável 1 (valor numérico)" +msgid "save" +msgstr "Salvar" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "caixa 2" +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "cor" -#: TurtleArt/tabasics.py:922 +#: TurtleArt/tabasics.py:398 #, fuzzy -msgid "Variable 2 (numeric value)" -msgstr "variável 2 (valor numérico)" +msgid "sets size of the line drawn by the turtle" +msgstr "definir o tamanho da linha desenhada pela tartaruga" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Abrir" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "orientação" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "coordenada Y" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "se" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#, fuzzy +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"mover a tartaruga para a posição xcor, ycor; (0, 0). Isto é o centro da tela." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Parar" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "ação 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "ação 1" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Copiar" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Colar" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "não houve saída para" + +# KSp54N ntmbjiiaoekm, [url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/ +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +#, fuzzy +msgid "empty heap" +msgstr "" +"KSp54N ntmbjiiaoekm, [url=http://" +"bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]" +"vsvihmzobocj[/link], http://elhuengzhnsf.com/" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +#, fuzzy +msgid "pops value off FILO (first-in last-out heap)" +msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Limpar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +#, fuzzy +msgid "Palette of presentation templates" +msgstr "paleta de modelos de apresentação" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "ângulo" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Ferramentas" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "esquerda" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "comentário" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "subtrai a entrada numérica de baixo da entrada numérica de cima" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"consulta para a entrada do teclado (resultados armazenados no bloco teclado)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Cartesiano" + +#: 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 "voltagem" + +#: TurtleArt/tabasics.py:154 +#, fuzzy +msgid "clears the screen and reset the turtle" +msgstr "limpar a tela e inicializar a tartaruga" + +#: TurtleArt/tabasics.py:977 +#, fuzzy +msgid "invokes Action 1 stack" +msgstr "invocar ação 1 da pilha" + +#: TurtleArt/tabasics.py:123 +#, fuzzy +msgid "Palette of turtle commands" +msgstr "paleta de comandos da tartaruga" + +#: TurtleArt/tabasics.py:758 +#, fuzzy +msgid "loops forever" +msgstr "repetir infinitamente" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "mostrar alinhado" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Arte" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projeto" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Debug" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Redimensionar coordenadas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "Mostrar blocos" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "campo de descrição do Diário" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "escala" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "base" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "violeta" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Diminuir escala das coordenadas" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "clique para abrir" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "esvaziar lixeira" + +#: TurtleArt/tabasics.py:388 +#, fuzzy +msgid "Turtle will draw when moved." +msgstr "tartaruga pode desenhar enquanto movimentada" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Objeto de som do Diário" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Parar tartaruga" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Tartaruga" #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "armazenar em" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "caixa" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Esconder blocos" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "valor" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "ou" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +#, fuzzy +msgid "presentation template: list of bullets" +msgstr "modelo de apresentação: sete tópicos" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "operador identidade usado para extender blocos" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Diminuir os blocos" + +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "definir o tamanho do texto desenhado pela tartaruga" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"prender o valor da atual direção da tartaruga (pode ser usada no lugar de um " +"número de bloco)" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "imagem" + +#: TurtleArt/tabasics.py:650 +#, fuzzy +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"retorna um número aleatório entre os valores mínimo (esquerda) e máximo " +"(direita)" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"fixa a cor atual da caneta (pode ser usado no lugar de um bloco numérico)" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Mostrar paleta" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Salvar estado atual" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "iniciar" + +#: TurtleArt/tabasics.py:132 +#, fuzzy +msgid "moves turtle forward" +msgstr "mover a tartaruga para frente" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "para frente" #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 @@ -690,59 +2532,247 @@ msgstr "valor" msgid "my box" msgstr "minha caixa" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "voltar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#, fuzzy +msgid "sets the scale of media" +msgstr "definir a escala da mídia" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "apresentação" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "apresentação" + +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "início da pilha de ações nomeáveis" + #: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 #, fuzzy msgid "stores numeric value in named variable" msgstr "armazenar o valor numérico na variável nomeada" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "variável nomeada (valor numérico)" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "operador lógico OU (OR)" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "ação 1" +#: TurtleArt/tabasics.py:770 +#, fuzzy +msgid "loops specified number of times" +msgstr "repetir um número específico de vezes" -#: TurtleArt/tabasics.py:958 +#: TurtleArt/tabasics.py:987 #, fuzzy -msgid "top of Action 1 stack" -msgstr "início de ação da pilha 1" +msgid "invokes Action 2 stack" +msgstr "invocar ação 2 da pilha" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "ação 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "ajustar xy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "título y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "título x" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "preencher tela" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "ajustar xy" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "repetir" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Salvar como imagem" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Editar" #: TurtleArt/tabasics.py:967 #, fuzzy msgid "top of Action 2 stack" msgstr "início da ação da pilha 2" -#: TurtleArt/tabasics.py:977 -#, fuzzy -msgid "invokes Action 1 stack" -msgstr "invocar ação 1 da pilha" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"divide a entrada numérica de cima (numerador) pela entrada numérica de baixo " +"(denominador)" -#: TurtleArt/tabasics.py:987 +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "máximo" + +# Acho melhor usar termos como mostrar, pois imprimir pode ser confundido com imprimir em papel. +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "mostra o valor do bloco de estado na base da tela" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 #, fuzzy -msgid "invokes Action 2 stack" -msgstr "invocar ação 2 da pilha" +msgid "holds results of query-keyboard block as ASCII" +msgstr "fixa o resultado de um bloco no teclado de consulta" + +#. #-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# pt_BR.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "empurrar" + +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "restaurar todos" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "direita" + +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "" + +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "" + +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "vermelho" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "mod" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "" #: TurtleArt/tabasics.py:995 msgid "trash" msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "esvaziar lixeira" - #: TurtleArt/tabasics.py:1000 msgid "permanently deletes items in trash" msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "restaurar todos" - #: TurtleArt/tabasics.py:1005 msgid "restore all blocks from trash" msgstr "" @@ -760,49 +2790,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "título" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Parar tartaruga" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Mostrar blocos" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Esconder blocos" - -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "não houve saída para" - -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "eu não sei como fazer" - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "não gosto" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "como entrada" - #: TurtleArt/tapalette.py:97 msgid "displays next palette" msgstr "" @@ -819,19 +2806,6 @@ msgstr "" msgid "Save..." msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "clique para abrir" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "orientação" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "próximo" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -847,33 +2821,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Arte" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "imagem" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Salvar como Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Salvar como imagem" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "instantâneo" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Salvar estado atual" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -883,103 +2830,24 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Mostrar paleta" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Esconder paleta" - -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Diminuir escala das coordenadas" - -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Aumentar escala das coordenadas" - -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Editar" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Visualizar" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projeto" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Copiar" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Colar" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Tela cheia" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "coordenadas cartesianas" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "coordenadas polares" - #: TurtleArtActivity.py:601 TurtleArtActivity.py:753 msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Aumentar os blocos" - -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Diminuir os blocos" - #: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 #: TurtleArtActivity.py:832 msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Limpar" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Executar" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Passo" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Ajuda" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Parar" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1000,26 +2868,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -1091,11 +2939,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "cor" - #: 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 @@ -1124,11 +2967,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "título" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1167,11 +3005,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "som" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1198,13 +3031,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1212,13 +3038,6 @@ msgstr "" msgid "microphone input resistance" msgstr "" -#: 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 "voltagem" - #: plugins/audio_sensors/audio_sensors.py:158 #: plugins/audio_sensors/audio_sensors.py:172 #: plugins/audio_sensors/audio_sensors.py:186 @@ -1231,15 +3050,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1271,32 +3081,6 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "enquanto" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -#, fuzzy -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "operador se-então-senão usa operadores boleanos da pelata de Números" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "até que" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#, fuzzy -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "operador se-então-senão usa operadores boleanos da pelata de Números" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "topo" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1305,85 +3089,26 @@ msgstr "" msgid "journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Objeto de mídia do Diário" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 msgid "audio" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Objeto de som do Diário" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "Objeto de som do Diário" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "campo de descrição do Diário" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "mostrar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -#, fuzzy -msgid "draws text or show media from the Journal" -msgstr "desenhar texto ou exibir mídia de Jornal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "mostrar alinhado" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "configurar escala" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -#, fuzzy -msgid "sets the scale of media" -msgstr "definir a escala da mídia" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "salvar imagem" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "nome da imagem" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "saves a picture to the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "salvar como SVG" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "escala" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1482,20 +3207,6 @@ msgstr "" msgid "query keyboard" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"consulta para a entrada do teclado (resultados armazenados no bloco teclado)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "teclado" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "fixa o resultado de um bloco no teclado de consulta" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 msgid "read pixel" msgstr "" @@ -1512,95 +3223,23 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -#, fuzzy -msgid "Palette of extra options" -msgstr "paleta de opções extras" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "empurrar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -#, fuzzy -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "mostrar acervo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -#, fuzzy -msgid "shows values in FILO (first-in last-out heap)" -msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)" - -# KSp54N ntmbjiiaoekm, [url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/ -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -#, fuzzy -msgid "empty heap" -msgstr "" -"KSp54N ntmbjiiaoekm, " -"[url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], " -"[link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "sacar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -#, fuzzy -msgid "pops value off FILO (first-in last-out heap)" -msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)" - -# KSp54N ntmbjiiaoekm, [url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/ -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "" -"KSp54N ntmbjiiaoekm, " -"[url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], " -"[link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "comentário" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 msgid "places a comment in your code" msgstr "" -# Mostrar ou imprimir? -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "imprimir" - -# Acho melhor usar termos como mostrar, pois imprimir pode ser confundido com imprimir em papel. -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "mostra o valor do bloco de estado na base da tela" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 msgid "Python chr operator" msgstr "" @@ -1609,12 +3248,6 @@ msgstr "" msgid "Python int operator" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" "a programmable block: used to add advanced single-variable math equations, e." @@ -1639,16 +3272,6 @@ msgstr "" msgid "Python block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "executa o código encontrado no módulo tamyblock.py encontrado no Diário" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Cartesiano" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 msgid "displays Cartesian coordinates" msgstr "" @@ -1661,12 +3284,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "Tartaruga" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1691,18 +3308,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "carregar meu bloco" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "ajustar xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1711,25 +3316,6 @@ msgstr "" msgid "selects a palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -#, fuzzy -msgid "Palette of presentation templates" -msgstr "paleta de modelos de apresentação" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "esconder blocos" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -#, fuzzy -msgid "declutters canvas by hiding blocks" -msgstr "limpar a tela ocultando os blocos" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "Mostrar blocos" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1747,79 +3333,6 @@ msgstr "" msgid "presentation bulleted list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -#, fuzzy -msgid "presentation template: list of bullets" -msgstr "modelo de apresentação: sete tópicos" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "modelo de apresentação: selecionar objeto do Diário (sem descrição)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "modelo de apresentação: selecionar objeto do Diário (com descrição)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "modelo de apresentação: selecionar quatro objetos do Diário" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "modelo de apresentação: selecionar dois objetos do Diário" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor da esquerda da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "base" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor da base da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "largura" - -# Canvas é uma palavra difícil, depende muito do contexto em que se aplica para ficar coerente. -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "a largura da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor da direita da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor do topo da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "altura" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "a altura da tela" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "título x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "título y" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 msgid "left x" msgstr "" @@ -1832,32 +3345,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "base" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "apresentação" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "apresentação" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "apresentação" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "apresentação" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1885,20 +3372,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "topo" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "Salvar" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1932,14 +3409,6 @@ msgstr "" msgid "New" msgstr "" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Abrir" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Salvar" - #: turtleblocks.py:357 msgid "Save as" msgstr "" @@ -1948,34 +3417,6 @@ msgstr "" msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "Arquivo" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Redimensionar coordenadas" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Reiniciar tamanho do bloco" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Mostrar/esconder blocos" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Ferramentas" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Debug" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Tartaruga" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1988,22 +3429,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "direita" - -#, fuzzy -#~ msgid "read" -#~ msgstr "vermelho" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Exemplos" - #~ msgid "top of stack" #~ msgstr "topo da pilha" @@ -2074,7 +3499,8 @@ msgstr "" #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "" -#~ "fixa o tamanho atual do texto (pode ser usado no lugar de um bloco numérico)" +#~ "fixa o tamanho atual do texto (pode ser usado no lugar de um bloco " +#~ "numérico)" #, fuzzy #~ msgid "extras" @@ -2094,13 +3520,15 @@ msgstr "" #~ msgid "holds current pen shade (can be used in place of a number block)" #~ msgstr "" -#~ "fixa a sombra atual da caneta (pode ser usado no lugar de um bloco numérico)" +#~ "fixa a sombra atual da caneta (pode ser usado no lugar de um bloco " +#~ "numérico)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" -#~ "um bloco programável: adiciona sua própria equação matemática no bloco, por " -#~ "exemplo, sin(x)" +#~ "um bloco programável: adiciona sua própria equação matemática no bloco, " +#~ "por exemplo, sin(x)" #~ msgid "pop value off FILO" #~ msgstr "saca o último valor da FILO" diff --git a/po/quz.po b/po/quz.po index c9a53f4..8d5e18b 100644 --- a/po/quz.po +++ b/po/quz.po @@ -1,6 +1,47 @@ +# #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# # Irma , 2011, 2012. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: 2012-11-15 06:51+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: quz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: Pootle 2.0.5\n" +"#-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: 2012-11-15 06:51+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: quz\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +"X-Generator: Pootle 2.0.5\n" +"#-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -15,225 +56,1083 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - -# [ES] "Una tortuga inspirada en Logo que hace dibujos coloridos junto con bloques " -# [ES] "complementarios de programación visual" #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +# "TortugArte Mini" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "Huch'uy CharapArte" + +# "TortugArte Confusión" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "Muspaq CharapArte" + +# "Selecciona un desafío" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "Huk llallipayta akllay" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +# "Paleta de Pesos Mexicanos" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "Pesos Mexicanos qullqimanta" + +# "Paleta de Pesos Colombianos" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "Pesos Colombianos qullqimanta" + +# "Paleta de Francos de Ruanda" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Francos de Ruanda qullqimanta" + +# "Paleta de Dólares Americanos" +# [es] "Paleta de Dólares Americanos" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "dolar qullqimanta" + +# "Paleta de Dólares Australianos" +# [es] "Paleta de Dólares Australianos" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "Austrialiamanta dolar qullqimanta" + +# "Paleta de Guaraníes Paraguayos" +# [es] "Paleta de Guaraníes Paraguayos" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "Paraguaymanta Guaranies qullqimanta" + +# "Paletea de Nuevos Soles Peruanos" +# [es] "Paletea de Nuevos Soles Peruanos" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "Perumanta Nuevos Soles qullqimanta" + +# "Paleta de Pesos Uruguayos" +# [es] "Paleta de Pesos Uruguayos" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "Uyuguaymanta Pesos qullqimanta" + +# "TurtleBots" +# [es] "TurtleBots" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "CharapaBots" + +# "Ajusta la intensidad del LED entre 0 y 255." +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "LED nisqapa utqayninqa 0 yupaymanta 255 yupaykama mat'ikunman" + +#: taextras.py:67 +msgid "returns the gray level" +msgstr "" + +# "Devuelve 1 cuando el botón está presionado y 0 en otro caso." +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "rumpu q'apisqa kaptinqa 1 kutimunqa, mana chayna kaptinqa 0 kanqa" + +#: taextras.py:69 +msgid "returns the ambient light level" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature" +msgstr "" + +#: taextras.py:71 +msgid "returns the distance from the object in front of the sensor" +msgstr "" + +# "devuelve 0 o 1 dependiendo de la inclinación del sensor" +#: taextras.py:72 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" +"imayna kinrayasqa musyana kasqanmantam 0 yupayta utaq 1 yupayta rikuchin" + +# "devuelve 1 cuando el sensor detecta un campo magnético, 0 en otro caso" +#: taextras.py:73 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"huk campo magnetico nisqata musyana tariptinqa 1 yupaytam rikuchin mana " +"chayqa 0 yupaytam rikuchin" + +# "oscila entre 0 y 1 dependiendo de la vibración" +#: taextras.py:74 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "imayna chukchuyasqanmantam 0 yupaymanta 1 yupaykama phawaykachan" + +#: taextras.py:75 +msgid "returns the value of the resistance" +msgstr "" + +# "LED" +#: taextras.py:76 +msgid "LED" +msgstr "LED" + +# "botón" +#: taextras.py:77 +msgid "button" +msgstr "rump'u" + +# "escala de gris" +# [es] "escala de gris" +#: taextras.py:78 +msgid "grayscale" +msgstr "Ch'iqchiynin" + +# "luz ambiente" +#: taextras.py:79 +msgid "ambient light" +msgstr "k'anchariynin" + +# "temperatura" +#: taextras.py:80 +msgid "temperature" +msgstr "q'uñiynin" + +# "distancia" +#: taextras.py:81 taextras.py:292 +msgid "distance" +msgstr "karukaynin" + +# "inclinación" +#: taextras.py:82 taextras.py:289 +msgid "tilt" +msgstr "k'iraynin" + +# "campo magnético" +#: taextras.py:83 +msgid "magnetic induction" +msgstr "ratapakuq campo magnético nisqa" + +# "vibración" +#: taextras.py:84 +msgid "vibration" +msgstr "chukchuynin" + +# "resistencia" +#: taextras.py:85 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 "sinchikay" + +# "Robot Butiá" +#: taextras.py:86 +msgid "Butia Robot" +msgstr "Robot Butiá nisqa" + +#: taextras.py:87 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:88 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +# "carga de batería Butiá" +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:90 +msgid "battery charge Butia" +msgstr "Butiap bateriyanmanta" + +# "Devuelve la temperatura en el ambiente como un número entre 0 y 255." +#: taextras.py:91 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" +"q'uñiyachinaykipaq utaq chiriyachinaykipaqqa, 0 yupaymanta 1023 yupaykama " +"churawaq" + +# "velocidad Butiá" +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:93 +msgid "speed Butia" +msgstr "Butiap utqhayninmanta" + +#: taextras.py:94 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:95 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#: taextras.py:96 +msgid "move Butia" +msgstr "" + +#: taextras.py:97 +msgid "moves the Butia motors at the specified speed" +msgstr "" + +# "adelante Butiá" +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:99 +msgid "forward Butia" +msgstr "ñawpaqman Butia" + +# "mueve el robot Butiá hacia adelante" +# [es] "mueve el robot Butiá hacia adelante" +#: taextras.py:100 +msgid "move the Butia robot forward" +msgstr "Butiataqa ñawpaqmanmi purichiy" + +# "mueve el robot Butiá hacia adelante una distancia predefinida" +# [es] "mueve el robot Butiá hacia adelante una distancia predefinida" +#: taextras.py:101 +msgid "move the Butia robot forward a predefined distance" +msgstr "Butiataqa munasqa ñawpaqmanmi purichiy" + +# "izquierda Butiá" +# [es] "izquierda Butiá" +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:103 +msgid "left Butia" +msgstr "qulli Butia" + +# "gira el robot Butiá hacia la derecha" +# [es] "gira el robot Butiá hacia la derecha" +#: taextras.py:104 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "pañamanhina Butiataqa muyuchiy" + +# "atrás Butiá" +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:106 +msgid "backward Butia" +msgstr "qhipaman Butia" + +# "mueve el robot Butiá hacia atrás" +# [es] "mueve el robot Butiá hacia atrás" +#: taextras.py:107 +msgid "move the Butia robot backward" +msgstr "Butiataqa qhipamanmi purichiy" + +# "mueve el robot Butiá hacia atrás una distancia predefinida" +# [es] "mueve el robot Butiá hacia atrás una distancia predefinida" +#: taextras.py:108 +msgid "move the Butia robot backward a predefined distance" +msgstr "Butiataqa munasqa qhipamanmi purichiy" + +# "derecha Butiá" +# [es] "derecha Butiá" +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:110 +msgid "right Butia" +msgstr "paña Butia" + +# "gira el robot Butiá hacia la derecha" +# [es] "gira el robot Butiá hacia la derecha" +#: taextras.py:111 +msgid "turn the Butia robot at right" +msgstr "pañamanhina Butiataqa muyuchiy" + +# "girar Butiá" +# [es] "girar Butiá" +#: taextras.py:112 +msgid "turn Butia" +msgstr "Butiata muyuchiy" + +# "gira el robot Butiá x grados" +# [es] "gira el robot Butiá x grados" +#: taextras.py:113 +msgid "turn the Butia robot x degrees" +msgstr "Butiataqa x grados nisqamanmi muyuchiy" + +# "detener Butiá" +# [es] "detener Butiá" +#: taextras.py:114 +msgid "stop Butia" +msgstr "Butiataqa sayachiy" + +# "detiene al robot Butiá" +# [es] "detiene al robot Butiá" +#: taextras.py:115 +msgid "stop the Butia robot" +msgstr "robot Butiatam sayachin" + +# "Butiá" +# [es] "Butiá" +#: taextras.py:116 +msgid "Butia" +msgstr "Butia" + +#: taextras.py:120 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:121 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:122 +msgid "No camera was found" +msgstr "" + +#: taextras.py:123 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:124 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:126 +msgid "Error in get mask" +msgstr "" + +# "FollowMe" +# [es] "FollowMe" +#: taextras.py:127 +msgid "FollowMe" +msgstr "FollowMe" + +#: taextras.py:128 +msgid "refresh FollowMe" +msgstr "" + +# "Busca por un brick NXT conectado." +#: taextras.py:129 +#, fuzzy +msgid "Search for a connected camera." +msgstr "Huk brick NXT nisqata machkhay." + +# "calibración" +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:131 +msgid "calibration" +msgstr "mat'ichina" + +# "devuelve una calibración personalizada" +#: taextras.py:132 +#, fuzzy +msgid "store a personalized calibration" +msgstr "munasqa mat'ichisqata rikuchin" + +# "devuelve una calibración personalizada" +#: taextras.py:133 +msgid "return a personalized calibration" +msgstr "munasqa mat'ichisqata rikuchin" + +# "seguir" +# [es] "seguir" +#: taextras.py:134 +msgid "follow" +msgstr "qhatiy" + +# "seguir un color o calibración" +#: taextras.py:135 +msgid "follow a color or calibration" +msgstr "llimp'i kaqta churay" + +# "brillo" +#: taextras.py:136 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 "llipipiynin" + +#: taextras.py:137 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +# "mínimo de pixeles" +#: taextras.py:138 +msgid "minimum pixels" +msgstr "pixelkunamanta pisi kaynin" + +# "define el mínimo número de píxeles a seguir" +#: taextras.py:139 +msgid "set the minimal number of pixels to follow" +msgstr "hayk'a pixeles nisqakunawan llamk'anapaqmi rikuchin" + +#: taextras.py:140 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:142 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:143 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:145 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:146 +msgid "get brightness" +msgstr "" + +#: taextras.py:147 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:148 +msgid "average color" +msgstr "" + +#: taextras.py:149 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -"Charapachaqa Logo nisqata qhawaspam ruwakurqan hinam sumaq siq'ikunata " -"ruwaspa llimp'in kaqllataq tawqakunatapas ruwarillanmi" -# "Paleta de comandos de la tortuga" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Charapata kamachinapaq" +# "posición x" +#: taextras.py:150 +msgid "x position" +msgstr "X kinkay" + +# "retorna la posición x" +#: taextras.py:151 +msgid "return x position" +msgstr "X kinrayman kutiy" + +# "posición y" +#: taextras.py:152 +msgid "y position" +msgstr "Y kinray" + +# "retorna la posición y" +#: taextras.py:153 +msgid "return y position" +msgstr "Y kinrayman kutiy" + +# "píxeles" +#: taextras.py:154 +msgid "pixels" +msgstr "pixelkuna" + +# "devuelve el número de píxeles de la mancha mas grande" +#: taextras.py:155 +msgid "return the number of pixels of the biggest blob" +msgstr "hatun kaqpa hayk'a pixelniyuq kasqantam rikuchin" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:157 +msgid "set the color mode of the camera to RGB" +msgstr "" -# "adelante" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "ñawpaqman" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:159 +msgid "set the color mode of the camera to YUV" +msgstr "" -# "avanzar la tortuga" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "ñawpaqman charapata purichiy" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:161 +msgid "set the color mode of the camera to HSV" +msgstr "" -# "atrás" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "kutichiy" +# "calibración vacía" +#: taextras.py:162 +msgid "empty calibration" +msgstr "ch'usaq mat'ichina" + +# "error en la conversión de la cadena de texto" +#: taextras.py:163 +msgid "error in string conversion" +msgstr "qillqasqa t'ikrakuchkaptinmi pantarun" + +# "SumBot" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:168 +msgid "SumBot" +msgstr "SumBot" + +# "velocidad SumBot" +#: taextras.py:169 +msgid "speed SumBot" +msgstr "SumBotpa utqhaynin" + +# "setea la velocidad del SumBot" +#: taextras.py:170 +msgid "submit the speed to the SumBot" +msgstr "SumBotpa utqhayninta kamachiy" + +# "Setea la velocidad por defecto para los comandos de movimiento." +#: taextras.py:171 +msgid "set the default speed for the movement commands" +msgstr "kikinmanta kuyurinanpaq kamachiyta churay" + +# "adelante SumBot +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:173 +msgid "forward SumBot" +msgstr "ñawpaqman SumBot" + +# "mueve el SumBot hacia adelante" +#: taextras.py:174 +msgid "move SumBot forward" +msgstr "ñawpaqman SumBot sutichakuqtaqa purichiy" + +# "atrás SumBot" +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:176 +msgid "backward SumBot" +msgstr "qhipaman SumBot" + +# "mueve el SumBot hacia atrás" +#: taextras.py:177 +msgid "move SumBot backward" +msgstr "qhipaman SumBot sutichakuqtaqa purichiy" + +# "detener SumBot" +#: taextras.py:178 +msgid "stop SumBot" +msgstr "SumBot sutichakuqta utichiy" + +# "detiene el SumBot" +#: taextras.py:179 +msgid "stop the SumBot" +msgstr "SumBot sutichakuqta utichin" + +# "izquierda SumBot" +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:181 +msgid "left SumBot" +msgstr "lluqiman SumBot" + +# "gira el SumBot hacia la izquierda" +#: taextras.py:182 +msgid "turn left the SumBot" +msgstr "lluqimanhina SumBot sutichakuqta muyuchiy" + +# "derecha SumBot" +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:184 +msgid "right SumBot" +msgstr "paña SumBot" + +# "gira el SumBot hacia la derecha" +#: taextras.py:185 +msgid "turn right the SumBot" +msgstr "pañamanhina SumBot sutichakuqta muyuchiy|" + +# "ángulo desde el centro" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:188 +msgid "angle to center" +msgstr "chawpimanta k'uchuchiy" + +# "Obtiene el ángulo desde el centro del dojo." +#. TRANS: dohyo is the playing field +#: taextras.py:190 +msgid "get the angle to the center of the dohyo" +msgstr "dojop chawpinmanta k'uchutaqa hurquy" + +# "ángulo al Enemigo" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:193 +msgid "angle to Enemy" +msgstr "Ayqap k'uchun" + +# "obtiene el ángulo al Enemigo" +#: taextras.py:194 +msgid "get the angle to the Enemy" +msgstr "Awqaqpa k'uchunta tariy" + +# "coor. x SumBot" +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:196 +msgid "x coor. SumBot" +msgstr "SumBot sutichakuqpa x coor." + +# "Obtiene la coordenada y del oponente." +#: taextras.py:197 +msgid "get the x coordinate of the SumBot" +msgstr "oponentep Y coordenandanta tarin" + +# "coor. y SumBot" +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:199 +msgid "y coor. SumBot" +msgstr "SumBot sutichakuqpa y coor." + +# "Obtiene la coordenada y del oponente." +#: taextras.py:200 +msgid "get the y coordinate of the SumBot" +msgstr "oponentep Y coordenandanta tarin" + +# "coor. x Enemigo" +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:202 +msgid "x coor. Enemy" +msgstr "Awqaqpa x coor." + +# "Obtiene la coordenada y del oponente." +#: taextras.py:203 +msgid "get the x coordinate of the Enemy" +msgstr "oponentep Y coordenandanta tarin" + +# "coor. y Enemigo" +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:205 +msgid "y coor. Enemy" +msgstr "Awqaqpa y coor." + +# "Obtiene la coordenada y del oponente." +#: taextras.py:206 +msgid "get the y coordinate of the Enemy" +msgstr "oponentep Y coordenandanta tarin" + +# "rotación SumBot" +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:208 +msgid "rotation SumBot" +msgstr "SumBot sutichakuqpa muyunan" + +# "obtiene la rotación del SumBot" +#: taextras.py:209 +msgid "get the rotation of the Sumbot" +msgstr "SumBot muyunanta tariy" + +# "rotación Enemigo" +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:211 +msgid "rotation Enemy" +msgstr "Awqaqpa muyunan" + +# "obtiene la rotación del Enemigo" +#: taextras.py:212 +msgid "get the rotation of the Enemy" +msgstr "Awqa muyunanta tariy" + +# "distancia al centro" +#: taextras.py:213 +msgid "distance to center" +msgstr "chawpikama chayanapaq" + +# "Obtiene el ángulo desde el centro del dojo." +#. TRANS: dohyo is the playing field +#: taextras.py:215 +msgid "get the distance to the center of the dohyo" +msgstr "dojop chawpinmanta k'uchutaqa hurquy" + +# "distancia al Enemigo" +#: taextras.py:216 +msgid "distance to Enemy" +msgstr "Awqakama chayanapaq" + +# "obtiene la distancia al Enemigo" +#: taextras.py:217 +msgid "get the distance to the Enemy" +msgstr "Awqakama chayanapaqmi tarin" + +# "actualizar información" +#: taextras.py:218 +msgid "update information" +msgstr "willanata kunanyachiy" + +# "actualiza la información desde el servidor" +#: taextras.py:219 +msgid "update information from the server" +msgstr "servidormanta willanata kunanyachiy" + +# "Paleta de bloques de física" +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:224 +msgid "Palette of physics blocks" +msgstr "física nisqamanta bloquekuna" + +# "comenzar polígono" +#: taextras.py:225 +msgid "start polygon" +msgstr "poligonota qallariy" + +# "Comienza a definir un nuevo polígono basado en la posición actual xy de la " +# "Tortuga." +#: taextras.py:226 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" +"Kunan kaq xy nisqapi charapa tarikusqanmantam musuq poligonotaqa yurichiy." -# "retroceder la tortuga" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "qhipaman charapata purichiy" +# "agregar punto" +#: taextras.py:228 +msgid "add point" +msgstr "Puntuta yapay" -# "limpiar" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "pichay" +# "Agrega un nuevo punto al polígono actual basado en la posición actual xy de " +# "la Tortuga." +#: taextras.py:229 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" +"Kunan kaq xy nisqapi charapa tarikusqanmantam musuq puntuta poligonoman " +"churay." + +# "terminar polígono" +#: taextras.py:231 +msgid "end polygon" +msgstr "poligonota tukuy" + +# "Define un nuevo polígono." +#: taextras.py:232 +msgid "Define a new polygon." +msgstr "Musuq poligonota ruway." + +# "termina polígono relleno" +#: taextras.py:233 +msgid "end filled polygon" +msgstr "unt'achisqa poligonota tukuy" + +# "No es un polígono simple" +#: taextras.py:234 +msgid "Not a simple polygon" +msgstr "Manam yanqa poligono nisqachu" + +# "Define un nuevo polígono relleno." +#: taextras.py:235 +msgid "Define a new filled polygon." +msgstr "Musuq hunt'achisqa poligonota ruway." + +# "triángulo" +#: taextras.py:236 +msgid "triangle" +msgstr "Kimsak'uchu" + +# "base" +#. TRANS: base of a triangle +#: taextras.py:238 +msgid "base" +msgstr "t'iqsi" -# "limpia la pantalla y restaura la tortuga" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "pichay pantallata charapatataq musuqmanta kamachiy" +# "altura" +#: taextras.py:239 taextras.py:245 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "sayaynin" -# "izquierda" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "lluqi" +# "Agrega un objeto triángulo al proyecto." +#: taextras.py:240 +msgid "Add a triangle object to the project." +msgstr "kimsak'uchuta churay." -# "gira la tortuga en sentido anti-horario (ángulo en grados)" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "charapataqa lluqimanhina muyurichiy ([ángulo en grados nisqapi)" +# "círculo" +#: taextras.py:241 +msgid "circle" +msgstr "muyu" -# "derecha" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "paña" +# "Agrega un objeto círculo al proyecto." +#: taextras.py:242 +msgid "Add a circle object to the project." +msgstr "muyuta churay." -# "gira la tortuga en sentido horario (ángulo en grados)" -# [es] "gira la tortuga en sentido horario (ángulo en grados)" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "charapataqa pañamanhina muyurichiy ([ángulo en grados nisqapi)" +# "rectángulo" +#: taextras.py:243 +msgid "rectangle" +msgstr "suyt'u" -# "arco" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arco nisqa" +# "anchura" +#: taextras.py:244 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "kinraynin" -# "ángulo" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "k'uchu" +# "Agrega un objeto rectángulo al proyecto." +#: taextras.py:246 +msgid "Add a rectangle object to the project." +msgstr "suyt'uta churay." -# "radio" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radio nisqa" +# "resetear" +#: taextras.py:247 +msgid "reset" +msgstr "pichay" -# "mueve la tortuga a lo largo de un arco" -# [es] "mueve la tortuga a lo largo de un arco" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "suni arco nisqantintam charapataqa purichiy" +# "Resetea el proyecto; limpia la lista de objetos." +#: taextras.py:248 +msgid "Reset the project; clear the object list." +msgstr "Wakichinata pichay; llapan sinrichasqakunata pichay." -# "fijar xy" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy nisqata churay" +# "motor" +#: taextras.py:249 +msgid "motor" +msgstr "motor nisqa" + +# "torque" +#. TRANS: torque as in engine torque +#: taextras.py:251 +msgid "torque" +msgstr "q'iwinan" + +# "velocidad" +#: taextras.py:252 +msgid "speed" +msgstr "Utqhanan" + +#: taextras.py:253 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +# "tachuela +#: taextras.py:255 taextras.py:418 +msgid "pin" +msgstr "ratachiq" + +# "Sujeta un objeto para que no se caiga." +#: taextras.py:256 +msgid "Pin an object down so that it cannot fall." +msgstr "imaynapas ama urmayananpaqmi ratachin." + +# "unión" +#: taextras.py:257 +msgid "joint" +msgstr "Huñukuy" # "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 msgid "x" -msgstr "x" +msgstr "X" # "y" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:259 msgid "y" -msgstr "y" +msgstr "Y" -# "mover la tortuga a la posición xcor, ycor; (0, 0) está en el centro de la " -# "pantalla." -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +# "Une dos objetos (el objeto creado mas reciententemente y el objeto en el " +# "punto x, y)." +#: taextras.py:260 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -"charapataq xcor, ycor; (0, 0) nisqaman churay, kayqa pantallap chawpinpi " -"kachkan." - -# "fijar rumbo" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "mayman rinantam churay" - -# "fija la orientación de la tortuga (0 es hacia la parte superior de la " -# "pantalla.)" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +"Iskay imaymanakunatam tinkuchin ( chayraq imayman ruwasqatawan X, Y " +"kasqakunawan ima)." + +# "guardar como Actividad Física" +#: taextras.py:262 +msgid "save as Physics activity" +msgstr "Física ruwanatahina waqaychay" + +# "Guarda el proyecto al Diario como una Actividad de Física." +#: taextras.py:263 +msgid "Save the project to the Journal as a Physics activity." +msgstr "Física ruwanatahina P'anqapi waqaychay." + +# "círculo" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:265 +msgid "gear" +msgstr "muyu" + +# "Agrega un objeto engranaje al proyecto." +#: taextras.py:266 +msgid "Add a gear object to the project." +msgstr "Wakichinam t'akyakuq imaymanata churay." + +# "densidad" +#: taextras.py:267 +msgid "density" +msgstr "densidad nisqa" + +# "Establece la densidad de los objetos (la densidad puede ser cualquier número " +# "positivo)." +#: taextras.py:268 +msgid "" +"Set the density property for objects (density can be any positive number)." msgstr "" -"charapap mayman rinanta churay (0 yupanaqa pantallap wichayninmanmi " -"purichin)" +"Imaymankunap densidad nisqantam churan (densidadqa yupana positivo nisqam " +"kanman)." -# "coorx" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +# "fricción" +#: taextras.py:270 +msgid "friction" +msgstr "qhaquna" -# "contiene la coordenada x actual de la tortuga (se puede usar en vez de un " -# "bloque de número)" -# [es] "" -# [es] "contiene la coordenada x actual de la tortuga (se puede usar en vez de un " -# [es] "bloque de número)" -#: TurtleArt/tabasics.py:226 +# "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)." +#: taextras.py:271 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"charapap x coordenadawanmi kachkan (yupanakunap bloquenmantaqa " -"hap'ikullanmanmi)" +"Imaymanakunap qhaqunakuntam churan (chaniqa 0 utaq 1 kanman, 0 yupayqa " +"qhaqunatam rikuchin 1 yupaytaq kallpasapa kaqta)." + +# "restitución" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:274 +msgid "bounciness" +msgstr "kikin kaqllaman kutichiq" + +# "Establece la propiedad de restitución para los objetos (un valor entre 0 y " +# "1, donde 0 significa sin restitución y 1 mucha)." +#: taextras.py:275 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" +"Imaymanakunata kikin kaqllamanmi kutichin (chaniqa 0 utaq 1 kanman, 0 " +"yupayqa kikin kaqllaman kutichisqanta rikuchin 1 yupaytaq sinchi kaqta)." + +# "dinámico" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:278 +msgid "dynamic" +msgstr "ch'iti" + +# "Si dinámico = 1, el objeto puede moverse; si dinámico = 0, queda fijo en su " +# "posición." +#: taextras.py:279 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" +"Sichus ch'iti= 1 yupayniyuq kanqa chayqa, imaymanaqa puriyqachanqam; sichus " +"ch'iti = 0 yupayniyuq kanqa chayqa imaymana kaqqa kikin kasqallapim kanqa." -# "coory" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +# "Paleta de bloques WeDo" +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:285 +msgid "Palette of WeDo blocks" +msgstr "WeDo bloquekunamanta" -# "contiene la coordenada y actual de la tortuga (se puede usar en vez de un " -# "bloque de número)" -# [es] "" -# [es] "contiene la coordenada y actual de la tortuga (se puede usar en vez de un " -# [es] "bloque de número)" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:286 +msgid "WeDo" msgstr "" -"kunan kaq coordenadawanmi charapaqa kachkan (yupanakunap bloquenmantaqa " -"hap'ikullanmanmi)" -# "rumbo" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "mayman" +#: taextras.py:287 +msgid "set current WeDo device" +msgstr "" -# "contiene la orientación actual de la tortuga (se puede usar en vez de un " -# "bloque de número)" -# [es] "" -# [es] "contiene la orientación actual de la tortuga (se puede usar en vez de un " -# [es] "bloque de número)" -#: TurtleArt/tabasics.py:248 +#: taextras.py:288 +msgid "number of WeDo devices" +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)" +#: taextras.py:290 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"kinrayasqamanta musyasqan: (-1 == manam kinrayasqachu kachkan, 0 == ñawpaqma " +"kinrayasqa kachkan, 3 == qhipaman kinrayasqa kachkan, 1 == lluqiman " +"kinrayasqa kachkan, 2 == pañaman kinrayasqa kachkan)" + +# "salida del sensor distancia" +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:294 +msgid "distance sensor output" +msgstr "karu kaymanta musyasqan" + +# "Motor A" +#: taextras.py:295 +msgid "Motor A" +msgstr "Motor A nisqa" + +# "devuelve el valor actual del Motor A" +#: taextras.py:296 +msgid "returns the current value of Motor A" +msgstr "Motor A nisqapa kunan kaq chanintam kutichin" + +# "Motor B" +#: taextras.py:297 +msgid "Motor B" +msgstr "Motor B nisqa" + +# "devuelve el valor actual del Motor B" +#: taextras.py:298 +msgid "returns the current value of Motor B" +msgstr "Motor B nisqapa kunan kaq chanintam kutichin" + +# "setea el valor del Motor A" +#: taextras.py:299 +msgid "set the value for Motor A" +msgstr "Motor A nisqapa chaninta akllapan" + +# "setea el valor del Motor B" +#: taextras.py:300 +msgid "set the value for Motor B" +msgstr "Motor B nisqapa chaninta akllapan" + +#: taextras.py:301 +msgid "WeDo is unavailable" msgstr "" -"kunan kaq charapap ñanninwanmi kachkan (yupanakunap bloquenmantaqa " -"hap'ikullanmanmi)" -# "Paleta de órdenes de la pluma" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Qillqanawan llamk'anapaq" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:303 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -# "rellenar pantalla" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "pantallata hunt'achiy" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:306 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +# "Paleta de bloques LEGO NXT de motores" +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "LEGO NXT bloques motores nisqakunamanta" + +# "Paleta de bloques LEGO NXT de sensores" +#: taextras.py:313 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "LEGO NXT bloques llakllana nisqakunamanta" + +# "tocar" +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:315 +msgid "touch" +msgstr "llamina" + +# "ultrasónico" +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:317 +msgid "ultrasonic" +msgstr "ultrasónico uyarina" # "color" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: taextras.py:318 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "llimp'i" -# "tono" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "llimp'iynin" +# "luz" +#: taextras.py:319 +msgid "light" +msgstr "k'anchana" -# "rellena el fondo con (color, sombra)" -# [es] "rellena el fondo con (color, sombra)" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "ukhuntaqa hunt'achiy (llimp'iwan, llantuwan ima)" +# "sonido" +#: taextras.py:320 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "uyarina" # "gris" #: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 @@ -242,455 +1141,735 @@ msgstr "ukhuntaqa hunt'achiy (llimp'iwan, llantuwan ima)" msgid "gray" msgstr "chiqchi" -# "fijar color" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "llimp'ita akllay" +#. TRANS: The brick is the NXT controller +#: taextras.py:323 +msgid "Please check the connection with the brick" +msgstr "" -# "fija el color de la línea que la tortuga dibuja" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "charapa ima llimp'iwan siq'ichananta churay" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -# "fijar tono" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "llimp'ita churay" +#: taextras.py:325 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -# "fijar la oscuridad de la linea que la tortuga dibuja" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "charapa yana llimp'iwan siq'ichananta churay" +#: taextras.py:326 +msgid "The value of power must be between -127 to 127" +msgstr "" -# "establecer gris" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "chiqchita churay" +#: taextras.py:327 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -# "establece el nivel de gris de la línea dibujada por la tortuga" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "charapa chiqchi llimp'iwan siq'ichananta churay" +#: taextras.py:328 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -# "contiene el color actual de la pluma (se puede usar en vez de un bloque de " -# "número)" -# [es] "" -# [es] "contiene el color actual de la pluma (se puede usar en vez de un bloque de " -# [es] "número)" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:329 +#, python-format +msgid "NXT found %s bricks" msgstr "" -"kunan kaq qillqanap llimp'inwanmi kachkan (yupanakunap bloquenmantaqa " -"hap'ikullanmanmi)" -# "contiene la tonalidad actual de la pluma" -# [es] "contiene la tonalidad actual de la pluma" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "kunan kaq qillqanap llimp'inwanmi kachkan" +# "NXT no encontrado" +#: taextras.py:330 +msgid "NXT not found" +msgstr "NXT mana tarisqa" -# "contiene el nivel actual de gris (puede ser utilizado en vez de un bloque " -# "numérico)" -# [es] "" -# [es] "contiene el nivel actual de gris (puede ser utilizado en vez de un bloque " -# [es] "numérico)" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:331 +#, python-format +msgid "Brick number %s was not found" msgstr "" -"kunan kaq chiqchi llimp'iwanmi kachkan (yupanakunap bloquenmantaqa " -"hap'ikullanmanmi)" -# "subir pluma" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "qillqanata huqariy" +# "refrescar NXT" +#: taextras.py:332 +msgid "refresh NXT" +msgstr "NXT nisqata kunanyachiy" -# "La tortuga dibujará cuando se mueva." -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Charapa puriptinqa chaypipuni siq'ichanqa." +# "Busca por un brick NXT conectado." +#: taextras.py:333 +msgid "Search for a connected NXT brick." +msgstr "Huk brick NXT nisqata machkhay." -# "bajar pluma" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "qillqanata urayachiy" +#: taextras.py:334 +msgid "NXT" +msgstr "" -# "La tortuga dibujará cuando se mueva." -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Charapa puriptinqa chapipuni siq'ichanqa." +#: taextras.py:335 +msgid "set current NXT device" +msgstr "" -# "fijar tamaño" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "sayayninta akllay" +#: taextras.py:336 +msgid "number of NXT devices" +msgstr "" -# "fija el ancho de la línea que la tortuga dibuja" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "rakhuta utaq ñañuta charapa siq'inanpaq kamachiy" +#: taextras.py:337 +msgid "brick name" +msgstr "" -# "comenzar a rellenar" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "hunt'achiyta qallariy" +#: taextras.py:338 +msgid "Get the name of a brick." +msgstr "" -# "comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" -# [es] "" -# [es] "comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +# "reproducir tono" +#: taextras.py:339 +msgid "play tone" +msgstr "uyarinap kunkanta uyarichiy" + +# "frecuencia" +#: taextras.py:340 +msgid "frequency" +msgstr "frecuencia nisqa" + +# "tiempo" +#: taextras.py:341 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "pacha" + +# "Reproduce un tono a cierta frecuencia por un determinado tiempo." +#: taextras.py:342 +msgid "Play a tone at frequency for time." +msgstr "Uyarinap kunkanta frecuenciatawan unayaynintawan churaspa uyarichiy." + +#. TRANS: turn is the action +#: taextras.py:344 +msgid "" +"turn motor\n" +"\n" msgstr "" -"poligono nisqatam llimp'iwan hunt'achiyta qallariy (bloquepa " -"hunt'achinawanmi ruwakuchkan)" -# "finalizar rellenado" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "huntach'iyta tukuy" +# "Puerto" +#: taextras.py:345 +msgid "port" +msgstr "puerto nisqa" -# "completa el polígono relleno (utilizado con comenzar relleno del bloque)" -# [es] "" -# [es] "completa el polígono relleno (utilizado con comenzar relleno del bloque)" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +# "potencia" +#: taextras.py:346 +msgid "power" +msgstr "Potencia nisqa" + +# "rotación" +#. TRANS: rotations is quantity of turns +#: taextras.py:348 +msgid "rotations" +msgstr "muyuna" + +# "gira un motor" +#: taextras.py:349 +msgid "turn a motor" +msgstr "huk motorta muyuchiy" + +#: taextras.py:350 +msgid "" +"synchronize\n" +"\n" +"motors" msgstr "" -"poligono nisqatam llimp'iwan hunt'achiyta qallariy (bloquepa " -"hunt'achinawanmi ruwakuchkan)" -# "tamaño" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "sayan" +#: taextras.py:351 +msgid "steering" +msgstr "" -# "contiene el tamaño actual de la pluma (se puede usar en vez de un bloque de " -# "número)" -# [es] "" -# [es] "contiene el tamaño actual de la pluma (se puede usar en vez de un bloque de " -# [es] "número)" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +# "sincroniza dos motores conectados en el PUERTO B y PUERTO C" +#: taextras.py:352 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" +"PUERTO B hinallataq PUERTO C nisqaman iskay motorkuna masichakuqta kuskanchay" + +# "PUERTO A" +#: taextras.py:353 +msgid "PORT A" +msgstr "PUERTO A nisqa" + +# "PUERTO A del brick" +#: taextras.py:354 +msgid "PORT A of the brick" +msgstr "brick nisqapa PUERTO A nisqan" + +# "PUERTO B" +#: taextras.py:355 +msgid "PORT B" +msgstr "PUERTO B nisqa" + +# "PUERTO B del brick" +#: taextras.py:356 +msgid "PORT B of the brick" +msgstr "brick nisqapa PUERTO B nisqan" + +# "PUERTO C" +#: taextras.py:357 +msgid "PORT C" +msgstr "PUERTO C nisqa" + +# "PUERTO C del brick" +#: taextras.py:358 +msgid "PORT C of the brick" +msgstr "brick nisqapa PUERTO C nisqan" + +# "iniciar motor" +#: taextras.py:359 +msgid "start motor" +msgstr "motorta qallarichiy" + +# "Girar un motor por siempre." +#: taextras.py:360 +msgid "Run a motor forever." +msgstr "Huk motorta wiñaypaq muyuchiy." + +# "frenar motor" +#: taextras.py:361 +msgid "brake motor" +msgstr "motorta utichiy" + +# "Frena un motor específico." +#: taextras.py:362 +msgid "Stop a specified motor." +msgstr "akllasqa motorta utichiy." + +# "reiniciar motor" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:364 +msgid "reset motor" +msgstr "motorta hukmanta qallarichiy" + +# "Reinicia el contador del motor." +#: taextras.py:365 +msgid "Reset the motor counter." +msgstr "Motorpa yupananta hukmanta qallarichiy." + +# "posición del motor" +#: taextras.py:366 +msgid "motor position" +msgstr "motorpa maypi kasqaynin" + +# "Obtiene la posición del motor." +#: taextras.py:367 +msgid "Get the motor position." +msgstr "Motorpa maypi kasqanta taripay." + +# "PUERTO 1" +#: taextras.py:368 +msgid "PORT 1" +msgstr "PUERTO 1 nisqa" + +# "PUERTO 1 del brick" +#: taextras.py:369 +msgid "PORT 1 of the brick" +msgstr "brick nisqapa PUERTO 1 nisqan" + +# "leer" +#: taextras.py:370 +msgid "read" +msgstr "Ñawichay" + +# "sensor" +#: taextras.py:371 +msgid "sensor" +msgstr "musyana" + +# "Lee la salida del sensor." +#: taextras.py:372 +msgid "Read sensor output." +msgstr "Musyaymanta ñawirin." + +# "PUERTO 2" +#: taextras.py:373 +msgid "PORT 2" +msgstr "PUERTO 2 nisqa" + +# "PUERTO 2 del brick" +#: taextras.py:374 +msgid "PORT 2 of the brick" +msgstr "brick nisqapa PUERTO 2 nisqan" + +# "sensor de luz" +#: taextras.py:375 +msgid "light sensor" +msgstr "k'anchariypa musyaynin" + +#: taextras.py:376 +msgid "gray sensor" msgstr "" -"kunan kaq qillqanap rakhuyninwanmi kachkan (yupanakunap bloquenmantaqa " -"hap'ikullanmanmi)" -# "Paleta de colores de la pluma" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Siq'inapaq llimp'ikuna" +# "PUERTO 3" +#: taextras.py:377 +msgid "PORT 3" +msgstr "PUERTO 3 nisqa" + +# "PUERTO 3 del brick" +#: taextras.py:378 +msgid "PORT 3 of the brick" +msgstr "brick nisqapa PUERTO 3 nisqan" + +# "sensor táctil" +#: taextras.py:379 +msgid "touch sensor" +msgstr "ruk'anapa musyaynin" + +# "sensor de distancia" +#: taextras.py:380 +msgid "distance sensor" +msgstr "karu kaymanta musyaynin" + +# "PUERTO 4" +#: taextras.py:381 +msgid "PORT 4" +msgstr "PUERTO 4 nisqa" + +# "PUERTO 4 del brick" +#: taextras.py:382 +msgid "PORT 4 of the brick" +msgstr "brick nisqapa PUERTO 4 nisqan" + +# "sensor de sonido" +#: taextras.py:383 +msgid "sound sensor" +msgstr "uyarinapa musyaynin" + +# "sensor de color" +#: taextras.py:384 +msgid "color sensor" +msgstr "llimp'ip musyaynin" + +# "prender luz" +#. 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:387 +msgid "set light" +msgstr "k'ancharichiy" + +# "Prende la luz del sensor de color." +#: taextras.py:388 +msgid "Set color sensor light." +msgstr "Llimp'ip musyayninpa k'anchariyninta hap'ichiy." + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:390 +msgid "battery level" +msgstr "" -# "rojo" -# [es] "rojo" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "puka" +#: taextras.py:391 +msgid "Get battery level of the brick" +msgstr "" -# "naranja" -# [es] "naranja" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "q'illmu" +# "ALTO" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:396 +msgid "HIGH" +msgstr "ACHKHA" + +# "BAJO" +#: taextras.py:397 +msgid "LOW" +msgstr "PISI" + +# "ENTRADA" +#: taextras.py:398 +msgid "INPUT" +msgstr "HAYKUNA" + +# "SALIDA" +#: taextras.py:399 +msgid "OUTPUT" +msgstr "LLUQSINA" + +# "PWM" +#. TRANS: PWM is pulse-width modulation +#: taextras.py:401 +msgid "PWM" +msgstr "PWM" + +# "SERVO" +#: taextras.py:402 +msgid "SERVO" +msgstr "SERVO" + +# "ERROR: Chequee la Arduino y el número de puerto." +#: taextras.py:403 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "PANTAY: Arduino nisqatawan puerto yupanantawan qhawariy." + +# "ERROR: El valor debe ser un número entre 0 y 255." +#: taextras.py:404 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "PANTAY: chaniqa 0 yupaymanta 255 yupanakamanmi kanman." + +# "ERROR: El valor debe ser ALTO o BAJO." +#: taextras.py:405 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "PANTAY: chaniqa ACHKHA utaq PISI kanman." + +# "ERROR: El modo debe ser ENTRADA, SALIDA, PWM o SERVO." +#: taextras.py:406 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "PANTAY: imayna kayqa HAYKUNA, LLUQSINA, PWM utaq SERVO nispam kanman." + +#: taextras.py:407 +msgid "refresh Arduino" +msgstr "" -# "amarillo" -# [es] "amarillo" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "q'illu" +#: taextras.py:408 +msgid "Search for connected Arduinos." +msgstr "" -# "verde" -# [es] "verde" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "q'umer" +#: taextras.py:409 +msgid "Arduino" +msgstr "" -# "cian" -# [es] "cian" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "q'usiq" +#: taextras.py:410 +msgid "set current Arduino board" +msgstr "" -# "azul" -# [es] "azul" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "anqas" +#: taextras.py:411 +msgid "number of Arduinos" +msgstr "" -# "morado" -# [es] "morado" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "kulli" +#: taextras.py:412 +msgid "number of Arduino boards" +msgstr "" -# "blanco" -# [es] "blanco" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "yuraq" +#: taextras.py:413 +msgid "Arduino name" +msgstr "" -# "atrás" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "yana" +#: taextras.py:414 +msgid "Get the name of an Arduino." +msgstr "" -# "fijar el color del texto" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "qillqap llimp'inta churay" +# "modo del pin" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:417 +msgid "pin mode" +msgstr "Pin nisqa imayna kaynin" -# "fijar el color del texto que la tortuga dibuja" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "charapaq qillqanantam llimp'ichiy" +# "modo" +#: taextras.py:419 +msgid "mode" +msgstr "imayna kaynin" -# "fijar tamaño del texto" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "qillqap sayayninta akllay" +# "Selecciona la función del pin (ENTRADA, SALIDA, PWM, SERVO)." +#: taextras.py:420 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "Pin nisqapa purinanta akllay (HAYKUNA, LLUQSINA, PWM, SERVO)." -# "fijar el tamaño del texto que la tortuga dibuja" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "charapaq qillqananpaq sapan qillqap sayayninta akllay" +# "escribir analógico" +#: taextras.py:421 +msgid "analog write" +msgstr "analogico nisqata qillqay" -# "Paleta de operadores numéricos" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Yupanakunawan llamk'anapaq" +# "valor" +#: taextras.py:422 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "chani" -# "sumar" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "yapapay" +# "Escribe un valor analógico en el puerto especificado." +#: taextras.py:423 +msgid "Write analog value in specified port." +msgstr "alogico chanitam akllasqa puertopiqa qillqay." -# "suma dos entradas alfanuméricas" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "iskay yupanakunap yapapakuynin" +# "leer analógico" +#: taextras.py:424 +msgid "analog read" +msgstr "analogico nisqata nawichay" -# "menos" -# [es] "menos" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "qichupay" +# "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." +#: taextras.py:425 +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 "" +"Huk puesto analogico nisqamanta huk chaniqa ñawichay. Chaniqa 0 yupanamanta " +"1023 yupanakama kanman. Voltaje churanapaqtaq Vref nisqawan purichiwaq. USB " +"nisqapaqtaq, volt=((ñawiriy)*5/1024) nisqahinata." + +# "escribir digital" +#: taextras.py:427 +msgid "digital write" +msgstr "digitalta qillqay" + +# "Escribe un valor digital en un puerto específico." +#: taextras.py:428 +msgid "Write digital value to specified port." +msgstr "digital chanitam akllasqa puertopiqa qillqay." + +# "leer digital" +#: taextras.py:429 +msgid "digital read" +msgstr "digitalta ñawichay" + +# "Lee un valor desde un puerto digital." +#: taextras.py:430 +msgid "Read value from digital port." +msgstr "Purdo digitalmanta chanitaqa ñawichay." + +# "Setea el valor ALTO en el puerto digital." +#: taextras.py:431 +msgid "Set HIGH value for digital port." +msgstr "Puerto digitalpiqa ACHKHA sutichakuq chanita akllapay." + +# "Configura el puerto de la Arduino como entrada digital." +#: taextras.py:432 +msgid "Configure Arduino port for digital input." +msgstr "Digital haykunahina kananpaqmi Arduino puertotaqa kamachiy." + +# "Configura el puerto de la Arduino para manejar un servo." +#: taextras.py:433 +msgid "Configure Arduino port to drive a servo." +msgstr "Servo sutichakuqta puriyachinapaqmi Arduino puertonta kamachiy." + +# "Setea el valor BAJO en el puerto digital." +#: taextras.py:434 +msgid "Set LOW value for digital port." +msgstr "Puerto digitalpiqa PISI sutichakuq chanita akllapay." + +# "Configura el puerto de la Arduino como salida digital." +#: taextras.py:435 +msgid "Configure Arduino port for digital output." +msgstr "Digital lluqsinahina kananpaqmi Arduino puertotaqa kamachiy." + +# "Configura el puerto de la Arduino para PWM modulación por ancho de pulsos)." +#: taextras.py:436 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" +"PWM sutichakuqwan kananpaqmi Arduino puertonta kamachiy (sakhayninwan " +"churachinkunqa)." -# "sustrae la entrada numérica de abajo de la entrada numérica de arriba" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" +# "Paleta de bloques WeDo" +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:441 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "WeDo bloquekunamanta" + +#. TRANS: Programmable voltage output +#: taextras.py:443 +msgid "set PVS" msgstr "" -"yupanata pisiyachinapaqqa ura kaq yupanam wichay kaq yupanataqa pisiyachinqa" -# "multiplicar" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "mirayachiy" +#: taextras.py:444 +msgid "set programmable voltage output" +msgstr "" -# "multiplica dos entradas numéricas" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "iskay yupana haykuqta mirayachiy" +#. TRANS: Square wave 1 voltage output +#: taextras.py:446 +msgid "set SQR1 voltage" +msgstr "" -# "dividir" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "t'aqapay" +#: taextras.py:447 +msgid "set square wave 1 voltage output" +msgstr "" -# "divide la entrada numérica de arriba (numerador) por la entrada numérica de " -# "bajo (denominador)" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "wichay yupanata (numerador) uray yupanawan (denominador) t'aqapay" +#. TRANS: Square wave 2 voltage output +#: taextras.py:449 +msgid "set SQR2 voltage" +msgstr "" -# "identidad" -# [es] "identidad" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "pin kasqa" +#: taextras.py:450 +msgid "set square wave 2 voltage output" +msgstr "" -# "operador de identidad usado para extender bloques" -# [es] "operador de identidad usado para extender bloques" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "bloquekunata mast'arichispa pin kasqata tariq" +#. TRANS: Digital output level +#: taextras.py:452 +msgid "set OD1" +msgstr "" -# "mover" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "kuyuchiy" +#: taextras.py:453 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -# "operador módular (resto)" -# [es] "operador módular (resto)" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modulo nisqata purichiq (qichupay)" +#. TRANS: Input 1 voltage level +#: taextras.py:455 +msgid "IN1 level" +msgstr "" -# "√" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:456 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -# "raiz cuadrada" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "raíz cuadrada nisqa" +#. TRANS: Input 2 voltage level +#: taextras.py:459 +msgid "IN2 level" +msgstr "" -# "calcula la raíz cuadrada" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "raíz cuadrada nisqata tariy" +#: taextras.py:460 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -# "aleatorio" -# [es] "aleatorio" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "muyumuyuriq" +#. TRANS: Resistive sensor voltage level +#: taextras.py:463 +msgid "SEN level" +msgstr "" -# "min" -# [es] "min" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "pisi" +#: taextras.py:464 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -# "max" -# [es] "max" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "achkha" +#: taextras.py:466 +msgid "capture" +msgstr "" -# "devuelve un número aleatorio entre los valores mínimo (arriba) y máximo " -# "(abajo)" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "munasqa pisi (wichaypi) achkha (uraypi)chaniyuq yupanakunatam kutichin" +#: taextras.py:467 +msgid "input" +msgstr "" -# "número" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "yupana" +#: taextras.py:468 +msgid "samples" +msgstr "" -# "utilizado como entrada numérica en los operadores matemáticos" -# [es] "utilizado como entrada numérica en los operadores matemáticos" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "matemática llamk'aypi haykuq yupanakuna" +#: taextras.py:469 +msgid "interval" +msgstr "" -# "mayor que" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "kuraq kaq" +#. TRANS: MS is microseconds +#: taextras.py:471 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -# "operador lógico mayor que" -# [es] "operador lógico mayor que" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "kuraq-kaq llamk'ana sutichakuq" +#. TRANS: Analog input 1 voltage level +#: taextras.py:474 +msgid "A1" +msgstr "" -# "menor que" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "sullk'a kaq" +#: taextras.py:475 +msgid "read analog input 1 voltage" +msgstr "" -# "operador lógico menor que" -# [es] "operador lógico menor que" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "sullk'a-kaq llamk'ana sutichakuq" +#. TRANS: Analog input 2 voltage level +#: taextras.py:477 +msgid "A2" +msgstr "" -# "equivalente" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "kikillanmi" +#: taextras.py:478 +msgid "read analog input 2 voltage" +msgstr "" -# "operador lógico de igualdad" -# [es] "operador lógico de igualdad" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "kikin-kaq llamk'ana sutichakuq" +#. TRANS: Read input 1 voltage +#: taextras.py:480 +msgid "IN1" +msgstr "" -# "no" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "mana" +#: taextras.py:481 +msgid "read input 1 voltage" +msgstr "" -# [es] "operador NO lógico" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "manakikin-kaq llamk'ana sutichakuq" +#. TRANS: Read input 2 voltage +#: taextras.py:483 +msgid "IN2" +msgstr "" -# "y" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "hinallataq" +#: taextras.py:484 +msgid "read input 2 voltage" +msgstr "" -# "operador Y lógico" -# [es] "operador Y lógico" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "HINALLATAQ llamk'ana sutichakuq" +#. TRANS: Read analog sensor input voltage +#: taextras.py:486 +msgid "SEN" +msgstr "" -# "o" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "utaq" +#: taextras.py:487 +msgid "read analog sensor input voltage" +msgstr "" -# "operador O lógico" -# [es] "operador O lógico" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "UTAQ llamk'ana sutichakuq" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:489 +msgid "SQR1" +msgstr "" -# "Paleta de operadores numéricos" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Yupanakunawan llamk'anapap" +#: taextras.py:490 +msgid "read square wave 1 voltage" +msgstr "" -# "esperar" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "suyay" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:492 +msgid "SQR2" +msgstr "" -# "detiene la ejecución del programa por número determinado de segundos" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "programa purisqantaqa segundukunata churaspam utichin" +#: taextras.py:493 +msgid "read square wave 2 voltage" +msgstr "" -# "por siempre" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "wiñaypaq" +#. TRANS: Read programmable voltage +#: taextras.py:495 +msgid "PVS" +msgstr "" -# "repetir para siempre" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "wiñaypaq huktawan kutichiy" +#: taextras.py:496 +msgid "read programmable voltage" +msgstr "" -# "repetir" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "huktawan" +#: taextras.py:497 +msgid "Expeyes device not found" +msgstr "" -# "repetir el número especificado de veces" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "yupana mañakusqantahinam mayk'a kutitapas ruway" +# "reanudar la reproducción de video o audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "videotawan uyarinatawan puriyachiylla" -# "si" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "arí" +# "Título" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Sutinchaynin" -# "entonces" -# [es] "entonces" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "chayna-kaptinqa" +# "Promedio de color RGB de la cámara se desplaza a la pila" +#: 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 "Hayk'a llimp'i RGB sutiyumi cámarap pilankamaqa chayanqa" -# "si entonces" -# [es] "si entonces" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "arí-chayna-kaptinqa" +# "amarillo" +# [es] "amarillo" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "q'illu" + +# "muestra las coordenadas polares" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "coordenadas polares sutichakuqtam rikuchin" + +# "vacía la pila FILO (primera-en-entrar último-en-salir)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "" +"FILO sutichakuq tawqamantam qasichiy ( haykuypiqa hukñiq'im, lluqsiypitaq " +"qhipañiq'im)" + +# "imagen de la cámara" +#: 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 "cámarap wankin" + +# "pone la aceleración en los ejes x, y z en la pila" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "utqhay puriytaqa tawqap x, y, z tinkuchaypi churay" # "operador si-entonces que usa operadores lógicos de la paleta de Números" # [es] "operador si-entonces que usa operadores lógicos de la paleta de Números" @@ -698,88 +1877,213 @@ msgstr "arí-chayna-kaptinqa" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "Yupanakuna llamk'anamanta ari-chayna-kaptinqa" -# [ES] "sino" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "mana chayqa" - -# "si entonces sino" -# [es] "si entonces sino" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "ari-chayna-kaptinqa mana-chayqa" - -# "operador si-entonces-sino que usa operadores lógicos de la paleta de Números" -# [es] "" -# [es] "operador si-entonces-sino que usa operadores lógicos de la paleta de Números" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "Yupanakuna llamk'anamanta ari-chayna-kaptinqa mana-chauqa" - -# -# "espacio horizontal" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "kiranpa k'iti" - # desplaza la pila a la derecha" #: TurtleArt/tabasics.py:812 msgid "jogs stack right" msgstr "pañamanmi tawqataqa suchuchiy" -# -# "espacio vertical" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "sayanpa k'iti" +# "objeto de medios del Diario de Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar Panq'amanta media nisqakuna" + +# "caja 2" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "2 tawak'uchu" + +# "caja 1" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "1 tawak'uchu" + +# "Dar un paso" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Puriy" + +# "multiplica dos entradas numéricas" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "iskay yupana haykuqta mirayachiy" + +# "Mostar/ocultar bloques" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Bloques nisqakunata Qhawachiy/Pakay" + +# "Ocultar paleta" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Llimp'ikunata pakay" + +# "Amigos" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Masikuna" + +# "Mi TortugArte sesión" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "CharapArteyman haykunay" + +# "objeto de video del Diario de Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar P'anqamanta videokuna" + +# "cian" +# [es] "cian" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "q'usiq" + +# "xcor del lado derecho de la pantalla" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "pantallap paña XCOR nisqan" + +# "Palette of extra options" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Wak akllanakunamanta" + +# "Cargar ejemplos" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Qhawarichikunata wichachiy" + +# "mover todos los bloques a la basura" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "llapan bloque nisqakunataqa q'upanaman wikch'uy" + +# "lista" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "sinri" + +# "Directorio de configuración no modificable: %s" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "Mana t'ikranapaq wayaqa: %s" + +# "continuar medios" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "mediakunata rikuchiq" + +# "rumbo" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "mayman" + +# "Compartir bloques deshabilitado" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "Mana llamk'aq bloque nisqakunata qunakuy" + +# "guarda los gráficos de la tortuga como un archivo SVG en el Diario de Azúcar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "charapap rikchayninkunataqa Sugarpa p'anqanpim waqaychay" + +# "dibujar texto o mostrar medios desde el Diario" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "" +"P'anqamanta imaymana medios nisqakunata rikuchiy, manachayqa qillqata " +"siq'ipay" + +# "RFID" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID Radio Frecuencia nisqa" + +# "video" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "qhawarina" + +# "azul" +# [es] "azul" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "anqas" + +# "muestra coordenadas cartesianas" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "coordenadas cartesianas sutichakuqtam rikuchin" + +# "Sin acción alternativa:" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "Mana ima ruwayniyuq:" # desplazar la pila abajo" #: TurtleArt/tabasics.py:820 msgid "jogs stack down" msgstr "uraymanmi tawqataqa suchuchiy" -# "parar acción" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "ruwasqanta utichiy" +# "operador módular (resto)" +# [es] "operador módular (resto)" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modulo nisqata purichiq (qichupay)" -# "detiene la acción actual" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "kunan kaq ruwasqanta utichiy" +# "debajo y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "uraypi Y" -# "Paleta de bloques de variables" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Imaymana bloquekuna" +# "guardar SVG" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "SVG khiputaqa waqaychay" -# "empezar" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "qallariy" +# "ejecuta el código del módulo tamyblock.py que se encuentra en el Diario" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "P'anqapi tamyblock.py sutichakuq kasqantam puriyachin" -# "conecta la acción a los botones de ejecución de la barra de herramientas" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "llamk'anakunapi llamk'aq rumpukunaman masichiy" +# "bajar pluma" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "qillqanata urayachiy" -# "texto" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "qillqa" +# "esperar" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "suyay" -# "valor de cadena" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "waskarchakuqpa chanin" +# "caja" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "tawak'uchu" + +# "¡Error al descargar!" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "Urayachiyqa pantarun!" + +# "desplazar" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "purichiy" + +# "invocar la pila de acción nombrado" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "sutichasqa tawqata waqyay" # "acción" #: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 @@ -790,767 +2094,881 @@ msgstr "waskarchakuqpa chanin" msgid "action" msgstr "ruway" -# "cima de la pila de acción nombrable" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "tawqap patan sutichakuq" +# "se ejecutan la serie de bloques siguientes hasta que se cumpla la condición" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "kamachikusqantahinam kunan ñawpaqmanqa ruwarinqa" -# "invocar la pila de acción nombrado" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "sutichasqa tawqata waqyay" +# "el uso es" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "hap'iyqa kan" -# "guardar en caja 1" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "1 tawak'uchu kaqpi waqaychay" +# "Variable 2 (valor numérico)" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "2 variable nisqa (yupanap chanin)" -# "guarda valor numérico en la variable 1" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "yupanap chanintaqa 1 Variable nisqapi waqaychay" +# "dividir" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "t'aqapay" -# "guardar en caja 2" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "2 tawak'uchu kaqpi waqaychay" +# "nombre de la imagen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "wakip sutin" -# "guarda valor numérico en la variable 2" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "yupanap chanintaqa 2 Variable nisqapi waqaychay" +# "mientras" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "chaykamaqa" -# "caja 1" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "1 tawak'uchu" +# "el ancho del lienzo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "panq'ap kinraynin" -# "Variable 1 (valor numérico)" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "1 variable nisqa (yupanap chanin)" +# "pila vacía?" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "ch'usaq tawqa?" -# "caja 2" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "2 tawak'uchu" +# "siguiente" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "hamuq" -# "Variable 2 (valor numérico)" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "2 variable nisqa (yupanap chanin)" +# "si entonces" +# [es] "si entonces" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "arí-chayna-kaptinqa" -# "guardar en" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "imapi waqaychanki" +# "fijar tamaño" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "sayayninta akllay" -# "caja" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "tawak'uchu" +# "plantilla de presentación: seleccionar objeto del Diario (sin descripción)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "yupi qhawachina: P'anqamanta akllariy (mana willayniyuq kaqta)" -# "valor" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "chani" +# "hasta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "kaykama" -# "mi caja" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "tawak'uchuy" +# "parar medios" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "mediakunata utichiy" -# "guarda valor numérico en la variable nombrada" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "yupanap chanintaqa variable sutichasqapim waqaychay" +# "Habilitar ayuda flotante" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "Tuytuq yanapayta rikuchiy" -# "variable nombrado (valor numérico)" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "sutichasqa Variable (yupanap chanin)" +# "borra permanentemente elementos de la papelera" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "q'upanapi imaymana kaqtaqa wiñaypaq qasichiy" -# "acción 1" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "1 ruway" +# "vuelta en U" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "U hinata muyuchiy" # "primero de la pila de Acción 1" #: TurtleArt/tabasics.py:958 msgid "top of Action 1 stack" msgstr "tawqap 1 Ruwayninpa qallariq" -# "acción 2" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "2 ruway" - -# "primero de la pila de Acción 2" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "tawqap 2 Ruwayninpa qallariq" - -# "invocar la pila de acción 1" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "tawqap 1 ruwayninta waqyay" - -# "invocar la pila de acción 2" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "tawqap 2 ruwayninta waqyay" +# "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:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"programakuq bloque: chulla chaniyuq ecuaciones matematicas nisqa " +"yapanapaqmi, qhawarinapaq hinaqa seno(x)" -# "basura" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "q'upa" +# "Paleta de operadores numéricos" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Yupanakunawan llamk'anapap" -# "vaciar papelera" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "q'upanata qasichiy" +# "encima de una pila plegable" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "tawqa q'imikuq patanpi" -# "borra permanentemente elementos de la papelera" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "q'upanapi imaymana kaqtaqa wiñaypaq qasichiy" +# "operador si-entonces-sino que usa operadores lógicos de la paleta de Números" +# [es] "" +# [es] "operador si-entonces-sino que usa operadores lógicos de la paleta de Números" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "Yupanakuna llamk'anamanta ari-chayna-kaptinqa mana-chauqa" -# "restaurar todo" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "llapanta kutichiy" +# "retorna la coordenada y del cursor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "puripaq Y coordenadanta rikuchin" -# "restaura todos los bloques de la papelera" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "q'upanapi ima bloque nisqakuna kaqtaqa llipinta kutiyachiy" +# "contiene la tonalidad actual de la pluma" +# [es] "contiene la tonalidad actual de la pluma" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "kunan kaq qillqanap llimp'inwanmi kachkan" -# "borrar todos" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "llapanta pichay" +# "sinusoide" +#. #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "sinusoide uyarina" -# "mover todos los bloques a la basura" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "llapan bloque nisqakunataqa q'upanaman wikch'uy" +# "Error de autentificación" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Haykunaqa waqllirun" -# "Compartir bloques seleccionados" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "Akllasqa bloques nisqakunata qunakuy" +# "izquierda x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "lluq'i X" -# "Título" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Sutinchaynin" +# "fijar rumbo" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "mayman rinantam churay" -# "Parar tortuga" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Charapata utichiy" +# "Se envia a la pila el color RGB bajo la tortuga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "charapapi RGB llimp'i kasqantam tawqamanqa apachikun" -# "Mostrar bloques" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Bloques nisqakunata rikuchiy" +# "limpia el lienzo ocultando bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "bloque nisqakunata pakaspaqa hamp'arata pichay" -# "ocultar los bloques" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Bloques nisqakunata pakay" +# "w" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" -# "no pudo escribir en" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "mana atinichu kaypi qillqaytaqa" +# "r" +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" -# "No sé como hacerlo" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Imayna ruwaytaqa mana yachanichu" +# "s" +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" -# "no le gusta" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "manam munanchu" +# "p" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -# "como entrada" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "haykusqahinataqa" +# "e" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -# "muestra la siguiente paleta" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "hukaq llamk'anakunata rikuchiy" +# "Operador chr de Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python nispaq chr operador sutichakuqnin" -# "cambia la orientación de la paleta de bloques" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "bloque nisqakuna mayman qhawariyninta t'ikrachiy" +# +# "espacio horizontal" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "kiranpa k'iti" -# "Cargar..." -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "Purichkanña..." +# "Coordenadas centímetros" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Coordenadas centímetros nisqa" -# "Guardar..." -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Waqaychay..." +# "valor de cadena" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "waskarchakuqpa chanin" -# "clic para abrir" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "kicharinapaqqa clickta ruway" +# "Descripción:" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "imamanta" -# "orientación" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "mayman rinqa" +# "No sé como hacerlo" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Imayna ruwaytaqa mana yachanichu" -# "siguiente" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "hamuq" +# "fijar tamaño del texto" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "qillqap sayayninta akllay" -# "desplazar" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "purichiy" +# "Usuario:" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Haykuqpa sutin:" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +# "comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" +# [es] "" +# [es] "comenzar a rellenar el poligono (usado con finalizar el relleno del bloque)" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" msgstr "" +"poligono nisqatam llimp'iwan hunt'achiyta qallariy (bloquepa " +"hunt'achinawanmi ruwakuchkan)" -# "Selecciona bloques para compartir" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "Qukunapaq bloques nisqakunata akllay" +# "plantilla de presentación: seleccionar cuatro objetos del Diario" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "yupi qhawachina: P'anqamanta tawa imaymanakunata akllariy" -# "TortugArte" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "CharapArte" +# "Ver" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Qhaway" -# "imagen" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "wanki" +# "establece el nivel de gris de la línea dibujada por la tortuga" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "charapa chiqchi llimp'iwan siq'ichananta churay" -# "Guardar como Logo" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Unancha hinata waqaychay" +# "Contraseña:" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Paka-qillqa:" -# "Guardar como imagen" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Wanki hinata waqaychay" +# "la tortuga ve" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "charapaqa qhawan" -# "instantánea" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "usqachiq" +# "parar acción" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "ruwasqanta utichiy" -# "Guardar instantánea" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Utqaylla waqaychay" +# "verde" +# [es] "verde" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "q'umer" -# "Deshabilitar ayuda flotante" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "Tuytuq yanapayta chinkachiy" +# "tono" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "llimp'iynin" -# "Habilitar ayuda flotante" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "Tuytuq yanapayta rikuchiy" +# "rellena el fondo con (color, sombra)" +# [es] "rellena el fondo con (color, sombra)" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "ukhuntaqa hunt'achiy (llimp'iwan, llantuwan ima)" -# "Mostrar paleta" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Llimp'ikunata rikuchiy" +# "guardar imagen" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "wankita waqaychay" -# "Ocultar paleta" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Llimp'ikunata pakay" +# "frecuencia" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "hayk'a kuti" -# "Escalar coordenadas hacia abajo" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Coordenadasta urayman churay" +# "retorna 1 si el botón del ratón está presionado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "huk'uchap rump'un q'apiyasqa kaptinqa 1 yupaytam kutichin" # "Escalar coordenadas hacia arriba" #: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 msgid "Rescale coordinates up" msgstr "Coordenadasta wichayman t'akyachiy" -# "Editar" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Allinchay" - -# "Ver" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Qhaway" +# "subir pluma" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "qillqanata huqariy" -# "Proyecto" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Wakichina" +# "naranja" +# [es] "naranja" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "q'illmu" -# "Guardar/Cargar" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "Waqaychay/Wichachiy" +# "detiene la ejecución del programa por número determinado de segundos" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "programa purisqantaqa segundukunata churaspam utichin" -# "Copiar" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kikinchay" +# "apila el valor sobre la pila FILO (primero en entrar, último en salir)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "" +"FILO sutichakuq tawqamanmi chanita churapay ( haykuypiqa hukñiq'im, " +"lluqsiypitaq qhipañiq'im)" -# "Pegar" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "K'askachiy" +# "borrar todos" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "llapanta pichay" -# "restaura todos los bloques de la papelera" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "Q'upanapi ima bloque nisqakuna kaqtaqa llipinta kutiyachiy" +# "entonces" +# [es] "entonces" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "chayna-kaptinqa" -# "Pantalla completa" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Hunt'asqa pantalla" +# "Registro" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Qillqachikuy" -# "Coordenadas cartesianas" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Coordenadas cartesianas nisqa" +# "no" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "mana" -# "Coordenadas polares" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Coordenadas polares nisqa" +# "si entonces sino" +# [es] "si entonces sino" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "ari-chayna-kaptinqa mana-chayqa" -# "Coordenadas centímetros" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Coordenadas centímetros nisqa" +# "detiene la acción actual" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "kunan kaq ruwasqanta utichiy" -# "Agrandar bloques" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Bloques nisqakunata hatunyachiy" +# "gira la tortuga en sentido horario (ángulo en grados)" +# [es] "gira la tortuga en sentido horario (ángulo en grados)" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "charapataqa pañamanhina muyurichiy ([ángulo en grados nisqapi)" -# "Empequeñecer bloques" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Bloques nisqakunata huch'uyachiy" +# "contiene el nivel actual de gris (puede ser utilizado en vez de un bloque " +# "numérico)" +# [es] "" +# [es] "contiene el nivel actual de gris (puede ser utilizado en vez de un bloque " +# [es] "numérico)" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"kunan kaq chiqchi llimp'iwanmi kachkan (yupanakunap bloquenmantaqa " +"hap'ikullanmanmi)" -# "Cargar ejemplos" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Qhawarichikunata wichachiy" +# "coorx de la izquierda de la pantalla" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "pantallap lluqi XCOR nisqan" -# "Limpiar" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Pichay" +# "Restaurar el tamaño del bloque" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Bloques nisqakunata allinchay" -# "Ejecutar" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Ruway" +# "tortuga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "charapa" -# "Dar un paso" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Puriy" +# "muestra la siguiente paleta" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "hukaq llamk'anakunata rikuchiy" -# "Ayuda" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Yanapay" +# "ocultar los bloques" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "bloques nisqakunata pakay" -# "Parar" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Sayachiy" +# "nivel de luz detectado por la cámara" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "cámarap mayk'a llipipiy rikusqan" -# "Cargar proyecto" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "Wakichinata wichachiy" +# "Operador int de Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python nispaq int operador sutichakuqnin" -# "Cargar plugin" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "Plugin nisqata churay" +# "operador lógico menor que" +# [es] "operador lógico menor que" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "sullk'a-kaq llamk'ana sutichakuq" -# "Cargar bloque Python" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Pythonta wicharichiy" +# "restaura todos los bloques de la papelera" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "q'upanapi ima bloque nisqakuna kaqtaqa llipinta kutiyachiy" -# [ES] "paleta" -#: TurtleArtActivity.py:766 -#, fuzzy -msgid "Palettes" -msgstr "llimp'ikunap marun" +# "Guardar" +#: turtleblocks.py:356 +msgid "Save" +msgstr "Waqaychay" -# "Compartir bloques deshabilitado" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "Mana llamk'aq bloque nisqakunata qunakuy" +# "guardar en caja 1" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "1 tawak'uchu kaqpi waqaychay" -# "p" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +# "guardar en caja 2" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "2 tawak'uchu kaqpi waqaychay" -# "e" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +# "oculta las barras de herramientas de Azúcar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "Sugarpa llamk'anankunata pakay" -# "r" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +# "contiene la coordenada x actual de la tortuga (se puede usar en vez de un " +# "bloque de número)" +# [es] "" +# [es] "contiene la coordenada x actual de la tortuga (se puede usar en vez de un " +# [es] "bloque de número)" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"charapap x coordenadawanmi kachkan (yupanakunap bloquenmantaqa " +"hap'ikullanmanmi)" -# "w" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +# "imprimir" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "ñit'iy" -# "s" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +# "devuelve la coordenada x del cursor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "puripaq X coordenadanta rikuchin" -# "El plugin no puede ser instalado." -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "Plugin nisqaqa churachiykuytaqa manam atichikunchu." +# "rojo" +# [es] "rojo" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "puka" -# "Reinicie TortugArte para poder usar el plugin." -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "Pluginwan kananpaqqa, wakmantam CharapArte sutichakuqtaqa qallarichiy." +# "Guardar como Logo" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Unancha hinata waqaychay" -# "El plugin %s ya se encuentra instalado." -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "Plugin %s sutichakuqqa churasqañam kachkan." +# "fija el color de la línea que la tortuga dibuja" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "charapa ima llimp'iwan siq'ichananta churay" -# "¿Desea reinstalar %s?" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "Munankichu %s sutichakuqta wakmanta churayta?" +# "fijar el color del texto" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "qillqap llimp'inta churay" -# "Mi TortugArte sesión" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "CharapArteyman haykunay" +# "volumen" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "qhapariynin" # "Permitir la colaboración" #: gnome_plugins/collaboration_plugin.py:115 msgid "Enable collaboration" msgstr "Yanapanakupaq kamariy" -# "Actividades" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Ruwanakuna" +# "Paleta de bloques sensor" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Musyanamanta" -# "Amigos" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Masikuna" +# "Cargar plugin" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "Plugin nisqata churay" -# "Compartir" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Qunakuy" +# "retorna 1 si el botón del ratón está presionado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +msgid "returns True if mouse button is pressed" +msgstr "huk'uchap rump'un q'apiyasqa kaptinqa 1 yupaytam kutichin" -# "Configuración" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Kamachina" +# "número" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "yupana" -# "Vecindario" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Ayllu" +# "consulta de teclado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "tecladomanta yachanapaq" + +# "encima" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "patannin" + +# "Enviar a la Web" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Webman apachiy" + +# "Coordenadas cartesianas" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Coordenadas cartesianas nisqa" # "Apodo" #: gnome_plugins/collaboration_plugin.py:292 msgid "Nickname" msgstr "Sutichakuy" -# "Cuenta" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Cuentay" +# "fijar escala" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "imayna kananpaq tupachiy" -# "Servidor" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Servidor nisqa" +# "Compartir bloques seleccionados" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "Akllasqa bloques nisqakunata qunakuy" -# "Puerto" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Puerto nisqa" +# "blanco" +# [es] "blanco" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "yuraq" -# "Contraseña" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Paka-qillqa" +# "conecta la acción a los botones de ejecución de la barra de herramientas" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "llamk'anakunapi llamk'aq rumpukunaman masichiy" -# "Registro" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Qillqachikuy" +# "el tiempo transcurrido (en segundos) desde el inicio del programa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "programa qallarisqanmantaraq unayasqan (segundos nisqapi)" -# "Colores" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Llimp'ikuna" +# "Cancelar" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Chinkachiy" -# "Cargar" -#: 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 "Wichachiy" +# "la altura del lienzo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "panq'ap sayaynin" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +# "presentación" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "2x1 qhawachiy" + +# "menos" +# [es] "menos" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "qichupay" + +# "y" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "hinallataq" + +# "encima de una pila plegable" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "tawqa q'imikuq patanpi" + +# "como entrada" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "haykusqahinataqa" + +# "bloque Python" +#: 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:653 +msgid "Python block" +msgstr "Python nisqamanta" + +# "esperar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "suyariy" + +# "acelerómetro" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "utqhay purichinapaq" + +# "contiene el tamaño actual de la pluma (se puede usar en vez de un bloque de " +# "número)" +# [es] "" +# [es] "contiene el tamaño actual de la pluma (se puede usar en vez de un bloque de " +# [es] "número)" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" msgstr "" +"kunan kaq qillqanap rakhuyninwanmi kachkan (yupanakunap bloquenmantaqa " +"hap'ikullanmanmi)" -# "Enviar a la Web" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Webman apachiy" +# "fijar color" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "llimp'ita akllay" -# "Debe contar con una cuenta en http://turtleartsite.sugarlabs.org para bajar " -# "su proyecto." -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +# "min" +# [es] "min" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "pisi" + +# "Paleta de órdenes de la pluma" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Qillqanawan llamk'anapaq" + +# "muestra los valores en la pila FILO (primero en entrar, último en salir)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" msgstr "" -"Ruwasqaykita urayachinapaqqa http://turtleartsite.sugarlabs.org nisqapim " -"cueta nisqata hurqukuwaq." +"FILO sutichakuq tawqap chanintam rikuchin ( haykuypiqa hukñiq'im, " +"lluqsiypitaq qhipañiq'im)" -# "Usuario:" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Haykuqpa sutin:" +# "se ejecuta la serie de acciones siguientes al bloque mientras se cumpla la " +# "condición fijada al comienzo del mismo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "qallariypi kamachikusqantahinam kunan ñawpaqmanqa ruwarinqa" -# "Contraseña:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Paka-qillqa:" +# "Archivo" +#: turtleblocks.py:363 +msgid "File" +msgstr "Khipu" -# "Título:" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Sutinchaynin:" +# [es] "operador NO lógico" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "manakikin-kaq llamk'ana sutichakuq" -# "Descripción:" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Imamanta:" +# "coory del limite inferior de la pantalla" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "pantallap uray XCOR nisqan" -# "Enviar a la Web" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Webman apachiy" +# "plantilla de presentación: seleccionar objeto del Diario (con descripción)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "yupi qhawachina: P'anqamanta akllariy (willayniyuq kaqta)" -# "Cancelar" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Chinkachiy" +# "Paleta de operadores numéricos" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Yupanakunawan llamk'anapaq" -# "Error de autentificación" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Haykunaqa waqllirun" +# "multiplicar" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "mirayachiy" -# "¡Error al descargar!" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "Urayachiyqa pantarun!" +# "por siempre" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "wiñaypaq" -# "Paleta de bloques sensor" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "Musyanamanta" +# "El plugin %s ya se encuentra instalado." +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "Plugin %s sutichakuqqa churasqañam kachkan." -# "acelerómetro" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "utqhay purichinapaq" +# "dice texto" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "nisqapa nin qillqaqa" -# "pone la aceleración en los ejes x, y z en la pila" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "utqhay puriytaqa tawqap x, y, z tinkuchaypi churay" +# "instantánea" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "usqachiq" -# "sonido" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "uyarina" +# "limpiar" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "pichay" -# "señal de entrada de micrófono" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "microfono uyarisqanmanta" +# "plantilla de presentación: seleccionar dos objetos del Diario" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "yupi qhawachina: P'anqamanta iskay imaymanakunata akllariy" -# "volumen" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "qhapariynin" +# "Agrandar bloques" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Bloques nisqakunata hatunyachiy" -# "volumen de entrada de micrófono" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "microfonopi uyarikusqanmanta qhapariynin" +# "Pantalla completa" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Hunt'asqa pantalla" -# "frecuencia" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "hayk'a kuti" +# "Fichero no encontrado" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Mana tarisqa khipu" -# "frecuencia de la componente más intensa del sonido presente en la entrada de " -# "micrófono" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "microfonopi uyarikusqanmanta sinchi qhaparichiqta qhawachiq" +# "mostrar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "rikuchiy" -# "resistencia" -#: 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 "sinchikay" +# "texto" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "qillqa" -# "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: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 "microfonopi hayk'a uyarikusqanmanta (yupakuq: 700 - 14000 ohms)" +# "aleatorio" +# [es] "aleatorio" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "muyumuyuriq" -# "voltaje" -#: 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 nisqa" +# "operador lógico mayor que" +# [es] "operador lógico mayor que" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "kuraq-kaq llamk'ana sutichakuq" -# "valor del voltaje DC conectado a la entrada de micrófono (rango: 0.40 a 1.90 " -# "V)" -#: 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" +# "gira la tortuga en sentido anti-horario (ángulo en grados)" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "charapataqa lluqimanhina muyurichiy ([ángulo en grados nisqapi)" + +# "atrás" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "yana" + +# "calcula la raíz cuadrada" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "raíz cuadrada nisqata tariy" + +# "contiene la coordenada y actual de la tortuga (se puede usar en vez de un " +# "bloque de número)" +# [es] "" +# [es] "contiene la coordenada y actual de la tortuga (se puede usar en vez de un " +# [es] "bloque de número)" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"microfonopi uyarikusqanmanta DC voltaje nisqamanta (yupakuq: 0.40 - 1.90 V)" +"kunan kaq coordenadawanmi charapaqa kachkan (yupanakunap bloquenmantaqa " +"hap'ikullanmanmi)" -# "Paleta de bloques medios -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Media nisqakuna" +# "cursor x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "puripaq X" -# "brillo" -#: 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 "llipipiynin" +# "cursor y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "puripaq Y" -# "nivel de luz detectado por la cámara" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "cámarap mayk'a llipipiy rikusqan" +# "parar" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "sayachiy" -# "Promedio de color RGB de la cámara se desplaza a la pila" -#: 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 "Hayk'a llimp'i RGB sutiyumi cámarap pilankamaqa chayanqa" +# "mayor que" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "kuraq kaq" -# "imagen de la cámara" -#: 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 "cámarap wankin" +# "coorx" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +# "Ayuda" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Yanapay" + +# "¿Guardar el proyecto?" +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "Waqaychakunqachu?" + +# "elige la tortuga a ordenar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "kamachinapaq charapata akllakuy" + +# "derecha x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "paña X" + +# "fijar el color del texto que la tortuga dibuja" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "charapaq qillqanantam llimp'ichiy" # "nivel de luz detectado por el sensor" #: plugins/light_sensor/light_sensor.py:58 @@ -1558,235 +2976,247 @@ msgstr "cámarap wankin" msgid "light level detected by light sensor" msgstr "kayk'a k'anchariy musyasqa" -# "RFID" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID Radio Frecuencia nisqa" - -# "leer el valor del dispositivo de radiofrecuencia (RFID)" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "Radio Frecuenciap (RFID) chaninta ñawiriy" - -# "mientras" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "chaykamaqa" - -# "se ejecuta la serie de acciones siguientes al bloque mientras se cumpla la " -# "condición fijada al comienzo del mismo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "qallariypi kamachikusqantahinam kunan ñawpaqmanqa ruwarinqa" - -# "hasta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "kaykama" +# "teclado" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "teclado nisqa" -# "se ejecutan la serie de bloques siguientes hasta que se cumpla la condición" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "kamachikusqantahinam kunan ñawpaqmanqa ruwarinqa" +# "arco" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arco nisqa" -# "encima" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "patannin" +# "radio" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radio nisqa" -# "encima de una pila plegable" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "tawqa q'imikuq patanpi" +# "Coordenadas polares" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Coordenadas polares nisqa" -# "diario" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "p'anqa" +# "fijar tono" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "llimp'ita churay" -# "objeto de medios del Diario de Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar Panq'amanta media nisqakuna" +# "operador Y lógico" +# [es] "operador Y lógico" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "HINALLATAQ llamk'ana sutichakuq" -# "audio" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "uyarina" +# "Debe contar con una cuenta en http://turtleartsite.sugarlabs.org para bajar " +# "su proyecto." +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Ruwasqaykita urayachinapaqqa http://turtleartsite.sugarlabs.org nisqapim " +"cueta nisqata hurqukuwaq." -# "Sugar Journal audio object" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar Panq'amanta uyarinakuna" +# [ES] "paleta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "llimp'ikunap marun" -# "video" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "qhawarina" +# "Ejecutar" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Ruway" -# "objeto de video del Diario de Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar P'anqamanta videokuna" +# "mostrar pila" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "tawqata rikuchiy" -# "Descripción:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "imamanta" +# "fija la orientación de la tortuga (0 es hacia la parte superior de la " +# "pantalla.)" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "" +"charapap mayman rinanta churay (0 yupanaqa pantallap wichayninmanmi purichin)" -# "descripción" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "imamanta" +# "volumen de entrada de micrófono" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "microfonopi uyarikusqanmanta qhapariynin" -# "mostrar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "rikuchiy" +# "Título:" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Sutinchaynin:" -# "dibujar texto o mostrar medios desde el Diario" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "" -"P'anqamanta imaymana medios nisqakunata rikuchiy, manachayqa qillqata " -"siq'ipay" +# "Paleta de bloques medios +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Media nisqakuna" -# -# "mostrar alineados" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "sinrichasqakunata rikuchiy" +# "restaura todos los bloques de la papelera" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "Q'upanapi ima bloque nisqakuna kaqtaqa llipinta kutiyachiy" -# "fijar escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "imayna kananpaq tupachiy" +# "Paleta de bloques de variables" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Imaymana bloquekuna" -# "fijar la escala de medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "medios nisqakuna imayna kananpaqqa tupachiy" +# "utilizado como entrada numérica en los operadores matemáticos" +# [es] "utilizado como entrada numérica en los operadores matemáticos" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "matemática llamk'aypi haykuq yupanakuna" -# "guardar imagen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "wankita waqaychay" +# "Cargar" +#: 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 "Wichachiy" -# "nombre de la imagen" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "wakip sutin" +# "Servidor" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Servidor nisqa" -# "guarda una imagen en el Diario de Azúcar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "Sugarpa p'anqanpim huk wankita waqaychay" +# "presentación" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "2x2 qhawachiy" -# "guardar SVG" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG khiputaqa waqaychay" +# "Variable 1 (valor numérico)" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "1 variable nisqa (yupanap chanin)" -# "guarda los gráficos de la tortuga como un archivo SVG en el Diario de Azúcar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "charapap rikchayninkunataqa Sugarpa p'anqanpim waqaychay" +# "Vecindario" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Ayllu" -# "escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "imayna kananpaq" +# "suma dos entradas alfanuméricas" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "iskay yupanakunap yapapakuynin" -# "mantiene el valor actual de la escala" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "kunan kasqa chaninwan purichkan" +# "equivalente" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "kikillanmi" -# "esperar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "suyariy" +# "no le gusta" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "manam munanchu" -# "esperar de audio o de vídeo hasta el final" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "uyarinata utaq video nisqata tukunankama suyariy" +# "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "Llamk'asqa mana waqaychasqa kachkan. Munankichu waqaychayta?" -# "parar medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "mediakunata utichiy" +# "restaura bloques ocultos" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "bloques pakasqakunataqa wakmanta rikuchiy" # "detiene el video o audio" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 msgid "stop video or audio" msgstr "videotawan uyarinatawan utichin" -# "pausar medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "mediakunata utichiy" +# "La tortuga dibujará cuando se mueva." +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Charapa puriptinqa chaypipuni siq'ichanqa." -# "pausa el video o audio" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "videotawan uyarinatawan utichin" +# "sacar" +#. #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "hurquy" -# "continuar medios" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "mediakunata rikuchiq" +# "tamaño" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "sayan" -# "reanudar la reproducción de video o audio" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "videotawan uyarinatawan puriyachiylla" +# "caparazón de la tortuga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "charapap wasaqarachan" + +# "reproduce una sinusoide desde frecuencia, amplitud y duración (en segundos)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" +"Huk sinusoide uyarinata frecuencianmanta, amplitudmantawan unayayninmantawan " +"uyarichiy (kayqa segundos pachapi)" + +# "√" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" # "hablar" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 msgid "speak" msgstr "rimay" -# "hola" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "allillanchu" +# "leer el valor del dispositivo de radiofrecuencia (RFID)" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "Radio Frecuenciap (RFID) chaninta ñawiriy" -# "dice texto" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "nisqapa nin qillqaqa" +# "mueve la tortuga a lo largo de un arco" +# [es] "mueve la tortuga a lo largo de un arco" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "suni arco nisqantintam charapataqa purichiy" -# "sinusoide" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "sinusoide uyarina" +# "hacer una vuelta en U" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "U hinata muyuchiy" -# [ES] "amplitud" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "imayna uyarinamanta" +# "operador lógico de igualdad" +# [es] "operador lógico de igualdad" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "kikin-kaq llamk'ana sutichakuq" -# "duración" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "unayaynin" +# "Paleta de colores de la pluma" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Siq'inapaq llimp'ikuna" -# "reproduce una sinusoide desde frecuencia, amplitud y duración (en segundos)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "" -"Huk sinusoide uyarinata frecuencianmanta, amplitudmantawan unayayninmantawan " -"uyarichiy (kayqa segundos pachapi)" +# "pausa el video o audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "videotawan uyarinatawan utichin" + +# "guarda valor numérico en la variable 1" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "yupanap chanintaqa 1 Variable nisqapi waqaychay" + +# "guarda valor numérico en la variable 2" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "yupanap chanintaqa 2 Variable nisqapi waqaychay" + +# "vestir a la tortuga con un caparazón a medida" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "charapamanqa takyaq wasaqarachata churay" # "botón presionado" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 @@ -1794,135 +3224,139 @@ msgstr "" msgid "button down" msgstr "rump'u ñit'isqa" -# "retorna 1 si el botón del ratón está presionado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "huk'uchap rump'un q'apiyasqa kaptinqa 1 yupaytam kutichin" +# "retroceder la tortuga" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "qhipaman charapata purichiy" -# "retorna 1 si el botón del ratón está presionado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -msgid "returns True if mouse button is pressed" -msgstr "huk'uchap rump'un q'apiyasqa kaptinqa 1 yupaytam kutichin" +# "ycor del limite superior de la pantalla" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "pantallap wichay XCOR nisqan" -# "cursor x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "puripaq X" +# "Mostrar bloques" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Bloques nisqakunata rikuchiy" -# "devuelve la coordenada x del cursor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "puripaq X coordenadanta rikuchin" +# "reproducir" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "purichiy" -# "cursor y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "puripaq Y" +# "guardar" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "waqaychay" -# "retorna la coordenada y del cursor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "puripaq Y coordenadanta rikuchin" +# "Colores" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Llimp'ikuna" -# "consulta de teclado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "tecladomanta yachanapaq" +# "fija el ancho de la línea que la tortuga dibuja" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "rakhuta utaq ñañuta charapa siq'inanpaq kamachiy" -# "consulta para la entrada de teclado (los resultados están almacenados en el " -# "bloque del teclado)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "teclado imayna kananpaq (tecladomanta willakuypim kachkan)" +# "Abrir" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Kichay" -# "teclado" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "teclado nisqa" +# "orientación" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "mayman rinqa" -# "contiene los resultados del bloque de consulta de teclado como ASCII" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "teclados ASCII nisqahina tapukusqamanta kutichiykunatam rikuchin" +# "coory" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" -# "leer pixel" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "pixel nisqata ñawiriy" +# "un bloque programable: utilizado para agregar ecuaciones matemáticas " +# "avanzadas de múltiples variables, i.e., sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"programakuq bloque: achkha chaniyuq ecuaciones matematicas nisqa " +"yapanapaqmi, qhawarinapaq hinaqa, i.e., sqrt(x*x+y*y)" -# "Se envia a la pila el color RGB bajo la tortuga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "charapapi RGB llimp'i kasqantam tawqamanqa apachikun" +# "si" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "arí" -# "la tortuga ve" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "charapaqa qhawan" +# "mover la tortuga a la posición xcor, ycor; (0, 0) está en el centro de la " +# "pantalla." +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"charapataq xcor, ycor; (0, 0) nisqaman churay, kayqa pantallap chawpinpi " +"kachkan." -# "muestra el color que \"ve\" la tortuga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "charapa llimp'i \"qhawasqantam\" rikuchin" +# "Python" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -# "tiempo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "pacha" +# "Parar" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Sayachiy" -# "el tiempo transcurrido (en segundos) desde el inicio del programa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "programa qallarisqanmantaraq unayasqan (segundos nisqapi)" +# "acción 2" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "2 ruway" -# "Palette of extra options" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Wak akllanakunamanta" +# "acción 1" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "1 ruway" -# "empujar" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "tanqay" +# "finalizar rellenado" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "huntach'iyta tukuy" -# "apila el valor sobre la pila FILO (primero en entrar, último en salir)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "" -"FILO sutichakuq tawqamanmi chanita churapay ( haykuypiqa hukñiq'im, " -"lluqsiypitaq qhipañiq'im)" +# "Copiar" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kikinchay" -# "mostrar pila" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "tawqata rikuchiy" +# "Pegar" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "K'askachiy" -# "muestra los valores en la pila FILO (primero en entrar, último en salir)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "" -"FILO sutichakuq tawqap chanintam rikuchin ( haykuypiqa hukñiq'im, " -"lluqsiypitaq qhipañiq'im)" +# "no pudo escribir en" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "mana atinichu kaypi qillqaytaqa" + +# "Actividades" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Ruwanakuna" + +# "Enviar a la Web" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Webman apachiy" # "vaciar pila" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 msgid "empty heap" msgstr "tawqata qasichiy" -# "vacía la pila FILO (primera-en-entrar último-en-salir)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "" -"FILO sutichakuq tawqamantam qasichiy ( haykuypiqa hukñiq'im, lluqsiypitaq " -"qhipañiq'im)" - -# "sacar" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "hurquy" - # "saca el valor de la pila FILO (primero en entrar, último en salir)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" @@ -1930,211 +3364,228 @@ msgstr "" "FILO sutichakuq tawqamantam chanitaqa hurquy ( haykuypiqa hukñiq'im, " "lluqsiypitaq qhipañiq'im)" -# "pila vacía?" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "ch'usaq tawqa?" - -# "devuelve Verdadero si la pila está vacía" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "Tawqa ch'usaq kaptinqa CHIQAQMI nispan rikunchin" +# "Limpiar" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Pichay" -# "comentar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "rimariy" +# "Paleta de plantillas de presentaciones" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Qhawachinakunamanta" -# "coloca un comentario en tu código" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "ch'inpuykipiqa huy willakuyta churay" +# "ángulo" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "k'uchu" -# "imprimir" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "ñit'iy" +# "Guardar/Cargar" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "Waqaychay/Wichachiy" -# "imprime el valor en el bloque de estado en la parte inferior de la pantalla" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "pantallap urayninpim kunan kaq chanitaqa rikuchin" +# "arriba y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "wichay Y" -# "Operador chr de Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python nispaq chr operador sutichakuqnin" +# "audio" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "uyarina" -# "Operador int de Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python nispaq int operador sutichakuqnin" +# "Herramientas" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Llamk'anakuna" -# "Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +# "Puerto" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Puerto nisqa" -# "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:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"programakuq bloque: chulla chaniyuq ecuaciones matematicas nisqa " -"yapanapaqmi, qhawarinapaq hinaqa seno(x)" +# "izquierda" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "lluqi" -# "un bloque programable: utilizado para agregar ecuaciones matemáticas " -# "avanzadas de múltiples variables, i.e., sqrt(x*x+y*y)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"programakuq bloque: achkha chaniyuq ecuaciones matematicas nisqa " -"yapanapaqmi, qhawarinapaq hinaqa, i.e., sqrt(x*x+y*y)" +# "comentar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "rimariy" -# "un bloque programable: utilizado para añadir ecuaciones matemáticas " -# "avanzadas multivariables, p.e. seno(x+y+z)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" +# "sustrae la entrada numérica de abajo de la entrada numérica de arriba" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" msgstr "" -"programakuq bloque: multivariables chaniyuq ecuaciones matematicas nisqa " -"yapanapaqmi, qhawarinapaq hinaqa, seno(x+y+z)" +"yupanata pisiyachinapaqqa ura kaq yupanam wichay kaq yupanataqa pisiyachinqa" -# "bloque Python" -#: 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:653 -msgid "Python block" -msgstr "Python nisqamanta" +# "pausar medios" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "mediakunata utichiy" -# "ejecuta el código del módulo tamyblock.py que se encuentra en el Diario" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "P'anqapi tamyblock.py sutichakuq kasqantam puriyachin" +# "consulta para la entrada de teclado (los resultados están almacenados en el " +# "bloque del teclado)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "teclado imayna kananpaq (tecladomanta willakuypim kachkan)" # "Cartesiana" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 msgid "Cartesian" msgstr "Cartesiana" -# "muestra coordenadas cartesianas" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "coordenadas cartesianas sutichakuqtam rikuchin" +# "voltaje" +#: 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 nisqa" -# "polar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "polar" +# "limpia la pantalla y restaura la tortuga" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "pichay pantallata charapatataq musuqmanta kamachiy" -# "muestra las coordenadas polares" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "coordenadas polares sutichakuqtam rikuchin" +# "señal de entrada de micrófono" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "microfono uyarisqanmanta" -# "tortuga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "charapa" +# "muestra el color que \"ve\" la tortuga" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "charapa llimp'i \"qhawasqantam\" rikuchin" -# "elige la tortuga a ordenar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "kamachinapaq charapata akllakuy" +# "invocar la pila de acción 1" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "tawqap 1 ruwayninta waqyay" -# "caparazón de la tortuga" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "charapap wasaqarachan" +# "Paleta de comandos de la tortuga" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Charapata kamachinapaq" -# "vestir a la tortuga con un caparazón a medida" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "charapamanqa takyaq wasaqarachata churay" +# "repetir para siempre" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "wiñaypaq huktawan kutichiy" -# "encima de una pila plegable" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "tawqa q'imikuq patanpi" +# +# "mostrar alineados" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "sinrichasqakunata rikuchiy" -# [ES] "cargar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "wichachiy" +# "TortugArte" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "CharapArte" -# [ES] "cargar un bloque" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -msgid "loads a block" -msgstr "bloque nisqata wichachiy" +# "¿Desea reinstalar %s?" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "Munankichu %s sutichakuqta wakmanta churayta?" -# "fijar xy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "xy nisqata churay" +# "Cargar proyecto" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "Wakichinata wichachiy" -# [ES] "paleta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "llimp'ikunap marun" +# "Proyecto" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Wakichina" -# [ES] "seleccionar paleta" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "maruta akllariy" +# "Depurar" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Allichay" -# "Paleta de plantillas de presentaciones" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Qhawachinakunamanta" +# "Deshabilitar ayuda flotante" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "Tuytuq yanapayta chinkachiy" -# "ocultar los bloques" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "bloques nisqakunata pakay" +# "Contraseña" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Paka-qillqa" -# "limpia el lienzo ocultando bloques" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "bloque nisqakunata pakaspaqa hamp'arata pichay" +# +# "espacio vertical" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "sayanpa k'iti" + +# "Reinicie TortugArte para poder usar el plugin." +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "Pluginwan kananpaqqa, wakmantam CharapArte sutichakuqtaqa qallarichiy." + +# "completa el polígono relleno (utilizado con comenzar relleno del bloque)" +# [es] "" +# [es] "completa el polígono relleno (utilizado con comenzar relleno del bloque)" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"poligono nisqatam llimp'iwan hunt'achiyta qallariy (bloquepa " +"hunt'achinawanmi ruwakuchkan)" + +# "Compartir" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Qunakuy" + +# "menor que" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "sullk'a kaq" + +# "raiz cuadrada" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "raíz cuadrada nisqa" + +# "Escalar coordenadas" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Coordenadasta wichay" # "mostrar bloques" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 msgid "show blocks" msgstr "bloques nisqakunata rikuchiy" -# "restaura bloques ocultos" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "bloques pakasqakunataqa wakmanta rikuchiy" +# "Salir" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Lluqsiy" -# "oculta las barras de herramientas de Azúcar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "Sugarpa llamk'anankunata pakay" +# "derecha" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "paña" -# "lista" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "sinri" +# "descripción" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "imamanta" + +# "establecer gris" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "chiqchita churay" # "presentación con lista de viñetas" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 @@ -2142,112 +3593,252 @@ msgstr "sinri" msgid "presentation bulleted list" msgstr "sinrichasqakunawan qhawachina" +# "duración" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "unayaynin" + +# "Nuevo" +#: turtleblocks.py:354 +msgid "New" +msgstr "Musuq" + +# "coloca un comentario en tu código" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "ch'inpuykipiqa huy willakuyta churay" + +# "leer pixel" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "pixel nisqata ñawiriy" + +# "escala" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "imayna kananpaq" + +# "debajo" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "uraynin" + +# "morado" +# [es] "morado" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "kulli" + +# "Escalar coordenadas hacia abajo" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Coordenadasta urayman churay" + +# "clic para abrir" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "kicharinapaqqa clickta ruway" + +# "frecuencia de la componente más intensa del sonido presente en la entrada de " +# "micrófono" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "microfonopi uyarikusqanmanta sinchi qhaparichiqta qhawachiq" + +# "Configuración" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Kamachina" + +# "Descripción:" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Imamanta:" + +# "diario" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "p'anqa" + +# "vaciar papelera" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "q'upanata qasichiy" + +# "La tortuga dibujará cuando se mueva." +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Charapa puriptinqa chapipuni siq'ichanqa." + +# "Cargar..." +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "Purichkanña..." + +# "Sugar Journal audio object" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar Panq'amanta uyarinakuna" + +# "Parar tortuga" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Charapata utichiy" + +# "Tortuga" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Charapa" + +# "cambia la orientación de la paleta de bloques" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "bloque nisqakuna mayman qhawariyninta t'ikrachiy" + +# "guardar en" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "imapi waqaychanki" + +# "ocultar los bloques" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Bloques nisqakunata pakay" + +# "Cargar bloque Python" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Pythonta wicharichiy" + +# "sumar" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "yapapay" + +# "o" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "utaq" + # "plantilla de presentación: lista de viñetas" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 msgid "presentation template: list of bullets" msgstr "yupi qhawachina: ratachiqkunawan sinri" -# "plantilla de presentación: seleccionar objeto del Diario (sin descripción)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "yupi qhawachina: P'anqamanta akllariy (mana willayniyuq kaqta)" - -# "plantilla de presentación: seleccionar objeto del Diario (con descripción)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "yupi qhawachina: P'anqamanta akllariy (willayniyuq kaqta)" +# "operador de identidad usado para extender bloques" +# [es] "operador de identidad usado para extender bloques" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "bloquekunata mast'arichispa pin kasqata tariq" -# "plantilla de presentación: seleccionar cuatro objetos del Diario" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "yupi qhawachina: P'anqamanta tawa imaymanakunata akllariy" +# "Empequeñecer bloques" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Bloques nisqakunata huch'uyachiy" -# "plantilla de presentación: seleccionar dos objetos del Diario" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "yupi qhawachina: P'anqamanta iskay imaymanakunata akllariy" +# "fijar el tamaño del texto que la tortuga dibuja" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "charapaq qillqananpaq sapan qillqap sayayninta akllay" -# "coorx de la izquierda de la pantalla" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "pantallap lluqi XCOR nisqan" +# "contiene la orientación actual de la tortuga (se puede usar en vez de un " +# "bloque de número)" +# [es] "" +# [es] "contiene la orientación actual de la tortuga (se puede usar en vez de un " +# [es] "bloque de número)" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"kunan kaq charapap ñanninwanmi kachkan (yupanakunap bloquenmantaqa " +"hap'ikullanmanmi)" -# "debajo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "uraynin" +# "imagen" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "wanki" -# "coory del limite inferior de la pantalla" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "pantallap uray XCOR nisqan" +# "devuelve un número aleatorio entre los valores mínimo (arriba) y máximo " +# "(abajo)" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "munasqa pisi (wichaypi) achkha (uraypi)chaniyuq yupanakunatam kutichin" -# "anchura" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "kinraynin" +# "contiene el color actual de la pluma (se puede usar en vez de un bloque de " +# "número)" +# [es] "" +# [es] "contiene el color actual de la pluma (se puede usar en vez de un bloque de " +# [es] "número)" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"kunan kaq qillqanap llimp'inwanmi kachkan (yupanakunap bloquenmantaqa " +"hap'ikullanmanmi)" -# "el ancho del lienzo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "panq'ap kinraynin" +# "Mostrar paleta" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Llimp'ikunata rikuchiy" -# "xcor del lado derecho de la pantalla" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "pantallap paña XCOR nisqan" +# "guarda una imagen en el Diario de Azúcar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "Sugarpa p'anqanpim huk wankita waqaychay" -# "ycor del limite superior de la pantalla" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "pantallap wichay XCOR nisqan" +# "Guardar instantánea" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Utqaylla waqaychay" -# "altura" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "sayaynin" +# "empezar" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "qallariy" -# "la altura del lienzo" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "panq'ap sayaynin" +# "devuelve Verdadero si la pila está vacía" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "Tawqa ch'usaq kaptinqa CHIQAQMI nispan rikunchin" -# "título x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "x sutinchaynin" +# "mi caja" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "tawak'uchuy" -# "título y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "y sutinchaynin" +# "Cuenta" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Cuentay" -# "izquierda x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "lluq'i X" +# "Selecciona bloques para compartir" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "Qukunapaq bloques nisqakunata akllay" -# "arriba y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "wichay Y" +# "atrás" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "kutichiy" -# "derecha x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "paña X" +# "fijar la escala de medios" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "medios nisqakuna imayna kananpaqqa tupachiy" -# "debajo y" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "uraypi Y" +# "mantiene el valor actual de la escala" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "kunan kasqa chaninwan purichkan" # "presentación" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 @@ -2256,19 +3847,232 @@ msgid "presentation 1x1" msgstr "1x1 qhawachiy" # "presentación" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "2x1 qhawachiy" - -# "presentación" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 msgid "presentation 1x2" msgstr "1x2 qhawachiy" -# "presentación" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "2x2 qhawachiy" +# "cima de la pila de acción nombrable" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "tawqap patan sutichakuq" + +# "guarda valor numérico en la variable nombrada" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "yupanap chanintaqa variable sutichasqapim waqaychay" + +# "operador O lógico" +# [es] "operador O lógico" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "UTAQ llamk'ana sutichakuq" + +# "valor del voltaje DC conectado a la entrada de micrófono (rango: 0.40 a 1.90 " +# "V)" +#: 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 "" +"microfonopi uyarikusqanmanta DC voltaje nisqamanta (yupakuq: 0.40 - 1.90 V)" + +# "repetir el número especificado de veces" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "yupana mañakusqantahinam mayk'a kutitapas ruway" + +# "Guardar..." +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Waqaychay..." + +# "invocar la pila de acción 2" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "tawqap 2 ruwayninta waqyay" + +# "fijar xy" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "xy nisqata churay" + +# "título y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "y sutinchaynin" + +# "rellenar pantalla" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "pantallata hunt'achiy" + +# "Guardar como" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Kay hinata waqaychay" + +# "basura" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "q'upa" + +# "polar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "polar" + +# "repetir" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "huktawan" + +# "esperar de audio o de vídeo hasta el final" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "uyarinata utaq video nisqata tukunankama suyariy" + +# "Guardar como imagen" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Wanki hinata waqaychay" + +# "Editar" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Allinchay" + +# "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: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 "microfonopi hayk'a uyarikusqanmanta (yupakuq: 700 - 14000 ohms)" + +# "primero de la pila de Acción 2" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "tawqap 2 Ruwayninpa qallariq" + +# "divide la entrada numérica de arriba (numerador) por la entrada numérica de " +# "bajo (denominador)" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "wichay yupanata (numerador) uray yupanawan (denominador) t'aqapay" + +# "max" +# [es] "max" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "achkha" + +# "imprime el valor en el bloque de estado en la parte inferior de la pantalla" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "pantallap urayninpim kunan kaq chanitaqa rikuchin" + +# "comenzar a rellenar" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "hunt'achiyta qallariy" + +# "contiene los resultados del bloque de consulta de teclado como ASCII" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "teclados ASCII nisqahina tapukusqamanta kutichiykunatam rikuchin" + +# "empujar" +#. #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# quz.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "tanqay" + +# "un bloque programable: utilizado para añadir ecuaciones matemáticas " +# "avanzadas multivariables, p.e. seno(x+y+z)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"programakuq bloque: multivariables chaniyuq ecuaciones matematicas nisqa " +"yapanapaqmi, qhawarinapaq hinaqa, seno(x+y+z)" + +# "restaurar todo" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "llapanta kutichiy" + +# "hola" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "allillanchu" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +# [ES] "Una tortuga inspirada en Logo que hace dibujos coloridos junto con bloques " +# [ES] "complementarios de programación visual" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" +"Charapachaqa Logo nisqata qhawaspam ruwakurqan hinam sumaq siq'ikunata " +"ruwaspa llimp'in kaqllataq tawqakunatapas ruwarillanmi" + +# [ES] "sino" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "mana chayqa" + +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" + +# [ES] "paleta" +#: TurtleArtActivity.py:766 +#, fuzzy +msgid "Palettes" +msgstr "llimp'ikunap marun" + +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" + +# [ES] "amplitud" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "imayna uyarinamanta" + +# [ES] "cargar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "wichachiy" + +# [ES] "cargar un bloque" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +msgid "loads a block" +msgstr "bloque nisqata wichachiy" + +# [ES] "seleccionar paleta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "maruta akllariy" #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." @@ -2298,127 +4102,71 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "tawqamanmi rgb kasqantaqa churay" -# "parar" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "sayachiy" - -# "reproducir" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "purichiy" - -# "guardar" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "waqaychay" - # [ES] "otros" #: pysamples/journal-stats.py:78 msgid "other" msgstr "wakkuna" -# "vuelta en U" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "U hinata muyuchiy" - -# "hacer una vuelta en U" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "U hinata muyuchiy" - -# "el uso es" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "hap'iyqa kan" - -# "Sin acción alternativa:" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "Mana ima ruwayniyuq:" - -# "Fichero no encontrado" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Mana tarisqa khipu" - -# "Directorio de configuración no modificable: %s" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "Mana t'ikranapaq wayaqa: %s" - -# "Nuevo" -#: turtleblocks.py:354 -msgid "New" -msgstr "Musuq" - -# "Abrir" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Kichay" - -# "Guardar" -#: turtleblocks.py:356 -msgid "Save" -msgstr "Waqaychay" - -# "Guardar como" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Kay hinata waqaychay" - -# "Salir" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Lluqsiy" +#: turtleblocks.py:407 +msgid "About..." +msgstr "" -# "Archivo" -#: turtleblocks.py:363 -msgid "File" -msgstr "Khipu" +# "Devuelve el nivel de luz en el ambiente como un número entre 0 y 1023." +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "k'ancharichinaykipaqqa, 0 yupaymanta 1023 yupaykama churawaq" + +# "Devuelve el nivel de luz en el ambiente como un número entre 0 y 1023." +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "k'ancharichinaykipaqqa, 0 yupaymanta 1023 yupaykama churawaq" + +# "Devuelve la temperatura en el ambiente como un número entre 0 y 255." +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "" +#~ "q'uñiyachinaykipaq utaq chiriyachinaykipaqqa, 0 yupaymanta 1023 yupaykama " +#~ "churawaq" + +# "returns the distance from the object in front of the sensor as a number " +# "between 0 and 255" +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" +#~ msgstr "" +#~ "musyanap ñawpanpi imaymana hayk'a karupi kasqantam 0 yupaymanta 255 " +#~ "yupaykamata rikuchin" -# "Escalar coordenadas" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Coordenadasta wichay" +# "variable nombrado (valor numérico)" +#~ msgid "named variable (numeric value)" +#~ msgstr "Sutichasqa Variable (yupanap chanin)" -# "Restaurar el tamaño del bloque" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Bloques nisqakunata allinchay" +# "fijar la oscuridad de la linea que la tortuga dibuja" +#~ msgid "sets shade of the line drawn by the turtle" +#~ msgstr "charapa yana yana llimp'iwan siq'ichananta churay" -# "Mostar/ocultar bloques" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Bloques nisqakunata Qhawachiy/Pakay" +# "El plugin no puede ser instalado." +#~ msgid "Plugin could not be installed." +#~ msgstr "Plugin nisqaqa churachiykuytaqa manam atichikunchu" -# "Herramientas" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Llamk'anakuna" +# "identidad" +# [es] "identidad" +#~ msgid "identity" +#~ msgstr "Pin kaynin" -# "Depurar" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Allichay" +# "mover" +#~ msgid "mod" +#~ msgstr "Kuyuchiy" -# "Tortuga" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Charapa" +# "avanzar la tortuga" +#~ msgid "moves turtle forward" +#~ msgstr "Ñawpaqman charapata purichiy" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +# "adelante" +#~ msgid "forward" +#~ msgstr "Ñawpaqman" -# "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "Llamk'asqa mana waqaychasqa kachkan. Munankichu waqaychayta?" +# "título x" +#~ msgid "title x" +#~ msgstr "sutinchaynin x" -# "¿Guardar el proyecto?" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "Waqaychakunqachu?" +# "fijar xy" +#~ msgid "set xy" +#~ msgstr "XY nisqata churay" diff --git a/po/ro.po b/po/ro.po index fb36e1f..8dda77b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ro.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ro.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ro.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ro.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -19,6 +44,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -97,14 +1577,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -160,12 +1632,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -625,10 +2091,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1105,11 +2567,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1136,13 +2593,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1169,15 +2619,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1443,10 +2884,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1695,10 +3132,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1711,10 +3144,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/ru.po b/po/ru.po index d860541..2511ed9 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -14,522 +39,1719 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Палитра комманд черепашки" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "вперёд" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "перемещает черепашку вперёд" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "назад" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "перемещает черепашку назад" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "очистить" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "очищает экран и возвращает черепашку" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "влево" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "поворачивает черепашку по часовой стрелке (угол в градусах)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "вправо" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "поворачивает черепашку по часовой стрелке (угол в градусах)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "круг" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "угол" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "радиус" +#: taextras.py:86 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 "сопротивление" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "передвигает черепаху по кругу" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "координаты" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "высота" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "ширина" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "перемещает черепашку к позиции коор Х, коор У; (0, 0) это центр экрана." +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "направление" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x текущ." +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "идентификатор" + +#: taextras.py:267 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -"заблокировать текущую коорд. Х черепахи (может использоваться в числовых " -"блоках)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y текущ." +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:270 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"заблокировать текущую коорд. У черепахи (может использоваться в числовых " -"блоках)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "направление" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:274 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -"блокирует текущее значение головы черепашки (может использоваться в " -"нумерованных блоках)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Палитра команд ручке" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "заполнение" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "цвет" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "затенение" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "вправо" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "заполняет фон (цвет, изображение)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "звук" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:320 +msgid "grey" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "цвет" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "устанавливает цвет линий, рисуемых черепашкой" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "затенение" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "устанвливают тени линии, рисуемой черепашкой" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -#: TurtleArt/tabasics.py:340 -#, fuzzy -msgid "sets gray level of the line drawn by the turtle" -msgstr "устанвливают тени линии, рисуемой черепашкой" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" msgstr "" -"блокирует текущий цвет ручки (может использоваться на месте нумерованных " -"блоков)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "блокирует текущую тень кисти" +#: taextras.py:329 +msgid "NXT not found" +msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" msgstr "" -"блокирует секущий размер пера (может быть использовано в числовых блока)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "поднять перо" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Черепашка не будет рисовать, двигаясь ." +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "опустить перо" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Черепашка будет рисовать, двигаясь." +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "размер пера" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "устанавливает размер линии, рисуемой черепашкой" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" +#: taextras.py:337 +msgid "Get the name of a brick." msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:338 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" +#: taextras.py:339 +msgid "frequency" msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "размер пера" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" msgstr "" -"блокирует секущий размер пера (может быть использовано в числовых блока)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Палитра цветов ручки" +#: taextras.py:344 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "красный" +#: taextras.py:345 +msgid "power" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "оранжевый" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "желтый" +#: taextras.py:348 +msgid "turn a motor" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "зелёный" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "голубой" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "колубой" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "пурпурный" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArt/tabasics.py:453 +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 #, fuzzy -msgid "white" -msgstr "в то время, как" +msgid "read" +msgstr "красный" -#: TurtleArt/tabasics.py:454 +#: taextras.py:370 #, fuzzy -msgid "black" -msgstr "назад" +msgid "sensor" +msgstr "" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"сенсоры" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "цвет текста" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "устанвливают цвет текста, рисуемого черепашкой" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "установить размер пера" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:474 +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 #, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "устанвливают размеры текста, рисуемого черепашкой" +msgid "mode" +msgstr "модуль" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Палитра числовых операторов" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "плюс" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "добавьте два альфа-числа" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "значение" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "минус" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "выделяет нижнее число ввода из верха нумерованного ввода" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "множество" +#: taextras.py:424 +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 "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "умножает два числа" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "делить" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "делит верхнее число (делитель) на нижнее (знаменатель)" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "идентификатор" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "тождественный оператор используемый для расширения блоков" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "модуль" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "оператор модуля (остатка)" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" +#: taextras.py:465 +msgid "capture" msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "квадратный корень" +#: taextras.py:466 +msgid "input" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "вычисляет квадратный корень" +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-#\n" +"Примеры" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "случайно" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "минимум" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "максимум" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:474 +msgid "read analog input 1 voltage" msgstr "" -"возвращает случайные числа между минимумом (верхнее знач) и максимумов " -"(нижнее знач) числами" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "число" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "используется как числа ввода в математических операторах" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "больше чем" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "логический оператор больше чем" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "меньше чем" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "логический оператор меньше чем" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "равно" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "логический оператор равно" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "не" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "логический оператор НЕ" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "и" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "логической оператор И" +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "или" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "логический оператор ИЛИ" +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "палитра операторов над плавающей точкой" +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Заголовок" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "желтый" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "показывает полярные координаты" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "пустые FILO (first-in-last-out heap)" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" +"если-тогда оператор, используемый логическими операторами из палитры номеров" + +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "сдвигает стек вправо" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "медиа объект Sugar Journal" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "блок 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "блок 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Шаг" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "умножает два числа" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Показать/скрыть блоки" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "скрыть палитру" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +#, fuzzy +msgid "Sugar Journal video object" +msgstr "Аудио объект Sugar Journal" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "голубой" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "коодината Х справа экрана" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "палитра экстра-опций" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Загрузить образец" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "направление" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "сохранить черепашью графику как SVG файл в Sugar Journal" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "рисует текста или показывает медиа из Journal" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "колубой" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "показывает Декартовы координаты" + +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "jogs stack down" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "оператор модуля (остатка)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "низ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "сохранить SVG" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "запускает код поиска в модуле tamyblock.py из Journal" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "опустить перо" #: TurtleArt/tabasics.py:743 msgid "wait" msgstr "ждать" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "приостанавлиет выполнение на указанное число секунд" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "блок" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "всегда" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "вызывает действие именнованного стека" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "вечный цикл" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "действие" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "повтор" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"делать-пока-правда оператор, используемый логическими операторами из " +"Нумерованной палитры" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "цикл указанное число раз" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "переменная 2 (числовое значение)" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "если" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "делить" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "тогда" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "имя картинки" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "в то время, как" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "ширина полотна" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "пустая голова" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "именная переменная (числовое значение)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "дальше" #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "если тогда" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "размер пера" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "пример презентации: выбирете обект Journal (без описанием)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "пока" + +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "безвозвратно удаляет пункты в корзину" + +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "вершина стека действия 1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +#, fuzzy +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" msgstr "" -"если-тогда оператор, используемый логическими операторами из палитры номеров" +"программируемый блок: используется для добавления дополнительных " +"математических выражений с одной переменной, к пр. син(х)" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "иначе" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "палитра операторов над плавающей точкой" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "если тогда иначе" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "верх свёрнутого стека" #: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 msgid "if-then-else operator that uses boolean operators from Numbers palette" @@ -537,42 +1759,371 @@ msgstr "" "если-тогда-иначе оператор, используемый логическими операторами из палитры " "номеров" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "блокирует текущую тень кисти" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "направление" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "очищает холст, скрывая блоки" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + #: TurtleArt/tabasics.py:811 msgid "horizontal space" msgstr "горизонтальный пробел" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "сдвигает стек вправо" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Метрические координаты" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "вертикальный пробел" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "строковое значение" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "jogs stack down" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Я не знаю как" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "установить размер пера" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "пример презентации: выбирете четыре обекта Journal" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Показать" + +#: TurtleArt/tabasics.py:340 +#, fuzzy +msgid "sets gray level of the line drawn by the turtle" +msgstr "устанвливают тени линии, рисуемой черепашкой" #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "остановить действие" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "зелёный" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "затенение" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "заполняет фон (цвет, изображение)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "сохранить картинку" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "нажатие" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Rescale координаты вверх" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "поднять перо" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "оранжевый" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "приостанавлиет выполнение на указанное число секунд" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "кладёт значения в FILO (first-in last-out heap)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "тогда" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "не" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "если тогда иначе" + #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "останавливает текущее действие" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Палитра возможных блоков" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "поворачивает черепашку по часовой стрелке (угол в градусах)" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "старт" +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"блокирует секущий размер пера (может быть использовано в числовых блока)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "координата Х слева от экрана" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Сбросить размер блоков" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "черепашка" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "отображает следующую палитру" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "скрыть блоки" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "логический оператор меньше чем" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "восстанавливает все блоки из карзины" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Сохранить" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "сохранить в кармане 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "сохранить в кармане 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "скрывает Sugar тулбар" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"заблокировать текущую коорд. Х черепахи (может использоваться в числовых " +"блоках)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "печать" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Сохранить как Логотип" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "устанавливает цвет линий, рисуемых черепашкой" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "цвет текста" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "число" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "запрос клавиатура" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "вершина" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Декартовы координаты" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "установить затенение" + +#: TurtleArt/tabasics.py:453 +#, fuzzy +msgid "white" +msgstr "в то время, как" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "объединяет дейтсвия в кнопки запуска на тулбаре" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "высота холста" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "представление 2x1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "минус" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "и" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "верх сворачиваемого стека" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "как ввод" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"блокирует секущий размер пера (может быть использовано в числовых блока)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "цвет" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "минимум" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "загрузить мой проект" + +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Палитра команд ручке" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "показывает значения FILO (first-in last-out heap)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"делать-пока-правда оператор, который используется логическими операторами из " +"числовой палитры" + +#: turtleblocks.py:363 +msgid "File" +msgstr "Файл" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "логический оператор НЕ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "У-координата наверху экрана" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "пример презентации: выбирете обект Journal (с описанием)" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Палитра числовых операторов" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "множество" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "всегда" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "устанвливают тени линии, рисуемой черепашкой" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "снимок" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "очистить" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "пример презентации: выбирете два обекта Journal" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Увеличить блоки" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "На весь экран" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "показать" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -584,362 +2135,786 @@ msgstr "объединяет дейтсвия в кнопки запуска н msgid "text" msgstr "текст" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "строковое значение" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "случайно" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "действие" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "логический оператор больше чем" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "вершина стека именованных действий" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "поворачивает черепашку по часовой стрелке (угол в градусах)" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "вызывает действие именнованного стека" +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "назад" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "сохранить в кармане 1" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "вычисляет квадратный корень" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"заблокировать текущую коорд. У черепахи (может использоваться в числовых " +"блоках)" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "Стоп" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "больше чем" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x текущ." + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Помощь" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "выберете черепашку" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "устанвливают цвет текста, рисуемого черепашкой" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "клавиатура" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "круг" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "радиус" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Полярные координаты" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "затенение" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "логической оператор И" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Запустить" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "показать голову" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "уровень ввода микрофона" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "Заголовок" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "восстанавливает все блоки из карзины" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Палитра возможных блоков" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "используется как числа ввода в математических операторах" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "представление 2x2" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "переменная 1 (числовое значение)" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "добавьте два альфа-числа" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "равно" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "иначе" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "не нравится" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "восстанавлиет скрытые блоки" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Черепашка не будет рисовать, двигаясь ." + +#. #-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "вытолкнуть" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "размер пера" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "передвигает черепаху по кругу" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "логический оператор равно" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Палитра цветов ручки" #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "сохраняет числовое значение в Переменной 1" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "сохранить в кармане 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "сохраняет числовое значение в Переменной 2" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "блок 1" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "перемещает черепашку назад" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "переменная 1 (числовое значение)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "коор. У на вершине экрана" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "блок 2" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "показать блоки" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "переменная 2 (числовое значение)" +#: pysamples/grecord.py:219 +#, fuzzy +msgid "save" +msgstr "Сохранить" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "записать в" +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "цвет" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "блок" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "устанавливает размер линии, рисуемой черепашкой" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "значение" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Открыть" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "моя коробка" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "ориентация" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "сохраняет числовое значение в именнованной переменной" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y текущ." -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "именная переменная (числовое значение)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "" +"программируемый блок: используется для добавления дополнительных " +"математических функций с множеством переменных, к пр., корень(х*х+у*у)" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "дейтсвие 1" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "если" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "вершина стека действия 1" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" +"перемещает черепашку к позиции коор Х, коор У; (0, 0) это центр экрана." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Стоп" #: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 msgid "action 2" msgstr "действие 2" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "вершина стека действия 2" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "дейтсвие 1" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Копировать" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Вставить" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "не выводит на" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "пустая голова" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "показывает значение FILO (first-in last-out heap)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Очистить" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Палитра примеров презентации" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "угол" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "аудио" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Инструменты" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "влево" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "комментарий" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "выделяет нижнее число ввода из верха нумерованного ввода" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"очередь для клавиатурного ввода (результаты сохраняются в блоке клавиатуры)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "Декартова" + +#: 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 "напряжение" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "очищает экран и возвращает черепашку" #: TurtleArt/tabasics.py:977 msgid "invokes Action 1 stack" msgstr "вызывает Действия 1 стека" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "вызывает Действия 2 стека" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Палитра комманд черепашки" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "вечный цикл" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "пустая корзина" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "показать угол" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "безвозвратно удаляет пункты в корзину" +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Черепашка" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "вернуть всё" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Проект" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "восстанавливает все блоки из карзины" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Попробовать" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "вертикальный пробел" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "меньше чем" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "квадратный корень" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Заголовок" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Перерисовать координаты" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "показать блоки" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Поле описания Sugar Journal" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "представление маркированным списком" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "места комментария в вашем коде" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "масштаб" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "низ" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "пурпурный" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Rescale координаты вниз" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "нажмите для открытия" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "микрофонный ввод комманд" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "журнал" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "пустая корзина" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Черепашка будет рисовать, двигаясь." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Аудио объект Sugar Journal" #: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 msgid "Stop turtle" msgstr "Остановить черепашку" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "показать блоки" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Черепашка" + +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "изменяет ориентаци палитры блоков" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "записать в" #: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 msgid "Hide blocks" msgstr "скрыть блоки" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "не выводит на" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "плюс" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Я не знаю как" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "или" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "не нравится" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "пример презентации: список ядра" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "как ввод" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "тождественный оператор используемый для расширения блоков" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "отображает следующую палитру" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Уменьшить блоки" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "изменяет ориентаци палитры блоков" +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "устанвливают размеры текста, рисуемого черепашкой" -#: TurtleArt/tautils.py:196 -msgid "Load..." +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" msgstr "" +"блокирует текущее значение головы черепашки (может использоваться в " +"нумерованных блоках)" -#: TurtleArt/tautils.py:206 -msgid "Save..." +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "картинка" + +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" +"возвращает случайные числа между минимумом (верхнее знач) и максимумов " +"(нижнее знач) числами" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "нажмите для открытия" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "" +"блокирует текущий цвет ручки (может использоваться на месте нумерованных " +"блоков)" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "ориентация" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "показать палитру" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "дальше" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "сохранить картинку в Sugar Journal" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" -msgstr "" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Сохранить снимок" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "старт" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "перемещает черепашку вперёд" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Черепашка" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "вперёд" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "картинка" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "моя коробка" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Сохранить как Логотип" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "назад" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "устанавливает масштаб медиа" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "блокирует текущее значение масштаба" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "представление 1x1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "представление 1x2" + +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "вершина стека именованных действий" + +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "сохраняет числовое значение в именнованной переменной" + +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "логический оператор ИЛИ" + +#: 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 +#, fuzzy +msgid "microphone input voltage" +msgstr "уровень ввода микрофона" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "цикл указанное число раз" + +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "вызывает Действия 2 стека" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "координаты" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "координата У" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "координата Х" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "заполнение" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Сохранить как" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "координаты" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "полярный" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "повтор" #: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 #: TurtleArtActivity.py:850 turtleblocks.py:358 msgid "Save as image" msgstr "Сохранить как изображение" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "снимок" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Редактировать" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Сохранить снимок" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "вершина стека действия 2" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "делит верхнее число (делитель) на нижнее (знаменатель)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "максимум" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "печатает значение в блоке статуса на вершине экрана" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "блокирует результаты блока очереди клавиатуры" + +#. #-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ru.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "затолкнуть" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +#, fuzzy +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" msgstr "" +"программируемый блок: используется для добавления дополнительных " +"математических выражений с множеством переменных, напр. син(х+у+z)" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "вернуть всё" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "показать палитру" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "скрыть палитру" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "вправо" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Rescale координаты вниз" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Rescale координаты вверх" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Редактировать" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Показать" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Проект" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" +#: TurtleArt/tabasics.py:417 +msgid "end fill" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Копировать" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Вставить" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "красный" -#: TurtleArtActivity.py:591 -#, fuzzy -msgid "Restore blocks from trash" -msgstr "восстанавливает все блоки из карзины" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "идентификатор" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "На весь экран" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "модуль" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Декартовы координаты" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Полярные координаты" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Метрические координаты" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Увеличить блоки" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Уменьшить блоки" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Загрузить образец" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Очистить" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Запустить" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Шаг" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Помощь" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Стоп" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "" + +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "" + +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "" #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" @@ -961,26 +2936,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -1052,11 +3007,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "цвет" - #: 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 @@ -1085,11 +3035,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "Заголовок" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1128,11 +3073,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "звук" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1143,29 +3083,6 @@ msgstr "" msgid "loudness" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "уровень ввода микрофона" - -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "нажатие" - -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "микрофонный ввод комманд" - -#: 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 "сопротивление" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1173,35 +3090,11 @@ msgstr "сопротивление" msgid "microphone input resistance" msgstr "" -#: 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 "напряжение" - -#: 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 -#, fuzzy -msgid "microphone input voltage" -msgstr "уровень ввода микрофона" - #: plugins/camera_sensor/camera_sensor.py:67 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1233,123 +3126,14 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "в то время, как" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"делать-пока-правда оператор, который используется логическими операторами из " -"числовой палитры" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "пока" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"делать-пока-правда оператор, используемый логическими операторами из " -"Нумерованной палитры" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "вершина" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "верх сворачиваемого стека" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "журнал" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "медиа объект Sugar Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "аудио" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Аудио объект Sugar Journal" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "Аудио объект Sugar Journal" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Поле описания Sugar Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "показать" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "рисует текста или показывает медиа из Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "показать угол" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "установить затенение" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "устанавливает масштаб медиа" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "сохранить картинку" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "имя картинки" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "сохранить картинку в Sugar Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "сохранить SVG" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "сохранить черепашью графику как SVG файл в Sugar Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "масштаб" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "блокирует текущее значение масштаба" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 msgid "media wait" msgstr "" @@ -1440,24 +3224,6 @@ msgstr "" msgid "returns mouse y coordinate" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "запрос клавиатура" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"очередь для клавиатурного ввода (результаты сохраняются в блоке клавиатуры)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "клавиатура" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "блокирует результаты блока очереди клавиатуры" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 msgid "read pixel" msgstr "" @@ -1474,80 +3240,15 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "палитра экстра-опций" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "затолкнуть" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "кладёт значения в FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "показать голову" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "показывает значения FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "пустая голова" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "пустые FILO (first-in-last-out heap)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "вытолкнуть" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "показывает значение FILO (first-in last-out heap)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "пустая голова" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "комментарий" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "места комментария в вашем коде" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "печать" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "печатает значение в блоке статуса на вершине экрана" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 msgid "Python chr operator" msgstr "" @@ -1556,75 +3257,12 @@ msgstr "" msgid "Python int operator" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -#, fuzzy -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"программируемый блок: используется для добавления дополнительных " -"математических выражений с одной переменной, к пр. син(х)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "" -"программируемый блок: используется для добавления дополнительных " -"математических функций с множеством переменных, к пр., корень(х*х+у*у)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -#, fuzzy -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"программируемый блок: используется для добавления дополнительных " -"математических выражений с множеством переменных, напр. син(х+у+z)" - #: 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:653 msgid "Python block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "запускает код поиска в модуле tamyblock.py из Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "Декартова" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "показывает Декартовы координаты" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "полярный" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "показывает полярные координаты" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "черепашка" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "выберете черепашку" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 msgid "turtle shell" @@ -1635,28 +3273,12 @@ msgstr "" msgid "put a custom 'shell' on the turtle" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "верх свёрнутого стека" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "загрузить мой проект" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "координаты" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1665,110 +3287,10 @@ msgstr "" msgid "selects a palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Палитра примеров презентации" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "скрыть блоки" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "очищает холст, скрывая блоки" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "показать блоки" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "восстанавлиет скрытые блоки" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "скрывает Sugar тулбар" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 msgid "list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "представление маркированным списком" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "пример презентации: список ядра" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "пример презентации: выбирете обект Journal (без описанием)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "пример презентации: выбирете обект Journal (с описанием)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "пример презентации: выбирете четыре обекта Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "пример презентации: выбирете два обекта Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "координата Х слева от экрана" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "низ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "У-координата наверху экрана" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "ширина" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "ширина полотна" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "коодината Х справа экрана" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "коор. У на вершине экрана" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "высота" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "высота холста" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "координата Х" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "координата У" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 msgid "left x" msgstr "" @@ -1781,28 +3303,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "низ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "представление 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "представление 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "представление 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "представление 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1830,19 +3330,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "Стоп" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "Сохранить" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1876,51 +3367,10 @@ msgstr "" msgid "New" msgstr "" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Открыть" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Сохранить" - -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Сохранить как" - #: turtleblocks.py:362 msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "Файл" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Перерисовать координаты" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Сбросить размер блоков" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Показать/скрыть блоки" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Инструменты" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Попробовать" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Черепашка" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1933,30 +3383,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "density" -#~ msgstr "идентификатор" - -#, fuzzy -#~ msgid "light" -#~ msgstr "вправо" - -#, fuzzy -#~ msgid "read" -#~ msgstr "красный" - -#, fuzzy -#~ msgid "sensor" -#~ msgstr "сенсоры" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "модуль" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Примеры" - #~ msgid "then else" #~ msgstr "тогда иначе" @@ -2013,7 +3439,8 @@ msgstr "" #~ msgid "restore last" #~ msgstr "повторить последнее" -#~ 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 "" #~ "программируемый блок: используется для добавления дополнительных " #~ "математических функций, к примеру, синус(х)" @@ -2076,8 +3503,8 @@ msgstr "" #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "" -#~ "блокирует текущий размер текста (может использовать вместе с нумерованными " -#~ "блоками)" +#~ "блокирует текущий размер текста (может использовать вместе с " +#~ "нумерованными блоками)" #~ msgid "d" #~ msgstr "d" diff --git a/po/rw.po b/po/rw.po index 9b3e2e9..2e64dfd 100644 --- a/po/rw.po +++ b/po/rw.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,52 +43,2640 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "LED" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +#, fuzzy +msgid "temperature" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"igipimo cyubushyuhe" + +#: taextras.py:82 taextras.py:291 +#, fuzzy +msgid "distance" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"intera" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +#, fuzzy +msgid "vibration" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"viburasiyo" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +#, fuzzy +msgid "FollowMe" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Nkurikira" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 +#, fuzzy +msgid "brightness" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"umucyo" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +#, fuzzy +msgid "x position" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"x umwanya" + +#: taextras.py:150 +#, fuzzy +msgid "return x position" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"garuka mumwanya wa x" + +#: taextras.py:151 +#, fuzzy +msgid "y position" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"umwanya wa y" + +#: taextras.py:152 +#, fuzzy +msgid "return y position" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"garuka mumwanya wa y" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +#, fuzzy +msgid "rotation Enemy" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"guhindukira kumwanzi" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +#, fuzzy +msgid "distance to center" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"intera ujya hagati" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +#, fuzzy +msgid "distance to Enemy" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"intera kumwanzi" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +#, fuzzy +msgid "update information" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"inkuru igezweho" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +#, fuzzy +msgid "start polygon" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"tangira ikinyampande" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +#, fuzzy +msgid "add point" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"ongeraho akadomo" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +#, fuzzy +msgid "end polygon" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"soza ikinyampande" + +#: taextras.py:231 +#, fuzzy +msgid "Define a new polygon." +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Sobanura ikinyampande gishyashya." + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +#, fuzzy +msgid "Define a new filled polygon." +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Sobanura ikinyampande gishyashya." + +#: taextras.py:235 +#, fuzzy +msgid "triangle" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"mpandeshatu" + +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:237 +#, fuzzy +msgid "base" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"ishingiro" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +#, fuzzy +msgid "height" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"ubuhagarike" + +#: taextras.py:239 +#, fuzzy +msgid "Add a triangle object to the project." +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ongeraho ikintu cyampande eshatu kuruyu mushinga." + +#: taextras.py:240 +#, fuzzy +msgid "circle" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"uruziga" + +#: taextras.py:241 +#, fuzzy +msgid "Add a circle object to the project." +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ongeraho ikintu cyuruziga kuruyu mushinga." + +#: taextras.py:242 +#, fuzzy +msgid "rectangle" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"urukiramende" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +#, fuzzy +msgid "width" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"ubugari" + +#: taextras.py:245 +#, fuzzy +msgid "Add a rectangle object to the project." +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ongeraho ikintu cyurukiramende kuruyu mushinga." + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +#, fuzzy +msgid "speed" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"umuvuduko" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +#, fuzzy +msgid "joint" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"huza" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +#, fuzzy +msgid "Add a gear object to the project." +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Ongeraho ikintu cyuruziga kuruyu mushinga." + +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "umwirondoro" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "ibara" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "iburyo" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +#, fuzzy +msgid "sound" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"ijwi" + +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "ikigina" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +#, fuzzy +msgid "NXT not found" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"NXT ntiya bonwe" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +#, fuzzy +msgid "time" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"igihe" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Umuhuza\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Umuhuza\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"umuhuza" + +#: taextras.py:345 +#, fuzzy +msgid "power" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"ingufu" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +#, fuzzy +msgid "PORT A" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"UMUHUZA A" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +#, fuzzy +msgid "PORT B" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"UMUHUZA B" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +#, fuzzy +msgid "PORT C" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"UMUHUZA C" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +#, fuzzy +msgid "PORT 1" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"UMUHUZA 1" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "umutuku" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +#, fuzzy +msgid "PORT 2" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"UMUHUZA 2" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +#, fuzzy +msgid "PORT 3" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"UMUHUZA 3" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +#, fuzzy +msgid "PORT 4" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"UMUHUZA 4" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. #-#-#-#-# rw.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) +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# rw.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:386 +#, fuzzy +msgid "set light" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"shyiramo urumuri" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "" +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +#, fuzzy +msgid "value" +msgstr "" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-#\n" +"agaciro" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "Umutwe w'amagambo" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "umuhondo" + +#: 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 +#, fuzzy +msgid "camera output" +msgstr "amashusho yakamera" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "ikarito ya 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "ikarito ya 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Intambwe" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +#, fuzzy +msgid "Hide palette" +msgstr "Guhisha palette" + +#: gnome_plugins/collaboration_plugin.py:125 +#, fuzzy +msgid "Buddies" +msgstr "Inshuti" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "ubururu bukeye" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +#, fuzzy +msgid "Load example" +msgstr "Shakisha urugero" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +#, fuzzy +msgid "list" +msgstr "irondora" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +#, fuzzy +msgid "heading" +msgstr "umutwempangano" + +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +#, fuzzy +msgid "video" +msgstr "iyerekanamashusho" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "ubururu" + +#: turtleblocks.py:240 +#, fuzzy +msgid "No option action:" +msgstr "Ntaguhitamo igikorwa:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "buto y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "bika SVG" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "ikaramu hasi" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "tegereza" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "ikarito" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +#, fuzzy +msgid "action" +msgstr "igikorwa" + +#: TurtleArt/tabasics.py:601 +#, fuzzy +msgid "divide" +msgstr "gabanya" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +#, fuzzy +msgid "picture name" +msgstr "izina ry'ifoto" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#, fuzzy +msgid "while" +msgstr "umweru" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "inyandiko" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "tunganya ingano y'ikaramu" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +#, fuzzy +msgid "until" +msgstr "kugeza" + +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +#, fuzzy +msgid "sinewave" +msgstr "kanda ibuto" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +#, fuzzy +msgid "left x" +msgstr "ibumoso x" + +#: TurtleArt/tabasics.py:213 +#, fuzzy +msgid "set heading" +msgstr "shyiraho umtwe" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +#, fuzzy +msgid "description" +msgstr "kwimenyekanisha" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "tunganya ingano y'ikaramu" + +#: gnome_plugins/uploader_plugin.py:99 +#, fuzzy +msgid "Username:" +msgstr "izina ry'ukoresha:" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Kureba" + +#: gnome_plugins/uploader_plugin.py:109 +#, fuzzy +msgid "Password:" +msgstr "Ijambobanga:" + +#: TurtleArt/tabasics.py:826 +#, fuzzy +msgid "stop action" +msgstr "igikorwa cyo guhagarika" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "icyatsi" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +#, fuzzy +msgid "shade" +msgstr "ubwijime" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +#, fuzzy +msgid "save picture" +msgstr "bika ifoto" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "ikaramu hejuru" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "oranje" + +#: TurtleArt/tabasics.py:1009 +#, fuzzy +msgid "clear all" +msgstr "hanagura byose" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "hanyuma" + +#: gnome_plugins/collaboration_plugin.py:302 +#, fuzzy +msgid "Register" +msgstr "Kwiyandikisha" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "si" + +#: TurtleArt/tabasics.py:829 +#, fuzzy +msgid "stops current action" +msgstr "guhagaka ibikorwa bya banjye" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "akanyamashyo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +#, fuzzy +msgid "hide blocks" +msgstr "Hisha amablock" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Bika" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "bika mu ikarito ya 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "bika mu ikarito ya 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +#, fuzzy +msgid "print" +msgstr "gucapa" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Bika nka Logo" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "tunganya ibara ry'inyandiko" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +#, fuzzy +msgid "loudness" +msgstr "imisakurize" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "umubare" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "hejuru" + +#: gnome_plugins/collaboration_plugin.py:292 +#, fuzzy +msgid "Nickname" +msgstr "Azina kaka byiniriro" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "shyiramo igipimo" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "umweru" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Reka" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "icyerekezo" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "na" + +#: TurtleArt/talogo.py:624 +#, fuzzy +msgid "as input" +msgstr "nk'inyinjiza" + +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +#, fuzzy +msgid "acceleration" +msgstr "ukwiyongera" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "tunganya ibara" + +#: TurtleArt/tabasics.py:646 +#, fuzzy +msgid "min" +msgstr "min" + +#: turtleblocks.py:363 +#, fuzzy +msgid "File" +msgstr "File" + +#: TurtleArt/tabasics.py:589 +#, fuzzy +msgid "multiply" +msgstr "gukuba" + +#: TurtleArt/tabasics.py:754 +#, fuzzy +msgid "forever" +msgstr "igihe cyose" + +#: TurtleArt/tabasics.py:151 +#, fuzzy +msgid "clean" +msgstr "gusukura" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "Erekana amablock" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Ekara nini" + +#: turtleblocks.py:255 +#, fuzzy +msgid "File not found" +msgstr "File ntiboneka" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "erekana" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +#, fuzzy +msgid "text" +msgstr "inyandiko" + +#: TurtleArt/tabasics.py:646 +#, fuzzy +msgid "random" +msgstr "binyuranye" + +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "umukara" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +#, fuzzy +msgid "mouse x" +msgstr "akanyerezo x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +#, fuzzy +msgid "mouse y" +msgstr "akanyerezo y" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "hejuru" + +#: TurtleArt/tabasics.py:671 +#, fuzzy +msgid "greater than" +msgstr "byiza kurenza" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +#, fuzzy +msgid "xcor" +msgstr "ikirangahuriro X" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Gufasha" + +#: turtleblocks.py:448 +#, fuzzy +msgid "Save project?" +msgstr "Bika umushinga?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +#, fuzzy +msgid "right x" +msgstr "iburyo x" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +#, fuzzy +msgid "keyboard" +msgstr "mwandikisho" + +#: TurtleArt/tabasics.py:186 +#, fuzzy +msgid "arc" +msgstr "agaheto" + +#: TurtleArt/tabasics.py:186 +#, fuzzy +msgid "radius" +msgstr "akarambararo" + +#: TurtleArt/tabasics.py:325 +#, fuzzy +msgid "set shade" +msgstr "shyiramo igipimo" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Iruka" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "Umutwe:" + +#: 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 +#, fuzzy +msgid "Upload" +msgstr "Irigushakisha" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Seriveri" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "icyerekezo" + +#: gnome_plugins/collaboration_plugin.py:132 +#, fuzzy +msgid "Neighborhood" +msgstr "Abaturanyi" + +#: TurtleArt/tabasics.py:695 +#, fuzzy +msgid "equal" +msgstr "bingana" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "ingano y'ikaramu" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +#, fuzzy +msgid "speak" +msgstr "vuga" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +#, fuzzy +msgid "button down" +msgstr "kanda ibuto" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Erekana amablock" + +#: pysamples/grecord.py:217 +#, fuzzy +msgid "play" +msgstr "kina" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "bika" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "Ibara" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Fungura" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "icyerekezo" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +#, fuzzy +msgid "ycor" +msgstr "ikirangahuriro Y" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "niba" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Hagarika" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#, fuzzy +msgid "action 2" +msgstr "igkorwa 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +#, fuzzy +msgid "action 1" +msgstr "igikorwa 1" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "soza kuzuza" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Koporora" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +#, fuzzy +msgid "Paste" +msgstr "Komeka" + +#: gnome_plugins/collaboration_plugin.py:120 +#, fuzzy +msgid "Activities" +msgstr "Ibikorwa" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Sukura" + +#: TurtleArt/tabasics.py:186 +#, fuzzy +msgid "angle" +msgstr "imfuruka" + +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +#, fuzzy +msgid "Save/Load" +msgstr "Bika/Shakisha" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +#, fuzzy +msgid "top y" +msgstr "hejuru y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +#, fuzzy +msgid "audio" +msgstr "isohoramajwi" + +#: turtleblocks.py:396 +#, fuzzy +msgid "Tools" +msgstr "Ibikoresho" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "ibumoso" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +#, fuzzy +msgid "comment" +msgstr "ibivugwaho" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Ubugeni bw'Akanyamashyo" + +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +#, fuzzy +msgid "Load project" +msgstr "Shakisha umushinga" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +#, fuzzy +msgid "Project" +msgstr "Umushinga" + +#: gnome_plugins/collaboration_plugin.py:300 +#, fuzzy +msgid "Password" +msgstr "Ijambobanga" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Gusangira" + +#: TurtleArt/tabasics.py:683 +#, fuzzy +msgid "less than" +msgstr "gake ho" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "erekana amablock" + +#: turtleblocks.py:362 +#, fuzzy +msgid "Quit" +msgstr "Kuvamo" + +#: TurtleArt/tabasics.py:337 +#, fuzzy +msgid "set gray" +msgstr "shyiramo ikigina" + +#: turtleblocks.py:354 +#, fuzzy +msgid "New" +msgstr "Nshyashya" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +#, fuzzy +msgid "scale" +msgstr "igipimo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +#, fuzzy +msgid "bottom" +msgstr "buto" + +#: TurtleArt/tabasics.py:451 +#, fuzzy +msgid "purple" +msgstr "kimurika" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +#, fuzzy +msgid "click to open" +msgstr "kanda kugirango ufungure" + +#: gnome_plugins/collaboration_plugin.py:129 +#, fuzzy +msgid "Configuration" +msgstr "Iboneza" + +#: gnome_plugins/uploader_plugin.py:130 +#, fuzzy +msgid "Description:" +msgstr "kwimenyekanisha" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +#, fuzzy +msgid "journal" +msgstr "ikinyamakuru" + +#: TurtleArt/tautils.py:196 +#, fuzzy +msgid "Load..." +msgstr "Shakisha..." + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Hagarika akanyamashyo" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Akanyamashyo" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +#, fuzzy +msgid "store in" +msgstr "bika mu" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +#, fuzzy +msgid "Hide blocks" +msgstr "Hisha amablock" + +#: TurtleArt/tabasics.py:563 +#, fuzzy +msgid "plus" +msgstr "ibindi" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "cyangwa" + +#: TurtleArt/tawindow.py:3977 +#, fuzzy +msgid "image" +msgstr "ishusho" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "tangira" + #: TurtleArt/tabasics.py:128 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 msgid "forward" msgstr "oherereza" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +#, fuzzy +msgid "my box" +msgstr "agsanduku kanjye" #: TurtleArt/tabasics.py:139 msgid "back" msgstr "inyuma" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#, fuzzy +msgid "sets the scale of media" +msgstr "shyiramo igipimo cya media" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "icyerekezo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "icyerekezo" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Bika..." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +#, fuzzy +msgid "title y" +msgstr "umutwe y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +#, fuzzy +msgid "title x" +msgstr "umutwe x" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#, fuzzy +msgid "fill screen" +msgstr "ekara nini" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Bika nka" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "subiramo" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Bika nka ishusho" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Hindura" + +#: TurtleArt/tabasics.py:646 +#, fuzzy +msgid "max" +msgstr "max" + +#: TurtleArt/tabasics.py:408 +#, fuzzy +msgid "start fill" +msgstr "tangira wuzuze" + +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# rw.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +#, fuzzy +msgid "push" +msgstr "sunika" + +#: TurtleArt/tabasics.py:1004 +#, fuzzy +msgid "restore all" +msgstr "bika byose" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +#, fuzzy +msgid "hello" +msgstr "allo" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "" + #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -#, fuzzy -msgid "clean" -msgstr "gusukura" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "ibumoso" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -77,21 +2690,6 @@ msgstr "iburyo" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -#, fuzzy -msgid "arc" -msgstr "agaheto" - -#: TurtleArt/tabasics.py:186 -#, fuzzy -msgid "angle" -msgstr "imfuruka" - -#: TurtleArt/tabasics.py:186 -#, fuzzy -msgid "radius" -msgstr "akarambararo" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" @@ -100,58 +2698,27 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -#: TurtleArt/tabasics.py:213 -#, fuzzy -msgid "set heading" -msgstr "shyiraho umtwe" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -#, fuzzy -msgid "xcor" -msgstr "ikirangahuriro X" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -#, fuzzy -msgid "ycor" -msgstr "ikirangahuriro Y" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -#, fuzzy -msgid "heading" -msgstr "umutwempangano" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -162,25 +2729,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#, fuzzy -msgid "fill screen" -msgstr "ekara nini" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "ibara" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -#, fuzzy -msgid "shade" -msgstr "ubwijime" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -192,28 +2740,14 @@ msgstr "" msgid "gray" msgstr "ikigina" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "tunganya ibara" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -#, fuzzy -msgid "set shade" -msgstr "shyiramo igipimo" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:337 -#, fuzzy -msgid "set gray" -msgstr "shyiramo ikigina" - #: TurtleArt/tabasics.py:340 msgid "sets gray level of the line drawn by the turtle" msgstr "" @@ -230,51 +2764,26 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "ikaramu hejuru" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "ikaramu hasi" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "tunganya ingano y'ikaramu" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:408 -#, fuzzy -msgid "start fill" -msgstr "tangira wuzuze" - #: TurtleArt/tabasics.py:410 msgid "starts filled polygon (used with end fill block)" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "soza kuzuza" - #: TurtleArt/tabasics.py:419 msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "ingano y'ikaramu" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -287,52 +2796,10 @@ msgstr "" msgid "red" msgstr "umutuku" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "oranje" - -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "umuhondo" - -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "icyatsi" - -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "ubururu bukeye" - -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "ubururu" - -#: TurtleArt/tabasics.py:451 -#, fuzzy -msgid "purple" -msgstr "kimurika" - -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "umweru" - -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "umukara" - -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "tunganya ibara ry'inyandiko" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "tunganya ingano y'ikaramu" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -341,11 +2808,6 @@ msgstr "" msgid "Palette of numeric operators" msgstr "" -#: TurtleArt/tabasics.py:563 -#, fuzzy -msgid "plus" -msgstr "ibindi" - #: TurtleArt/tabasics.py:567 msgid "adds two alphanumeric inputs" msgstr "" @@ -358,20 +2820,10 @@ msgstr "" msgid "subtracts bottom numeric input from top numeric input" msgstr "" -#: TurtleArt/tabasics.py:589 -#, fuzzy -msgid "multiply" -msgstr "gukuba" - #: TurtleArt/tabasics.py:592 msgid "multiplies two numeric inputs" msgstr "" -#: TurtleArt/tabasics.py:601 -#, fuzzy -msgid "divide" -msgstr "gabanya" - #: TurtleArt/tabasics.py:604 msgid "" "divides top numeric input (numerator) by bottom numeric input (denominator)" @@ -406,80 +2858,34 @@ msgstr "" msgid "calculates square root" msgstr "" -#: TurtleArt/tabasics.py:646 -#, fuzzy -msgid "random" -msgstr "binyuranye" - -#: TurtleArt/tabasics.py:646 -#, fuzzy -msgid "min" -msgstr "min" - -#: TurtleArt/tabasics.py:646 -#, fuzzy -msgid "max" -msgstr "max" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "umubare" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" -#: TurtleArt/tabasics.py:671 -#, fuzzy -msgid "greater than" -msgstr "byiza kurenza" - #: TurtleArt/tabasics.py:674 msgid "logical greater-than operator" msgstr "" -#: TurtleArt/tabasics.py:683 -#, fuzzy -msgid "less than" -msgstr "gake ho" - #: TurtleArt/tabasics.py:687 msgid "logical less-than operator" msgstr "" -#: TurtleArt/tabasics.py:695 -#, fuzzy -msgid "equal" -msgstr "bingana" - #: TurtleArt/tabasics.py:699 msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "si" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "na" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "cyangwa" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -489,39 +2895,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "tegereza" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -#, fuzzy -msgid "forever" -msgstr "igihe cyose" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "subiramo" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "niba" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "hanyuma" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -558,54 +2943,19 @@ msgstr "" msgid "jogs stack down" msgstr "" -#: TurtleArt/tabasics.py:826 -#, fuzzy -msgid "stop action" -msgstr "igikorwa cyo guhagarika" - -#: TurtleArt/tabasics.py:829 -#, fuzzy -msgid "stops current action" -msgstr "guhagaka ibikorwa bya banjye" - #: TurtleArt/tabasics.py:838 msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "tangira" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -#, fuzzy -msgid "text" -msgstr "inyandiko" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -#, fuzzy -msgid "action" -msgstr "igikorwa" - #: TurtleArt/tabasics.py:865 msgid "top of nameable action stack" msgstr "" @@ -614,60 +2964,22 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "bika mu ikarito ya 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "bika mu ikarito ya 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "ikarito ya 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "ikarito ya 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -#, fuzzy -msgid "store in" -msgstr "bika mu" - -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "ikarito" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -#, fuzzy -msgid "value" -msgstr "agaciro" - -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -#, fuzzy -msgid "my box" -msgstr "agsanduku kanjye" - #: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 msgid "stores numeric value in named variable" msgstr "" @@ -676,20 +2988,10 @@ msgstr "" msgid "named variable (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -#, fuzzy -msgid "action 1" -msgstr "igikorwa 1" - #: TurtleArt/tabasics.py:958 msgid "top of Action 1 stack" msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -#, fuzzy -msgid "action 2" -msgstr "igkorwa 2" - #: TurtleArt/tabasics.py:967 msgid "top of Action 2 stack" msgstr "" @@ -714,20 +3016,10 @@ msgstr "" msgid "permanently deletes items in trash" msgstr "" -#: TurtleArt/tabasics.py:1004 -#, fuzzy -msgid "restore all" -msgstr "bika byose" - #: TurtleArt/tabasics.py:1005 msgid "restore all blocks from trash" msgstr "" -#: TurtleArt/tabasics.py:1009 -#, fuzzy -msgid "clear all" -msgstr "hanagura byose" - #: TurtleArt/tabasics.py:1010 msgid "move all blocks to trash" msgstr "" @@ -737,34 +3029,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "Umutwe w'amagambo" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Hagarika akanyamashyo" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Erekana amablock" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -#, fuzzy -msgid "Hide blocks" -msgstr "Hisha amablock" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -777,11 +3041,6 @@ msgstr "" msgid "doesn't like" msgstr "" -#: TurtleArt/talogo.py:624 -#, fuzzy -msgid "as input" -msgstr "nk'inyinjiza" - #: TurtleArt/tapalette.py:97 msgid "displays next palette" msgstr "" @@ -790,30 +3049,6 @@ msgstr "" msgid "changes the orientation of the palette of blocks" msgstr "" -#: TurtleArt/tautils.py:196 -#, fuzzy -msgid "Load..." -msgstr "Shakisha..." - -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Bika..." - -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -#, fuzzy -msgid "click to open" -msgstr "kanda kugirango ufungure" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "icyerekezo" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "inyandiko" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -829,25 +3064,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Ubugeni bw'Akanyamashyo" - -#: TurtleArt/tawindow.py:3977 -#, fuzzy -msgid "image" -msgstr "ishusho" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Bika nka Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Bika nka ishusho" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" @@ -870,11 +3086,6 @@ msgstr "" msgid "Show palette" msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -#, fuzzy -msgid "Hide palette" -msgstr "Guhisha palette" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -883,45 +3094,10 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Hindura" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Kureba" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -#, fuzzy -msgid "Project" -msgstr "Umushinga" - -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -#, fuzzy -msgid "Save/Load" -msgstr "Bika/Shakisha" - -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Koporora" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -#, fuzzy -msgid "Paste" -msgstr "Komeka" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Ekara nini" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -934,46 +3110,10 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "Erekana amablock" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -#, fuzzy -msgid "Load example" -msgstr "Shakisha urugero" - -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Sukura" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Iruka" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Intambwe" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Gufasha" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Hagarika" - -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -#, fuzzy -msgid "Load project" -msgstr "Shakisha umushinga" - #: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 msgid "Load plugin" msgstr "" @@ -990,26 +3130,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -1037,70 +3157,15 @@ msgstr "" msgid "Enable collaboration" msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -#, fuzzy -msgid "Activities" -msgstr "Ibikorwa" - -#: gnome_plugins/collaboration_plugin.py:125 -#, fuzzy -msgid "Buddies" -msgstr "Inshuti" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Gusangira" - -#: gnome_plugins/collaboration_plugin.py:129 -#, fuzzy -msgid "Configuration" -msgstr "Iboneza" - -#: gnome_plugins/collaboration_plugin.py:132 -#, fuzzy -msgid "Neighborhood" -msgstr "Abaturanyi" - -#: gnome_plugins/collaboration_plugin.py:292 -#, fuzzy -msgid "Nickname" -msgstr "Azina kaka byiniriro" - #: gnome_plugins/collaboration_plugin.py:294 msgid "Account ID" msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Seriveri" - #: gnome_plugins/collaboration_plugin.py:298 #, fuzzy msgid "Port" msgstr "Umuhuza" -#: gnome_plugins/collaboration_plugin.py:300 -#, fuzzy -msgid "Password" -msgstr "Ijambobanga" - -#: gnome_plugins/collaboration_plugin.py:302 -#, fuzzy -msgid "Register" -msgstr "Kwiyandikisha" - -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "Ibara" - -#: 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 -#, fuzzy -msgid "Upload" -msgstr "Irigushakisha" - #: gnome_plugins/fb_plugin.py:87 msgid "Facebook wall post" msgstr "" @@ -1115,34 +3180,10 @@ msgid "" "your project." msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -#, fuzzy -msgid "Username:" -msgstr "izina ry'ukoresha:" - -#: gnome_plugins/uploader_plugin.py:109 -#, fuzzy -msgid "Password:" -msgstr "Ijambobanga:" - -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "Umutwe:" - -#: gnome_plugins/uploader_plugin.py:130 -#, fuzzy -msgid "Description:" -msgstr "kwimenyekanisha" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Reka" - #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "" @@ -1159,34 +3200,16 @@ msgstr "" msgid "Palette of sensor blocks" msgstr "" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -#, fuzzy -msgid "acceleration" -msgstr "ukwiyongera" - #: plugins/accelerometer/accelerometer.py:58 #: plugins/accelerometer/accelerometer.py:65 msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -#, fuzzy -msgid "sound" -msgstr "ijwi" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -#, fuzzy -msgid "loudness" -msgstr "imisakurize" - #: plugins/audio_sensors/audio_sensors.py:91 #: plugins/audio_sensors/audio_sensors.py:106 msgid "microphone input volume" @@ -1203,13 +3226,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1236,16 +3252,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 -#, fuzzy -msgid "brightness" -msgstr "umucyo" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1256,99 +3262,43 @@ msgstr "" msgid "Average RGB color from camera is pushed to the stack" msgstr "" -#: 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 -#, fuzzy -msgid "camera output" -msgstr "amashusho yakamera" - #: plugins/light_sensor/light_sensor.py:58 #: plugins/light_sensor/light_sensor.py:65 msgid "light level detected by light sensor" msgstr "" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - #: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#, fuzzy -msgid "while" -msgstr "umweru" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -#, fuzzy -msgid "until" -msgstr "kugeza" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "hejuru" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -#, fuzzy -msgid "journal" -msgstr "ikinyamakuru" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -#, fuzzy -msgid "audio" -msgstr "isohoramajwi" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -#, fuzzy -msgid "video" -msgstr "iyerekanamashusho" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -#, fuzzy -msgid "description" -msgstr "kwimenyekanisha" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 msgid "Sugar Journal description field" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "erekana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 @@ -1359,44 +3309,14 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "shyiramo igipimo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -#, fuzzy -msgid "sets the scale of media" -msgstr "shyiramo igipimo cya media" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -#, fuzzy -msgid "save picture" -msgstr "bika ifoto" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -#, fuzzy -msgid "picture name" -msgstr "izina ry'ifoto" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "saves a picture to the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "bika SVG" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -#, fuzzy -msgid "scale" -msgstr "igipimo" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1433,26 +3353,10 @@ msgstr "" msgid "resume playing video or audio" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -#, fuzzy -msgid "speak" -msgstr "vuga" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -#, fuzzy -msgid "hello" -msgstr "allo" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 msgid "speaks text" msgstr "" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -#, fuzzy -msgid "sinewave" -msgstr "kanda ibuto" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 msgid "amplitude" msgstr "" @@ -1465,12 +3369,6 @@ msgstr "" msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -#, fuzzy -msgid "button down" -msgstr "kanda ibuto" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 msgid "returns 1 if mouse button is pressed" msgstr "" @@ -1479,20 +3377,10 @@ msgstr "" msgid "returns True if mouse button is pressed" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -#, fuzzy -msgid "mouse x" -msgstr "akanyerezo x" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 msgid "returns mouse x coordinate" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -#, fuzzy -msgid "mouse y" -msgstr "akanyerezo y" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 msgid "returns mouse y coordinate" msgstr "" @@ -1505,11 +3393,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -#, fuzzy -msgid "keyboard" -msgstr "mwandikisho" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1530,11 +3413,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -#, fuzzy -msgid "time" -msgstr "igihe" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1543,12 +3421,6 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -#, fuzzy -msgid "push" -msgstr "sunika" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" @@ -1588,21 +3460,10 @@ msgstr "" msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -#, fuzzy -msgid "comment" -msgstr "ibivugwaho" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -#, fuzzy -msgid "print" -msgstr "gucapa" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1667,11 +3528,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "akanyamashyo" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1718,19 +3574,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -#, fuzzy -msgid "hide blocks" -msgstr "Hisha amablock" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "erekana amablock" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1739,11 +3586,6 @@ msgstr "" msgid "hides the Sugar toolbars" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -#, fuzzy -msgid "list" -msgstr "irondora" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" @@ -1780,20 +3622,10 @@ msgstr "" msgid "xcor of left of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -#, fuzzy -msgid "bottom" -msgstr "buto" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -#, fuzzy -msgid "width" -msgstr "ubugari" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1806,66 +3638,10 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -#, fuzzy -msgid "height" -msgstr "ubuhagarike" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -#, fuzzy -msgid "title x" -msgstr "umutwe x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -#, fuzzy -msgid "title y" -msgstr "umutwe y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -#, fuzzy -msgid "left x" -msgstr "ibumoso x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -#, fuzzy -msgid "top y" -msgstr "hejuru y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -#, fuzzy -msgid "right x" -msgstr "iburyo x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "buto y" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "icyerekezo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "icyerekezo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "icyerekezo" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "icyerekezo" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1893,20 +3669,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "hejuru" - -#: pysamples/grecord.py:217 -#, fuzzy -msgid "play" -msgstr "kina" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "bika" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1923,49 +3685,11 @@ msgstr "" msgid "usage is" msgstr "" -#: turtleblocks.py:240 -#, fuzzy -msgid "No option action:" -msgstr "Ntaguhitamo igikorwa:" - -#: turtleblocks.py:255 -#, fuzzy -msgid "File not found" -msgstr "File ntiboneka" - #: turtleblocks.py:279 #, python-format msgid "Configuration directory not writable: %s" msgstr "" -#: turtleblocks.py:354 -#, fuzzy -msgid "New" -msgstr "Nshyashya" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Fungura" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Bika" - -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Bika nka" - -#: turtleblocks.py:362 -#, fuzzy -msgid "Quit" -msgstr "Kuvamo" - -#: turtleblocks.py:363 -#, fuzzy -msgid "File" -msgstr "File" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" @@ -1978,19 +3702,10 @@ msgstr "" msgid "Show/hide blocks" msgstr "" -#: turtleblocks.py:396 -#, fuzzy -msgid "Tools" -msgstr "Ibikoresho" - #: turtleblocks.py:402 msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Akanyamashyo" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1999,182 +3714,6 @@ msgstr "" msgid "You have unsaved work. Would you like to save before quitting?" msgstr "" -#: turtleblocks.py:448 -#, fuzzy -msgid "Save project?" -msgstr "Bika umushinga?" - -#~ msgid "LED" -#~ msgstr "LED" - -#, fuzzy -#~ msgid "temperature" -#~ msgstr "igipimo cyubushyuhe" - -#, fuzzy -#~ msgid "distance" -#~ msgstr "intera" - -#, fuzzy -#~ msgid "vibration" -#~ msgstr "viburasiyo" - -#, fuzzy -#~ msgid "FollowMe" -#~ msgstr "Nkurikira" - -#, fuzzy -#~ msgid "x position" -#~ msgstr "x umwanya" - -#, fuzzy -#~ msgid "return x position" -#~ msgstr "garuka mumwanya wa x" - -#, fuzzy -#~ msgid "y position" -#~ msgstr "umwanya wa y" - -#, fuzzy -#~ msgid "return y position" -#~ msgstr "garuka mumwanya wa y" - -#, fuzzy -#~ msgid "rotation Enemy" -#~ msgstr "guhindukira kumwanzi" - -#, fuzzy -#~ msgid "distance to center" -#~ msgstr "intera ujya hagati" - -#, fuzzy -#~ msgid "distance to Enemy" -#~ msgstr "intera kumwanzi" - -#, fuzzy -#~ msgid "update information" -#~ msgstr "inkuru igezweho" - -#, fuzzy -#~ msgid "start polygon" -#~ msgstr "tangira ikinyampande" - -#, fuzzy -#~ msgid "add point" -#~ msgstr "ongeraho akadomo" - -#, fuzzy -#~ msgid "end polygon" -#~ msgstr "soza ikinyampande" - -#, fuzzy -#~ msgid "Define a new polygon." -#~ msgstr "Sobanura ikinyampande gishyashya." - -#, fuzzy -#~ msgid "Define a new filled polygon." -#~ msgstr "Sobanura ikinyampande gishyashya." - -#, fuzzy -#~ msgid "triangle" -#~ msgstr "mpandeshatu" - -#, fuzzy -#~ msgid "base" -#~ msgstr "ishingiro" - -#, fuzzy -#~ msgid "Add a triangle object to the project." -#~ msgstr "Ongeraho ikintu cyampande eshatu kuruyu mushinga." - -#, fuzzy -#~ msgid "circle" -#~ msgstr "uruziga" - -#, fuzzy -#~ msgid "Add a circle object to the project." -#~ msgstr "Ongeraho ikintu cyuruziga kuruyu mushinga." - -#, fuzzy -#~ msgid "rectangle" -#~ msgstr "urukiramende" - -#, fuzzy -#~ msgid "Add a rectangle object to the project." -#~ msgstr "Ongeraho ikintu cyurukiramende kuruyu mushinga." - -#, fuzzy -#~ msgid "speed" -#~ msgstr "umuvuduko" - -#, fuzzy -#~ msgid "joint" -#~ msgstr "huza" - -#, fuzzy -#~ msgid "Add a gear object to the project." -#~ msgstr "Ongeraho ikintu cyuruziga kuruyu mushinga." - -#, fuzzy -#~ msgid "density" -#~ msgstr "umwirondoro" - -#, fuzzy -#~ msgid "light" -#~ msgstr "iburyo" - -#, fuzzy -#~ msgid "grey" -#~ msgstr "ikigina" - -#, fuzzy -#~ msgid "NXT not found" -#~ msgstr "NXT ntiya bonwe" - -#, fuzzy -#~ msgid "port" -#~ msgstr "umuhuza" - -#, fuzzy -#~ msgid "power" -#~ msgstr "ingufu" - -#, fuzzy -#~ msgid "PORT A" -#~ msgstr "UMUHUZA A" - -#, fuzzy -#~ msgid "PORT B" -#~ msgstr "UMUHUZA B" - -#, fuzzy -#~ msgid "PORT C" -#~ msgstr "UMUHUZA C" - -#, fuzzy -#~ msgid "PORT 1" -#~ msgstr "UMUHUZA 1" - -#, fuzzy -#~ msgid "read" -#~ msgstr "umutuku" - -#, fuzzy -#~ msgid "PORT 2" -#~ msgstr "UMUHUZA 2" - -#, fuzzy -#~ msgid "PORT 3" -#~ msgstr "UMUHUZA 3" - -#, fuzzy -#~ msgid "PORT 4" -#~ msgstr "UMUHUZA 4" - -#, fuzzy -#~ msgid "set light" -#~ msgstr "shyiramo urumuri" - #, fuzzy #~ msgid "NXT found" #~ msgstr "NXT yabonetse" diff --git a/po/sd.po b/po/sd.po index dac85d3..2fe78e1 100644 --- a/po/sd.po +++ b/po/sd.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# sd.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sd.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sd.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sd.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/si.po b/po/si.po index 5a771fc..33295c9 100644 --- a/po/si.po +++ b/po/si.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,549 +43,2027 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "අභියෝගයක් තෝරන්න" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "මෙක්සිකානු පෙසෝ ඵලකය" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "කොලොම්බියානු පෙසෝ ඵලකය" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "රුවන්ඩා ෆ්‍රෑන්ක් ඵලකය" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +#, fuzzy +msgid "adjust LED intensity between 0 and 255" +msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"LED තීව්රතාව 0 සහ 255 අතර සීරු මාරු කරන්න." + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +#, fuzzy +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"බොත්තම තද කල විට 1 සහ අනෙක් විට 0 ලබා දෙයි." + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +#, fuzzy msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"සංවේදකය ඉදිරිපස ඇති වස්තුවේ සිට දුර 0 සහ 255 අතර අංකයක් ලෙස ලබා දෙයි." -#: TurtleArt/tabasics.py:123 +#: taextras.py:73 #, fuzzy -msgid "Palette of turtle commands" -msgstr "පෑන් විධාන ඵලකය" +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"සංවේදකයේ ආනතිය මත 0 හෝ 1 ලබා දෙයි." -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "ඉදිරියට" +#: taextras.py:74 +#, fuzzy +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"සංවේදකය චුම්භක ක්‍ෂේත්‍රයක් සංවේදනය කල විට 1 සහ අනෙක් විට 0 ලබා දෙයි." -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "කැස්බෑවා ඉදිරියට ගමන් කරවයි" +#: taextras.py:75 +#, fuzzy +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 සිට 1ට මාරු වෙයි, සංඛ්‍යාතය කම්පනය මත රදා පවතී." -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "පසුපසට" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "කැස්බෑවා පසුපසට ගමන් කරවයි" +#: taextras.py:77 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "මකන්න" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" +#: taextras.py:79 +msgid "grayscale" +msgstr "කළු සුදු පරාසය" + +#: taextras.py:80 +msgid "ambient light" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "වම" +#: taextras.py:81 +msgid "temperature" +msgstr "උෂ්ණත්වය" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "දුර" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "දකුණ" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "චුම්භක ප්‍රේරණය" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" +#: taextras.py:85 +msgid "vibration" +msgstr "කම්පනය" + +#: taextras.py:86 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 "ප්‍රතිරෝධය" + +#: taextras.py:87 +msgid "Butia Robot" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "ඇලය" +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "අරය" +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy සකසන්න" +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +#, fuzzy +msgid "Error on initialization of the camera" +msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"කැමරාව ආරම්භ කිරීමේදී දෝෂය." + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "මාව අනුගමනය කරන්න" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "දීප්තිය" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "x පිහිටීම" + +#: taextras.py:150 +msgid "return x position" +msgstr "x පිහිටීම ලබා දෙන්න" + +#: taextras.py:151 +msgid "y position" +msgstr "y පිහිටීම" + +#: taextras.py:152 +msgid "return y position" +msgstr "y පිහිටීම ලබා දෙන්න" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "උස" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "පළල" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "අනන්‍යතාව" + +#: taextras.py:267 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:270 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "ශීර්ෂකය" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:274 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "පෑන් විධාන ඵලකය" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "පුර්ණතිරය" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "වර්ණ" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "අඳුරු කරන්න" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "දකුණ" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "හඬ" + +#: taextras.py:320 +msgid "grey" msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "වර්ණය සකසන්න" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "කැස්බෑවා විසින් අදින රේඛාවේ වර්ණය පිහිටුවයි" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "අඳුරුකිරීම් සකසන්න" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:329 -#, fuzzy -msgid "sets shade of the line drawn by the turtle" -msgstr "කැස්බෑවා විසින් අදින රේඛාවේ ප්‍රමාණය පිහිටුවයි" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" msgstr "" -#: TurtleArt/tabasics.py:340 +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "කාලය" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 #, fuzzy -msgid "sets gray level of the line drawn by the turtle" -msgstr "කැස්බෑවා විසින් අදින රේඛාවේ ප්‍රමාණය පිහිටුවයි" +msgid "port" +msgstr "පේනුව" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:345 +msgid "power" msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:348 +msgid "turn a motor" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "පෑන ඔසවන්න" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "කැස්බෑවා ගමන් කරවූ විට නොඅදිනු ඇත." +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "පැන් පහර පහළට" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "කැස්බෑවා ගමන් කරවූ විට අදිනු ඇත." +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "පෑනේ විශාලත්වය සකසන්න" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "කැස්බෑවා විසින් අදින රේඛාවේ ප්‍රමාණය පිහිටුවයි" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "පිරවීම ආරම්භ කරන්න" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "පිරවූ බහුඅශ්‍රය ආරම්භ කරයි (පිරවුම් කුට්ටිය අවසාන කිරීම සමඟ භාවිතා කල)" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "පිරවීම අවසාන කරන්න" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:358 +msgid "start motor" msgstr "" -"පිරවූ බහුඅශ්‍රය සම්පූර්ණ කරයි (පිරවුම් කුට්ටිය ආරම්භ කිරීම සමඟ භාවිතා කල)" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "පෑනේ විශාලත්වය" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:360 +msgid "brake motor" msgstr "" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "පෑන් වර්ණ සඳහා ඵලකය" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" +#: taextras.py:364 +msgid "Reset the motor counter." msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" +#: taextras.py:365 +msgid "motor position" msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" +#: taextras.py:366 +msgid "Get the motor position." msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" +#: taextras.py:367 +msgid "PORT 1" msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" +#: taextras.py:368 +msgid "PORT 1 of the brick" msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" +#: taextras.py:369 +msgid "read" msgstr "" -#: TurtleArt/tabasics.py:453 -#, fuzzy -msgid "white" -msgstr "අතරතුර" +#: taextras.py:370 +msgid "sensor" +msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "පසුපසට" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "පෙළ වර්ණය සකසන්න" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "කැස්බෑවා විසින් අදින පෙළෙහි වර්ණය පිහිටුවයි" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "පෙළ විශාලත්වය සකසන්න" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "කැස්බෑවා විසින් අදින පෙළෙහි ප්‍රමාණය පිහිටුවයි" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "අංකිත මෙහෙයුම් වල ඵලකය" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "එකතු කිරීම" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" +#: taextras.py:378 +msgid "touch sensor" msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "අඩු කිරීම" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "ඉහළ අංකිත ආදානයෙන් පහළ අංකිත ආදානය අඩු කරයි" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "ගුණ කිරීම" +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "අංකිත ආදාන දෙකක් ගුණ කරයි" +#: taextras.py:382 +msgid "sound sensor" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "බෙදීම" +#: taextras.py:383 +msgid "color sensor" +msgstr "" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +#. 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:386 +msgid "set light" msgstr "" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "අනන්‍යතාව" +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "කුට්ටි විස්තාරණය කිරීම සඳහා භාවිතා කරන අනන්‍යතා මෙහෙයුම" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" msgstr "ඉතිරි" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "වර්ගමූලය" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "අග" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "වර්ගමූලය ගණනය කරයි" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "අහඹු" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "අවම" +#: taextras.py:424 +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 "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "උපරිම" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "අවම (ඉහළ) සහ උපරිම (පහළ) අගයන් අතර අහඹු අංකයක් ලබා දෙයි" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "අංකය" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "ගණිතමය මෙහෙයුම් වලදී අංකිත මෙහෙයුම් ලෙස භාවිතා කරනු ලබයි" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "වඩා වැඩි" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "තාර්කික greater-than මෙහෙයුම" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "වඩා අඩු" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "තාර්කික less-than මෙහෙයුම" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "සමාන" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "තාර්කික equal-to මෙහෙයුම" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "නැති" +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "තාර්කික NOT මෙහෙයුම" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "සහ" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "තාර්කික AND මෙහෙයුම" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "හෝ" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "තාර්කික OR මෙහෙයුම" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 #, fuzzy -msgid "Palette of flow operators" -msgstr "අංකිත මෙහෙයුම් වල ඵලකය" +msgid "samples" +msgstr "" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-#\n" +"සාම්පලය" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "තේමාව" + +#: 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 "කැමරා ප්‍රතිදානය" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම් භාවිතා කරන if-then මෙහෙයුම" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "1 වන කොටුව" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "1 වන කොටුව" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "පියවර" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "අංකිත ආදාන දෙකක් ගුණ කරයි" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "කුට්ටි පෙන්වන්න/සඟවන්න" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "ඵලකය සගවන්න" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "මිතුරන්" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "උදාහරණය ප්‍රවේශ කරන්න" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "සියළු කුට්ටි කුණු කූඩයට දමන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "ලැයිස්තුව" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "වින්‍යාසගත කිරීමේ නාමාවලිය ලිවිය නොහැක: %s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "ශීර්ෂකය" + +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "දෘශ්‍ය" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "විකල්ප ක්‍රියාව නැත:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "y පහළ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "SVG සුරකින්න" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "පැන් පහර පහළට" #: TurtleArt/tabasics.py:743 msgid "wait" msgstr "රැඳීසිටින්න" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "විශේෂණය කල තත්පර ගණනක් වැඩසටහන ක්‍රියාත්මක වීම තාවකාලිකව නවත්වයි" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "පෙට්ටිය" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "සෑමවිටම" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "උඩුගත කිරීමට අසාර්ථක විය!" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "සදාකාලිකවම නැවත නැවත සිදු කරයි" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "ක්‍රියාව" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "නැවත කරන්න" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +#, fuzzy +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම් භාවිතා කරන if-then-else මෙහෙයුම" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "විශේෂණය කල වාර ගණනක් නැවත නැවත සිදු කරයි" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "භාවිතය" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "නම්" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "විචල්‍යය 2 (අංකිත අගය)" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "ඊළගට" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "බෙදීම" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "පින්තූර නාමය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "අතරතුර" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "හිස් මතක කොටස" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "නම් කරන ලද විචල්‍යය (අංකිත අගය)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "ඊලඟ" #: TurtleArt/tabasics.py:779 #, fuzzy msgid "if then" msgstr "if then" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම් භාවිතා කරන if-then මෙහෙයුම" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "පෑනේ විශාලත්වය සකසන්න" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "else" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "දක්වා" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "කුණු කූඩයේ ඇති අයිතම ස්ථිරවම මකයි" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 #, fuzzy -msgid "if then else" -msgstr "if then else" +msgid "Palette of flow operators" +msgstr "අංකිත මෙහෙයුම් වල ඵලකය" #: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 msgid "if-then-else operator that uses boolean operators from Numbers palette" msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම් භාවිතා කරන if-then-else මෙහෙයුම" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "පිවිසීම අසාර්ථක විය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "x වම" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + #: TurtleArt/tabasics.py:811 msgid "horizontal space" msgstr "තිරස් ඉඩ" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "ප්‍රමිතික ඛණ්ඩාංක" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "සිරස් ඉඩ" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "අනු ලකුණු වැල අගය" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "විස්තරය" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "කෙසේ කරන්නද මම දන්නෙ නෑ" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "පෙළ විශාලත්වය සකසන්න" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "පරිශීලක නාමය:" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "පිරවූ බහුඅශ්‍රය ආරම්භ කරයි (පිරවුම් කුට්ටිය අවසාන කිරීම සමඟ භාවිතා කල)" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "දර්ශනය කරන්න" + +#: TurtleArt/tabasics.py:340 +#, fuzzy +msgid "sets gray level of the line drawn by the turtle" +msgstr "කැස්බෑවා විසින් අදින රේඛාවේ ප්‍රමාණය පිහිටුවයි" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "මුරපදය:" #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "ක්‍රියාව නවත්වන්න" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "අඳුරු කරන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "පින්තූරය සුරකින්න" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "තාරතාව" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "ඛණ්ඩාංක ඉහළට නැවත පරිමාණනය කරන්න" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "පෑන ඔසවන්න" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "විශේෂණය කල තත්පර ගණනක් වැඩසටහන ක්‍රියාත්මක වීම තාවකාලිකව නවත්වයි" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "සියල්ල පැහැදිලි කරන්න" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "ඊළගට" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "ලියාපදිංවි කරන්න" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "නැති" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +#, fuzzy +msgid "if then else" +msgstr "if then else" + #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "වත්මන් ක්‍රියාව නතර කරයි" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "විචල්‍යය කුට්ටි සඳහා ඵලකය" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "කුට්ටි ප්‍රමාණය නැවත සකසන්න" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "ආරම්භය" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "කැස්බෑවා" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "ඊළඟ ඵලකය ප්‍රදර්ශනය කරයි" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "කොටස් සගවන්න" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "තාර්කික less-than මෙහෙයුම" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "කුණු කූඩයෙන් සියළු කුට්ටි නැවත පිහිටුවන්න" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "සුරකින්න" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "1 වන කොටුව තුළ තබන්න" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "2 වන කොටුව තුළ තබන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "මුද්‍රණය" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Logo ලෙස සුරකින්න" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "කැස්බෑවා විසින් අදින රේඛාවේ වර්ණය පිහිටුවයි" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "පෙළ වර්ණය සකසන්න" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "අංකය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "ඉහළ" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "වෙබයට ඉදිරිපත් කරන්න" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "කාටිසියානු ඛණ්ඩාංක" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "අන්වර්ථ නාමය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "පරිමාණය සකසන්න" + +#: TurtleArt/tabasics.py:453 +#, fuzzy +msgid "white" +msgstr "අතරතුර" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "මෙවලම් තීරු ධාවනය කරන්න බොත්තම් වලට ක්‍රියා සම්බන්ධ කරයි" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "අවලංගු කරන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "ඉදිරිපත් කිරීම 2x1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "අඩු කිරීම" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "සහ" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "ආදානය ලෙද" + +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "ත්වරණය" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "වර්ණය සකසන්න" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "අවම" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "මාගේ කොටස පූරණය කරන්න" + +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "පෑන් විධාන ඵලකය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +#, fuzzy +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම් භාවිතා කරන if-then-else මෙහෙයුම" + +#: turtleblocks.py:363 +msgid "File" +msgstr "ගොනුව" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "තාර්කික NOT මෙහෙයුම" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "අංකිත මෙහෙයුම් වල ඵලකය" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "ගුණ කිරීම" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "සෑමවිටම" + +#: TurtleArt/tabasics.py:329 +#, fuzzy +msgid "sets shade of the line drawn by the turtle" +msgstr "කැස්බෑවා විසින් අදින රේඛාවේ ප්‍රමාණය පිහිටුවයි" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "ක්ෂණික ඡායාරූපය" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "මකන්න" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "කුට්ටි වවන්න" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "මුළු තිරයම" + +#: turtleblocks.py:255 +msgid "File not found" +msgstr "ගොනුව හමු නොවුණි" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "පෙන්වන්න" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -572,70 +2075,471 @@ msgstr "මෙවලම් තීරු ධාවනය කරන්න බො msgid "text" msgstr "පෙළ" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "අනු ලකුණු වැල අගය" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "අහඹු" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "ක්‍රියාව" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "තාර්කික greater-than මෙහෙයුම" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "" +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "පසුපසට" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "වර්ගමූලය ගණනය කරයි" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "1 වන කොටුව තුළ තබන්න" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "නවත්වන්න" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "වඩා වැඩි" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "උදව්" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "ව්‍යාපෘතිය සුරකින්නද?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "x දකුණ" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "කැස්බෑවා විසින් අදින පෙළෙහි වර්ණය පිහිටුවයි" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "යතුරු පුවරුව" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "අරය" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "ධ්‍රැවක ඛණ්ඩාංක" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "අඳුරුකිරීම් සකසන්න" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "තාර්කික AND මෙහෙයුම" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "ධාවනය කරන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "සංචිතය දක්වන්න" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "තේමාව:" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "කුණු කූඩයෙන් සියළු කුට්ටි නැවත පිහිටුවන්න" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "විචල්‍යය කුට්ටි සඳහා ඵලකය" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "ගණිතමය මෙහෙයුම් වලදී අංකිත මෙහෙයුම් ලෙස භාවිතා කරනු ලබයි" + +#: 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 "උඩුගත කරන්න" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "සේවාදායකය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "ඉදිරිපත් කිරීම 2x2" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "විචල්‍යය 1 (අංකිත අගය)" + +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "අසල්වාසීන්" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "සමාන" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "else" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "කැමති නෑ" + +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "ඔබ සුරැකා නැති වැඩ ඇත. ඉවත් වීමට පෙර සුරැකීමට ඔබ කැමතිද?" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "කැස්බෑවා ගමන් කරවූ විට නොඅදිනු ඇත." + +#. #-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "පොප්" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "පෑනේ විශාලත්වය" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "තාර්කික equal-to මෙහෙයුම" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "පෑන් වර්ණ සඳහා ඵලකය" #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "අංකිත අගය විචල්‍යය 1 හි ගබඩා කරයි" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "2 වන කොටුව තුළ තබන්න" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "අංකිත අගය විචල්‍යය 2 හි ගබඩා කරයි" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "1 වන කොටුව" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "කැස්බෑවා පසුපසට ගමන් කරවයි" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "විචල්‍යය 1 (අංකිත අගය)" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "කොටස් පෙන්වන්න" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "1 වන කොටුව" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "වාදනය කරන්න" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "විචල්‍යය 2 (අංකිත අගය)" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "සුරකින්න" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "වර්ණ" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "කැස්බෑවා විසින් අදින රේඛාවේ ප්‍රමාණය පිහිටුවයි" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "විවෘත කරන්න" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "දිශානතිය" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "නම්" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "පියවර" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "ක්‍රියාව 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "ක්‍රියාව 1" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "පිරවීම අවසාන කරන්න" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "පිටපත් කරන්න" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "අලවන්න" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "වෙත ප්‍රතිදානය කරන්න එපා" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "ක්‍රියාකාරකම්" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "වෙබයට උඩුගත කරන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "හිස් මතක කොටස" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "පැහැදිලි කරන්න" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "ඇලය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "y ඉහළ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ශ්‍රව්‍ය" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "මෙවලම්" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "වම" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "ඉහළ අංකිත ආදානයෙන් පහළ අංකිත ආදානය අඩු කරයි" + +#: 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 "වෝල්ටීයතාව" + +#: TurtleArt/tabasics.py:123 +#, fuzzy +msgid "Palette of turtle commands" +msgstr "පෑන් විධාන ඵලකය" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "සදාකාලිකවම නැවත නැවත සිදු කරයි" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "ටර්ටල් ආර්ට්" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "ව්‍යාපෘතිය" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "දෝෂහරණය" + +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "මුරපදය" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "සිරස් ඉඩ" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "පිරවූ බහුඅශ්‍රය සම්පූර්ණ කරයි (පිරවුම් කුට්ටිය ආරම්භ කිරීම සමඟ භාවිතා කල)" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "හවුල් කරන්න" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "වඩා අඩු" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "වර්ගමූලය" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "ඛණ්ඩාංක ප්‍රමාණනය කරන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "කොටස් පෙන්වන්න" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "ඉවත් වෙන්න" + +#: turtleblocks.py:354 +msgid "New" +msgstr "නව" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "පික්සලය කියවන්න" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "පරිමාණය" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +#, fuzzy +msgid "bottom" +msgstr "y පහළ" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "ඛණ්ඩාංක පහළට නැවත පරිමාණනය කරන්න" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "වින්‍යාසය" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "විස්තරය:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "ජර්නලය" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "කුණු කූඩය හිස් කරන්න" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "කැස්බෑවා ගමන් කරවූ විට අදිනු ඇත." + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "ප්‍රවේශනය කරන්න..." + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "කැස්බෑවා නවත්වන්න" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "ටර්ටලය" #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "මෙහි ගබඩා කරන්න" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "පෙට්ටිය" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "කොටස් සගවන්න" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "අග" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Python කුට්ටිය ප්‍රවේශනය කරන්න" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "එකතු කිරීම" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "හෝ" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "කුට්ටි විස්තාරණය කිරීම සඳහා භාවිතා කරන අනන්‍යතා මෙහෙයුම" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "කුට්ටු හකුළුවන්න" + +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "කැස්බෑවා විසින් අදින පෙළෙහි ප්‍රමාණය පිහිටුවයි" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "පින්තූරය" + +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "අවම (ඉහළ) සහ උපරිම (පහළ) අගයන් අතර අහඹු අංකයක් ලබා දෙයි" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "ඵලකය පෙන්වන්න" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "ක්ෂණික ඡායාරූපය සුරකින්න" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "ආරම්භය" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "කැස්බෑවා ඉදිරියට ගමන් කරවයි" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "ඉදිරියට" #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 @@ -644,290 +2548,313 @@ msgstr "අග" msgid "my box" msgstr "මගේ පෙට්ටිය" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "ගිණුම් ID" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "පසුපසට" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "ඉදිරිපත් කිරීම 1x1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "ඉදිරිපත් කිරීම 1x2" + #: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 msgid "stores numeric value in named variable" msgstr "අංකිත අගය නම් කරන ලද විචල්‍යයක ගබඩා කරයි" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "නම් කරන ලද විචල්‍යය (අංකිත අගය)" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "තාර්කික OR මෙහෙයුම" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "ක්‍රියාව 1" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "විශේෂණය කල වාර ගණනක් නැවත නැවත සිදු කරයි" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "සුරකින්න..." -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "ක්‍රියාව 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "xy සකසන්න" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "y තේමාව" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "x තේමාව" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "පුර්ණතිරය" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "ලෙස සුරකින්න" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "xy සකසන්න" #: TurtleArt/tabasics.py:995 msgid "trash" msgstr "කුණු කූඩය" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "කුණු කූඩය හිස් කරන්න" - -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "කුණු කූඩයේ ඇති අයිතම ස්ථිරවම මකයි" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "නැවත කරන්න" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "සියල්ල නැවත පිහිටුවන්න" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "පින්තූරයක් ලෙස සුරකින්න" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "කුණු කූඩයෙන් සියළු කුට්ටි නැවත පිහිටුවන්න" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "සංස්කරනය කරන්න" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "සියල්ල පැහැදිලි කරන්න" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "උපරිම" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "සියළු කුට්ටි කුණු කූඩයට දමන්න" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "පිරවීම ආරම්භ කරන්න" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "" +#. #-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# si.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "ඔබන්න" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "තේමාව" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "සියල්ල නැවත පිහිටුවන්න" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "කැස්බෑවා නවත්වන්න" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "කොටස් පෙන්වන්න" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "කොටස් සගවන්න" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "වෙත ප්‍රතිදානය කරන්න එපා" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "කෙසේ කරන්නද මම දන්නෙ නෑ" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "දකුණ" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "කැමති නෑ" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "ආදානය ලෙද" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "ඊළඟ ඵලකය ප්‍රදර්ශනය කරයි" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "ප්‍රවේශනය කරන්න..." +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "සුරකින්න..." +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "දිශානතිය" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "ඊලඟ" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" +#: TurtleArt/tabasics.py:337 +msgid "set gray" msgstr "" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "ටර්ටල් ආර්ට්" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "පින්තූරය" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Logo ලෙස සුරකින්න" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "පින්තූරයක් ලෙස සුරකින්න" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "ක්ෂණික ඡායාරූපය" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "ක්ෂණික ඡායාරූපය සුරකින්න" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" +#: TurtleArt/tabasics.py:449 +msgid "cyan" msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" +#: TurtleArt/tabasics.py:450 +msgid "blue" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "ඵලකය පෙන්වන්න" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "ඵලකය සගවන්න" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "ඛණ්ඩාංක පහළට නැවත පරිමාණනය කරන්න" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "ඛණ්ඩාංක ඉහළට නැවත පරිමාණනය කරන්න" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "අනන්‍යතාව" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "සංස්කරනය කරන්න" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "ඉතිරි" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "දර්ශනය කරන්න" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "ව්‍යාපෘතිය" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "පිටපත් කරන්න" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "අලවන්න" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "" -#: TurtleArtActivity.py:591 -#, fuzzy -msgid "Restore blocks from trash" -msgstr "කුණු කූඩයෙන් සියළු කුට්ටි නැවත පිහිටුවන්න" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "මුළු තිරයම" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "කාටිසියානු ඛණ්ඩාංක" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "ධ්‍රැවක ඛණ්ඩාංක" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "ප්‍රමිතික ඛණ්ඩාංක" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "කුට්ටි වවන්න" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "කුට්ටු හකුළුවන්න" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "උදාහරණය ප්‍රවේශ කරන්න" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "පැහැදිලි කරන්න" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "ධාවනය කරන්න" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "පියවර" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "උදව්" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "පියවර" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "" #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" @@ -937,10 +2864,6 @@ msgstr "" msgid "Load plugin" msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Python කුට්ටිය ප්‍රවේශනය කරන්න" - #: TurtleArtActivity.py:766 msgid "Palettes" msgstr "" @@ -949,26 +2872,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" - -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" - -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" - -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -996,106 +2899,20 @@ msgstr "" msgid "Enable collaboration" msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "ක්‍රියාකාරකම්" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "මිතුරන්" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "හවුල් කරන්න" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "වින්‍යාසය" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "අසල්වාසීන්" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "අන්වර්ථ නාමය" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "ගිණුම් ID" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "සේවාදායකය" - #: gnome_plugins/collaboration_plugin.py:298 msgid "Port" msgstr "පේනුව" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "මුරපදය" - -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "ලියාපදිංවි කරන්න" - -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "වර්ණ" - -#: gnome_plugins/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 "උඩුගත කරන්න" - #: gnome_plugins/fb_plugin.py:87 msgid "Facebook wall post" msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "වෙබයට උඩුගත කරන්න" - #: gnome_plugins/uploader_plugin.py:90 msgid "" "You must have an account at http://turtleartsite.sugarlabs.org to upload " "your project." msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "පරිශීලක නාමය:" - -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "මුරපදය:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "තේමාව:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "විස්තරය:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "වෙබයට ඉදිරිපත් කරන්න" - -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "අවලංගු කරන්න" - -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "පිවිසීම අසාර්ථක විය" - -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "උඩුගත කිරීමට අසාර්ථක විය!" - #: plugins/accelerometer/accelerometer.py:49 #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 @@ -1104,21 +2921,11 @@ msgstr "උඩුගත කිරීමට අසාර්ථක විය!" msgid "Palette of sensor blocks" msgstr "" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "ත්වරණය" - #: plugins/accelerometer/accelerometer.py:58 #: plugins/accelerometer/accelerometer.py:65 msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "හඬ" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,24 +2941,11 @@ msgstr "" msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "තාරතාව" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "ප්‍රතිරෝධය" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1159,13 +2953,6 @@ msgstr "ප්‍රතිරෝධය" msgid "microphone input resistance" msgstr "" -#: 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 "වෝල්ටීයතාව" - #: plugins/audio_sensors/audio_sensors.py:158 #: plugins/audio_sensors/audio_sensors.py:172 #: plugins/audio_sensors/audio_sensors.py:186 @@ -1178,15 +2965,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "දීප්තිය" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1197,94 +2975,35 @@ msgstr "" msgid "Average RGB color from camera is pushed to the stack" msgstr "" -#: 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 "කැමරා ප්‍රතිදානය" - #: plugins/light_sensor/light_sensor.py:58 #: plugins/light_sensor/light_sensor.py:65 msgid "light level detected by light sensor" msgstr "" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - #: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "අතරතුර" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -#, fuzzy -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම් භාවිතා කරන if-then-else මෙහෙයුම" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "දක්වා" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#, fuzzy -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම් භාවිතා කරන if-then-else මෙහෙයුම" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "ඉහළ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "ජර්නලය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ශ්‍රව්‍ය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "දෘශ්‍ය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "විස්තරය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 msgid "Sugar Journal description field" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "පෙන්වන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 @@ -1295,39 +3014,18 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "පරිමාණය සකසන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "පින්තූරය සුරකින්න" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "පින්තූර නාමය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "saves a picture to the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG සුරකින්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "පරිමාණය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1430,18 +3128,10 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "යතුරු පුවරුව" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "පික්සලය කියවන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 msgid "RGB color under the turtle is pushed to the stack" msgstr "" @@ -1454,10 +3144,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "කාලය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1466,46 +3152,22 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "ඔබන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "සංචිතය දක්වන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 msgid "shows values in FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "හිස් මතක කොටස" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "පොප්" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "හිස් මතක කොටස" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" @@ -1520,10 +3182,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "මුද්‍රණය" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1536,12 +3194,6 @@ msgstr "" msgid "Python int operator" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" "a programmable block: used to add advanced single-variable math equations, e." @@ -1588,11 +3240,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "කැස්බෑවා" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1617,18 +3264,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "මාගේ කොටස පූරණය කරන්න" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "xy සකසන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1641,18 +3276,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "කොටස් සගවන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "කොටස් පෙන්වන්න" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1661,10 +3288,6 @@ msgstr "" msgid "hides the Sugar toolbars" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "ලැයිස්තුව" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" @@ -1701,19 +3324,10 @@ msgstr "" msgid "xcor of left of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -#, fuzzy -msgid "bottom" -msgstr "y පහළ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "පළල" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1726,55 +3340,10 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "උස" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "x තේමාව" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "y තේමාව" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "x වම" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "y ඉහළ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "x දකුණ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "y පහළ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "ඉදිරිපත් කිරීම 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "ඉදිරිපත් කිරීම 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "ඉදිරිපත් කිරීම 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "ඉදිරිපත් කිරීම 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1802,18 +3371,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "නවත්වන්න" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "වාදනය කරන්න" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "සුරකින්න" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1826,178 +3383,10 @@ msgstr "" msgid "make a uturn" msgstr "" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "භාවිතය" - -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "විකල්ප ක්‍රියාව නැත:" - -#: turtleblocks.py:255 -msgid "File not found" -msgstr "ගොනුව හමු නොවුණි" - -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "වින්‍යාසගත කිරීමේ නාමාවලිය ලිවිය නොහැක: %s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "නව" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "විවෘත කරන්න" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "සුරකින්න" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "ලෙස සුරකින්න" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "ඉවත් වෙන්න" - -#: turtleblocks.py:363 -msgid "File" -msgstr "ගොනුව" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "ඛණ්ඩාංක ප්‍රමාණනය කරන්න" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "කුට්ටි ප්‍රමාණය නැවත සකසන්න" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "කුට්ටි පෙන්වන්න/සඟවන්න" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "මෙවලම්" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "දෝෂහරණය" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "ටර්ටලය" - #: turtleblocks.py:407 msgid "About..." msgstr "" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "ඔබ සුරැකා නැති වැඩ ඇත. ඉවත් වීමට පෙර සුරැකීමට ඔබ කැමතිද?" - -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "ව්‍යාපෘතිය සුරකින්නද?" - -#~ msgid "Select a challenge" -#~ msgstr "අභියෝගයක් තෝරන්න" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "මෙක්සිකානු පෙසෝ ඵලකය" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "කොලොම්බියානු පෙසෝ ඵලකය" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "රුවන්ඩා ෆ්‍රෑන්ක් ඵලකය" - -#, fuzzy -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "LED තීව්රතාව 0 සහ 255 අතර සීරු මාරු කරන්න." - -#, fuzzy -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "බොත්තම තද කල විට 1 සහ අනෙක් විට 0 ලබා දෙයි." - -#, fuzzy -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "සංවේදකය ඉදිරිපස ඇති වස්තුවේ සිට දුර 0 සහ 255 අතර අංකයක් ලෙස ලබා දෙයි." - -#, fuzzy -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "සංවේදකයේ ආනතිය මත 0 හෝ 1 ලබා දෙයි." - -#, fuzzy -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "සංවේදකය චුම්භක ක්‍ෂේත්‍රයක් සංවේදනය කල විට 1 සහ අනෙක් විට 0 ලබා දෙයි." - -#, fuzzy -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "0 සිට 1ට මාරු වෙයි, සංඛ්‍යාතය කම්පනය මත රදා පවතී." - -#~ msgid "LED" -#~ msgstr "LED" - -#~ msgid "grayscale" -#~ msgstr "කළු සුදු පරාසය" - -#~ msgid "temperature" -#~ msgstr "උෂ්ණත්වය" - -#~ msgid "distance" -#~ msgstr "දුර" - -#~ msgid "magnetic induction" -#~ msgstr "චුම්භක ප්‍රේරණය" - -#~ msgid "vibration" -#~ msgstr "කම්පනය" - -#, fuzzy -#~ msgid "Error on initialization of the camera" -#~ msgstr "කැමරාව ආරම්භ කිරීමේදී දෝෂය." - -#~ msgid "FollowMe" -#~ msgstr "මාව අනුගමනය කරන්න" - -#~ msgid "x position" -#~ msgstr "x පිහිටීම" - -#~ msgid "return x position" -#~ msgstr "x පිහිටීම ලබා දෙන්න" - -#~ msgid "y position" -#~ msgstr "y පිහිටීම" - -#~ msgid "return y position" -#~ msgstr "y පිහිටීම ලබා දෙන්න" - -#, fuzzy -#~ msgid "density" -#~ msgstr "අනන්‍යතාව" - -#, fuzzy -#~ msgid "light" -#~ msgstr "දකුණ" - -#, fuzzy -#~ msgid "port" -#~ msgstr "පේනුව" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "ඉතිරි" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "සාම්පලය" - #~ msgid "follow a RGB color" #~ msgstr "RGB වර්ණයක් අනුගමනය කරන්න" diff --git a/po/sk.po b/po/sk.po index 0ce98b9..9a92b78 100644 --- a/po/sk.po +++ b/po/sk.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# sk.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sk.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sk.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sk.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1470 @@ msgstr "" "X-Generator: Pootle 1.2.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "pero dole" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,24 +1585,11 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" @@ -159,12 +1635,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -226,10 +1696,6 @@ msgstr "" msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "pero dole" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/sl.po b/po/sl.po index 5076492..6176a5c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# sl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sl.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -14,11 +39,1503 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +#, fuzzy +msgid "next" +msgstr "besedilo" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "intonacijo" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +#, fuzzy +msgid "text" +msgstr "besedilo" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +#, fuzzy +msgid "Project" +msgstr "Projekt" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -97,24 +1614,11 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" @@ -160,12 +1664,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -376,10 +1874,6 @@ msgstr "" msgid "modular (remainder) operator" msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" - #: TurtleArt/tabasics.py:636 msgid "square root" msgstr "" @@ -553,18 +2047,6 @@ msgstr "" msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -#, fuzzy -msgid "text" -msgstr "besedilo" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -626,10 +2108,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -769,11 +2247,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -#, fuzzy -msgid "next" -msgstr "besedilo" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -851,11 +2324,6 @@ msgstr "" msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -#, fuzzy -msgid "Project" -msgstr "Projekt" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" @@ -1108,11 +2576,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1128,24 +2591,11 @@ msgstr "" msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "intonacijo" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1172,15 +2622,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1446,10 +2887,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1698,10 +3135,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1714,10 +3147,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/sq.po b/po/sq.po index 16d14d0..5a3b5d7 100644 --- a/po/sq.po +++ b/po/sq.po @@ -1,13 +1,50 @@ +# #-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,6 +59,1883 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "lartësia" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "gjerësia" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "ngjyrë" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "djathtas" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "zëri" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "mes" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-#\n" +"shembujt" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Titulli" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "kutija 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "kutija 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Hapi" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Fshihe paletën" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "kreu" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "lapsi poshtë" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "prit" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "kuti" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "veprimi" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "tjetër" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "jepe madhësinë e lapsit" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "vendos kreun" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "jepe madhësinë e lapsit" + +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "ndale veprimin" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "hije" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "lapsi lart" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "pastaj" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "jo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "fshihni blloqet" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "vendose në kutinë 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "vendose në kutinë 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "shtyp" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Ruaje si Logo" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "vëre ngjyrën e tekstit" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "numri" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "ndal" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "vëre hijen" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "prezantimi 2x1" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "dhe" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "vëre ngjyrën" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "min" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "mbushi blloqet e mija" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "përgjithmonë" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "pastro" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "Shfaq blloqet" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Ekran të plot" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "shfaq" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "titulli" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "e thjeshtë" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "prapa" + +#: TurtleArt/tabasics.py:639 +#, fuzzy +msgid "calculates square root" +msgstr "llogaritni rrënjën katrore" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "ndal" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Ndihmë" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "tastiera" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "arc" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "rrezja" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "vëre hijen" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Ekzekuto" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Titulli:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "prezantimi 2x2" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "përndryshe" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "madhësija e lapsit" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Shfaq blloqet" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Ngjyrë" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +#, fuzzy +msgid "orientation" +msgstr "prezantimi" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "nëse" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Ndal" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "veprimi 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "veprimi 1" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopjo" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "Pastro" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "këndi" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "majtas" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Arti i Breshkës" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projekti" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "shfaq blloqet" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "shkallë" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +#, fuzzy +msgid "Stop turtle" +msgstr "Ndalo breshkën" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "ruaj në" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Fshihi blloqet" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "ose" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Shfaq paletën" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "fillo" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "përpara" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "prapa" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "prezantimi 1x1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "prezantimi 1x2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "vendos xy" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "mbushe ekranin" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "Ruaje si" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "vendos xy" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "përsërit" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Ruaje si imazh" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Modifiko" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "maks" + +#. #-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# sq.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "shtyj" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -36,37 +1950,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "përpara" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "prapa" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "pastro" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "majtas" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -80,74 +1975,31 @@ msgstr "djathtas" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "arc" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "këndi" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "rrezja" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "vendos xy" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "vendos kreun" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "kreu" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -158,23 +2010,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "mbushe ekranin" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "ngjyrë" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "hije" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -185,18 +2020,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "vëre ngjyrën" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "vëre hijen" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -221,26 +2048,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "lapsi lart" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "lapsi poshtë" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "jepe madhësinë e lapsit" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -261,10 +2076,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "madhësija e lapsit" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -305,24 +2116,10 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "prapa" - -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "vëre ngjyrën e tekstit" - #: TurtleArt/tabasics.py:463 msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "jepe madhësinë e lapsit" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -380,39 +2177,14 @@ msgstr "mes" msgid "modular (remainder) operator" msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" - #: TurtleArt/tabasics.py:636 msgid "square root" msgstr "" -#: TurtleArt/tabasics.py:639 -#, fuzzy -msgid "calculates square root" -msgstr "llogaritni rrënjën katrore" - -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "e thjeshtë" - -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "min" - -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "maks" - #: TurtleArt/tabasics.py:650 msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "numri" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -441,26 +2213,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "jo" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "dhe" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "ose" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -470,38 +2230,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "prit" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "përgjithmonë" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "përsërit" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "nëse" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "pastaj" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -510,10 +2250,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "përndryshe" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -538,10 +2274,6 @@ msgstr "" msgid "jogs stack down" msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "ndale veprimin" - #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "" @@ -550,38 +2282,15 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "fillo" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "titulli" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "veprimi" - #: TurtleArt/tabasics.py:865 msgid "top of nameable action stack" msgstr "" @@ -590,50 +2299,22 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "vendose në kutinë 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "vendose në kutinë 2" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "kutija 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "kutija 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "ruaj në" - -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "kuti" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -649,18 +2330,10 @@ msgstr "" msgid "named variable (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "veprimi 1" - #: TurtleArt/tabasics.py:958 msgid "top of Action 1 stack" msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "veprimi 2" - #: TurtleArt/tabasics.py:967 msgid "top of Action 2 stack" msgstr "" @@ -706,33 +2379,6 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Titulli" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -#, fuzzy -msgid "Stop turtle" -msgstr "Ndalo breshkën" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Shfaq blloqet" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Fshihi blloqet" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -770,15 +2416,6 @@ msgstr "" msgid "click to open" msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -#, fuzzy -msgid "orientation" -msgstr "prezantimi" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "tjetër" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -794,24 +2431,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Arti i Breshkës" - #: TurtleArt/tawindow.py:3977 msgid "image" msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Ruaje si Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Ruaje si imazh" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" @@ -830,14 +2453,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Shfaq paletën" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Fshihe paletën" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -846,29 +2461,16 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Modifiko" - #: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 #: TurtleArtActivity.py:747 turtleblocks.py:382 msgid "View" msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projekti" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopjo" - #: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 msgid "Paste" msgstr "" @@ -877,11 +2479,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Ekran të plot" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -894,11 +2491,6 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "Shfaq blloqet" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -908,27 +2500,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "Pastro" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Ekzekuto" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Hapi" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Ndihmë" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Ndal" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1040,10 +2611,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Ngjyrë" - #: 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 @@ -1072,10 +2639,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Titulli:" - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1114,11 +2677,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "zëri" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1145,13 +2703,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1178,15 +2729,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1236,13 +2778,6 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "ndal" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" @@ -1279,11 +2814,6 @@ msgstr "" msgid "Sugar Journal description field" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "shfaq" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 @@ -1294,11 +2824,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "vëre hijen" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1324,10 +2849,6 @@ msgstr "" msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "shkallë" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1430,10 +2951,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "tastiera" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1454,10 +2971,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1466,11 +2979,6 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "shtyj" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" @@ -1519,10 +3027,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "shtyp" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1616,18 +3120,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "mbushi blloqet e mija" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "vendos xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1640,18 +3132,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "fshihni blloqet" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "shfaq blloqet" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1708,10 +3192,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "gjerësia" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1724,10 +3204,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "lartësia" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1756,23 +3232,6 @@ msgstr "" msgid "bottom y" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "prezantimi 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "prezantimi 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "prezantimi 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "prezantimi 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1800,10 +3259,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "ndal" - #: pysamples/grecord.py:217 msgid "play" msgstr "" @@ -1853,10 +3308,6 @@ msgstr "" msgid "Save" msgstr "" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "Ruaje si" - #: turtleblocks.py:362 msgid "Quit" msgstr "" @@ -1901,18 +3352,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "djathtas" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mes" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "shembujt" - #~ msgid "Save as HTML" #~ msgstr "Ruaje si HTML" diff --git a/po/sv.po b/po/sv.po index 66a57fb..0167132 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,13 +1,50 @@ +# #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,587 +59,1981 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -#, fuzzy -msgid "Palette of turtle commands" -msgstr "palett med skölpaddskommandon" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "framåt" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:132 -#, fuzzy -msgid "moves turtle forward" -msgstr "flytta sköldpaddan framåt" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "tillbaka" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -#, fuzzy -msgid "moves turtle backward" -msgstr "flytta sköldpaddan bakåt" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "rensa" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -#, fuzzy -msgid "clears the screen and reset the turtle" -msgstr "rensa skärmen och återställ sköldpaddan" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "vänster" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:166 -#, fuzzy -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "flytta sköldpaddan motsols (vinkel i grader)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "höger" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:178 -#, fuzzy -msgid "turns turtle clockwise (angle in degrees)" -msgstr "flytta sköldpaddan medsols (vinkel i grader)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "cirkelbåge" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "vinkel" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "radie" +#: taextras.py:86 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 "resistans" -#: TurtleArt/tabasics.py:190 -#, fuzzy -msgid "moves turtle along an arc" -msgstr "flytta skldpaddan längs båge" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "ange x,y" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "höjd" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "bredd" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -#, fuzzy +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -"flytta sködpadden till position xcor, ycor; (0, 0) är i mitten av skärmen." -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "ange riktning" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 #, fuzzy -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "Sätt sköldpaddans riktning (0 är mot skärmens topp.)" +msgid "density" +msgstr "identititet" -# förkortningen kor. torde fungera för både koordinat och korrelation... Jämförde med andra språk så det motsvarar vad de översatt. -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xkor" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"Håller sköldpaddans nuvarande x-koordinat (kan användas istället för ett " -"nummerblock)" -# se ovan -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ykor" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:274 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -"håller sköldpaddans nuvarande y-koordinat (kan användas istället för ett " -"nummerblock)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "riktning" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:278 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." msgstr "" -"håller sköldpaddans nuvarande riktningsvärde (kan användas istället för ett " -"nummerblock)" -#: TurtleArt/tabasics.py:282 -#, fuzzy -msgid "Palette of pen commands" -msgstr "palett med penn-kommandon" +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "fyll skärm" +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "färg" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "skugga" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "höger" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "fyller backgrunden med (färg, nyans)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "ljud" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:320 +msgid "grey" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "ange färg" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -#, fuzzy -msgid "sets color of the line drawn by the turtle" -msgstr "sätt färg på linjen som ritas av sköldpaddan" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "Ange skugga" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -#, fuzzy -msgid "sets shade of the line drawn by the turtle" -msgstr "sätt nyans på linjen som ritas av sköldpaddan" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -#: TurtleArt/tabasics.py:340 -#, fuzzy -msgid "sets gray level of the line drawn by the turtle" -msgstr "sätt nyans på linjen som ritas av sköldpaddan" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "håller nuvarande penn-färg (kan användas istället för ett nummerblock)" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" +#: taextras.py:329 +msgid "NXT not found" msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" msgstr "" -"håller det nuvarande skalvärdet (kan användas istället för ett nummberblock)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "Ta upp penna" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -#, fuzzy -msgid "Turtle will not draw when moved." -msgstr "sköldpaddan kommer inte att rita medan den flyttas" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "Sätt ned penna" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -#, fuzzy -msgid "Turtle will draw when moved." -msgstr "sköldpaddan kommer att rita medan den flyttas" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "Ange pennstorlek" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -#, fuzzy -msgid "sets size of the line drawn by the turtle" -msgstr "sätt tjockleken på linjen som ritas av sköldpaddan" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" +#: taextras.py:337 +msgid "Get the name of a brick." msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:338 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" +#: taextras.py:339 +msgid "frequency" msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "pennstorlek" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" msgstr "" -"håller nuvarande penn-storlek (kan användas istället för ett nummerblock)" -#: TurtleArt/tabasics.py:441 -#, fuzzy -msgid "Palette of pen colors" -msgstr "palett med penn-kommandon" +#: taextras.py:344 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" +#: taextras.py:345 +msgid "power" msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" +#: taextras.py:348 +msgid "turn a motor" msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "grönt" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" +#: taextras.py:350 +msgid "steering" msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "blått" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" +#: taextras.py:352 +msgid "PORT A" msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "Vitt" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "tillbaka" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "ange textfärg" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArt/tabasics.py:463 -#, fuzzy -msgid "sets color of text drawn by the turtle" -msgstr "sätt färg på texten som ritas av sköldpaddan" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "ange textstorlek" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArt/tabasics.py:474 -#, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "sätt storlek på text som ritas av sköldpaddan" +#: taextras.py:358 +msgid "start motor" +msgstr "" -#: TurtleArt/tabasics.py:557 +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 #, fuzzy -msgid "Palette of numeric operators" -msgstr "palett med numeriska operatörer" +msgid "sensor" +msgstr "" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"Sensorer" -#: TurtleArt/tabasics.py:563 -msgid "plus" +#: taextras.py:371 +msgid "Read sensor output." msgstr "" -#: TurtleArt/tabasics.py:567 +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 #, fuzzy -msgid "adds two alphanumeric inputs" -msgstr "adderar två numeriska indata" +msgid "mode" +msgstr "rest" -#: TurtleArt/tabasics.py:575 -msgid "minus" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "subtraherar undre numeriskt indata från övre numeriskt indata" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "multiplicerar två numeriska indata" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" +#: taextras.py:423 +msgid "analog read" msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:424 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"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 "" -"dividerar övre numeriskt indata (täljare) med undre numeriskt indata " -"(nämnare)" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "identititet" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "identitetsoperator används för att utöka block" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "rest" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "modulär (rest) operator" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" +#: taextras.py:430 +msgid "Set HIGH value for digital port." msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." msgstr "" -#: TurtleArt/tabasics.py:639 -#, fuzzy -msgid "calculates square root" -msgstr "beräkna kvadratroten" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "slumpmässig" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "minsta" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "största" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: TurtleArt/tabasics.py:650 -#, fuzzy -msgid "returns random number between minimum (top) and maximum (bottom) values" +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" msgstr "" -"returnerar slumpmässigt tal mellan minimum (vänster) och maximum (höger)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "tal" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "används som numerisk indata i matematiska operatorer" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "logiskt större än-operator" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "logisk mindre än-operator" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "logisk lika med-operator" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "inte" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "logisk ICKE operator" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "och" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "logisk OCH operator" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "eller" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "logisk ELLER operator" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 #, fuzzy -msgid "Palette of flow operators" -msgstr "palett med flödesoperatorer" +msgid "samples" +msgstr "" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-#\n" +"Exempel" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "vänta" +#: taextras.py:468 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "alltid" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:758 -#, fuzzy -msgid "loops forever" -msgstr "repetera oändligt" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "upprepa" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:770 -#, fuzzy -msgid "loops specified number of times" -msgstr "repetera specifierat antal gånger" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "om" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "då" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "om-så operatör som använder booleanska operatörer från Nummer-paletten" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "annars" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" +#: taextras.py:486 +msgid "read analog sensor input voltage" msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" msgstr "" -"om-så-annars operatör som använder booleanska operatörer från Nummer-" -"paletten" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" msgstr "" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "titel" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "om-så operatör som använder booleanska operatörer från Nummer-paletten" + #: TurtleArt/tabasics.py:812 #, fuzzy msgid "jogs stack right" msgstr "rör stacken till höger" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "mediaobjekt från Sugar-Dagboken" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "box 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "box 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Steg" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "multiplicerar två numeriska indata" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "dölj palett" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +#, fuzzy +msgid "Sugar Journal video object" +msgstr "ljudobjekt från Sugar-Dagboken" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "x-koordinaten för skärmens högra sida" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +#, fuzzy +msgid "Palette of extra options" +msgstr "palett med extra alternativ" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "riktning" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +#, fuzzy +msgid "draws text or show media from the Journal" +msgstr "rita text eller visa media från dagboken" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "blått" #: TurtleArt/tabasics.py:820 #, fuzzy msgid "jogs stack down" msgstr "rör stacken nedåt" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "modulär (rest) operator" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "botten" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "kör kod ur tamyblock.py modulen som finns i Dagboken" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "Sätt ned penna" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "vänta" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "låda" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#, fuzzy +msgid "invokes named action stack" +msgstr "anropa en namngiven aktions stack" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "händelse" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +#, fuzzy +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "" +"om-så-annars operatör som använder booleanska operatörer från Nummer-paletten" + +#: TurtleArt/tabasics.py:922 +#, fuzzy +msgid "Variable 2 (numeric value)" +msgstr "variabel 2 (tal)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#, fuzzy +msgid "while" +msgstr "Vitt" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "dukens bredd" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "töm stapel" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "namngiven variabel (tal)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "nästa" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "Ange pennstorlek" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "presentationsmall: välj Dagboksobjekt (ingen förklaring)" + +#: TurtleArt/tabasics.py:958 +#, fuzzy +msgid "top of Action 1 stack" +msgstr "början av stacken för aktion 1" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#, fuzzy +msgid "Palette of flow operators" +msgstr "palett med flödesoperatorer" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" +"om-så-annars operatör som använder booleanska operatörer från Nummer-paletten" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "ange riktning" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +#, fuzzy +msgid "declutters canvas by hiding blocks" +msgstr "rensa duken genom att gömma block" + +#: TurtleArtActivity.py:892 +#, fuzzy +msgid "w" +msgstr "b" + +#: TurtleArtActivity.py:890 +#, fuzzy +msgid "r" +msgstr "b" + +#: TurtleArtActivity.py:895 +#, fuzzy +msgid "s" +msgstr "b" + +#: TurtleArtActivity.py:883 +#, fuzzy +msgid "p" +msgstr "b" + +#: TurtleArtActivity.py:888 +#, fuzzy +msgid "e" +msgstr "b" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "sträng" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +#, fuzzy +msgid "description" +msgstr "Beskrivning:" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Jag vet hur jag ska göra för att " + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "ange textstorlek" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Användarnamn:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "presentationsmall: välj fyra Dagboksobjekt" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Visa" + +#: TurtleArt/tabasics.py:340 +#, fuzzy +msgid "sets gray level of the line drawn by the turtle" +msgstr "sätt nyans på linjen som ritas av sköldpaddan" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Lösenord:" + #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "avsluta aktion" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "grönt" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "skugga" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "fyller backgrunden med (färg, nyans)" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "lutning" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "Ta upp penna" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +#, fuzzy +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "för värdet till FILO (first-in-last-out) stacken" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "då" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "inte" + +#: TurtleArt/tabasics.py:178 +#, fuzzy +msgid "turns turtle clockwise (angle in degrees)" +msgstr "flytta sköldpaddan medsols (vinkel i grader)" + +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" msgstr "" +"håller det nuvarande skalvärdet (kan användas istället för ett nummberblock)" -#: TurtleArt/tabasics.py:838 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "x-koordinaten för skärmens vänstra sida" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 #, fuzzy -msgid "Palette of variable blocks" -msgstr "palett med variabla block" +msgid "turtle" +msgstr "Sköldpadda" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "starta" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "dölj block" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "logisk mindre än-operator" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Spara" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "spara i box 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "spara i box 2" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"Håller sköldpaddans nuvarande x-koordinat (kan användas istället för ett " +"nummerblock)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "skriv" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Spara som Logo" + +#: TurtleArt/tabasics.py:317 +#, fuzzy +msgid "sets color of the line drawn by the turtle" +msgstr "sätt färg på linjen som ritas av sköldpaddan" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "ange textfärg" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "tal" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "topp" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Kartesiska koordinater" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "ange skala" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "Vitt" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "kopplar ihop aktion med verktygsbalkens kör-knappar" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Avbryt" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "dukens höjd" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +#, fuzzy +msgid "presentation 2x1" +msgstr "presentation" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "och" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "" +"håller nuvarande penn-storlek (kan användas istället för ett nummerblock)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "ange färg" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "minsta" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "läs in mitt block" + +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "palett med penn-kommandon" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +#, fuzzy +msgid "shows values in FILO (first-in last-out heap)" +msgstr "för värdet till FILO (first-in-last-out) stacken" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +#, fuzzy +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"om-så-annars operatör som använder booleanska operatörer från Nummer-paletten" + +#: turtleblocks.py:363 +msgid "File" +msgstr "Fil" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "logisk ICKE operator" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "y-koordinaten för skärmens nedre sida" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "presentationsmall: välj Dagboksobjekt (med förklaring)" + +#: TurtleArt/tabasics.py:557 +#, fuzzy +msgid "Palette of numeric operators" +msgstr "palett med numeriska operatörer" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "alltid" + +#: TurtleArt/tabasics.py:329 +#, fuzzy +msgid "sets shade of the line drawn by the turtle" +msgstr "sätt nyans på linjen som ritas av sköldpaddan" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "rensa" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "presentationsmall: välj två Dagboksobjekt" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "Visa block" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "helskärm" + +#: turtleblocks.py:255 +msgid "File not found" +msgstr "Hittar inte filen" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "visa" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -614,122 +2045,710 @@ msgstr "kopplar ihop aktion med verktygsbalkens kör-knappar" msgid "text" msgstr "text" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "sträng" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "slumpmässig" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "händelse" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "logiskt större än-operator" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "början av en stack för en aktion som kan namnges" +#: TurtleArt/tabasics.py:166 +#, fuzzy +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "flytta sköldpaddan motsols (vinkel i grader)" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +#: TurtleArt/tabasics.py:454 #, fuzzy -msgid "invokes named action stack" -msgstr "anropa en namngiven aktions stack" +msgid "black" +msgstr "tillbaka" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "spara i box 1" +#: TurtleArt/tabasics.py:639 +#, fuzzy +msgid "calculates square root" +msgstr "beräkna kvadratroten" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"håller sköldpaddans nuvarande y-koordinat (kan användas istället för ett " +"nummerblock)" + +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "topp" + +# förkortningen kor. torde fungera för både koordinat och korrelation... Jämförde med andra språk så det motsvarar vad de översatt. +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xkor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Hjälp" + +#: TurtleArt/tabasics.py:463 +#, fuzzy +msgid "sets color of text drawn by the turtle" +msgstr "sätt färg på texten som ritas av sköldpaddan" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "Tangentbord" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "cirkelbåge" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "radie" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Polära koordinater" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "Ange skugga" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "logisk OCH operator" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Utför" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "visa stapel" + +#: TurtleArt/tabasics.py:217 +#, fuzzy +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "Sätt sköldpaddans riktning (0 är mot skärmens topp.)" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "titel" + +#: TurtleArt/tabasics.py:838 +#, fuzzy +msgid "Palette of variable blocks" +msgstr "palett med variabla block" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "används som numerisk indata i matematiska operatorer" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +#, fuzzy +msgid "presentation 2x2" +msgstr "presentation" + +#: TurtleArt/tabasics.py:912 +#, fuzzy +msgid "Variable 1 (numeric value)" +msgstr "variabel 1 (tal)" + +#: TurtleArt/tabasics.py:567 +#, fuzzy +msgid "adds two alphanumeric inputs" +msgstr "adderar två numeriska indata" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "annars" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "tycker inte om" + +#: TurtleArt/tabasics.py:379 +#, fuzzy +msgid "Turtle will not draw when moved." +msgstr "sköldpaddan kommer inte att rita medan den flyttas" + +#. #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "ta bort" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "pennstorlek" + +#: TurtleArt/tabasics.py:190 +#, fuzzy +msgid "moves turtle along an arc" +msgstr "flytta skldpaddan längs båge" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "logisk lika med-operator" + +#: TurtleArt/tabasics.py:441 +#, fuzzy +msgid "Palette of pen colors" +msgstr "palett med penn-kommandon" #: TurtleArt/tabasics.py:888 #, fuzzy msgid "stores numeric value in Variable 1" msgstr "spara tal i variabel 1" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "spara i box 2" - #: TurtleArt/tabasics.py:901 #, fuzzy msgid "stores numeric value in Variable 2" msgstr "spara tal i variabel 2" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "box 1" +#: TurtleArt/tabasics.py:143 +#, fuzzy +msgid "moves turtle backward" +msgstr "flytta sköldpaddan bakåt" -#: TurtleArt/tabasics.py:912 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "y-koordinaten för skärmens övre sida" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Visa block" + +#: pysamples/grecord.py:219 #, fuzzy -msgid "Variable 1 (numeric value)" -msgstr "variabel 1 (tal)" +msgid "save" +msgstr "Spara" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "box 2" +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "färg" -#: TurtleArt/tabasics.py:922 +#: TurtleArt/tabasics.py:398 #, fuzzy -msgid "Variable 2 (numeric value)" -msgstr "variabel 2 (tal)" +msgid "sets size of the line drawn by the turtle" +msgstr "sätt tjockleken på linjen som ritas av sköldpaddan" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "spara i" +#: turtleblocks.py:355 +msgid "Open" +msgstr "Öppna" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "låda" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "riktning" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" +# se ovan +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ykor" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "om" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#, fuzzy +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" +"flytta sködpadden till position xcor, ycor; (0, 0) är i mitten av skärmen." -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +#: TurtleArtActivity.py:688 turtleblocks.py:403 #, fuzzy -msgid "stores numeric value in named variable" -msgstr "spara tal i namngiven variabel" +msgid "Stop" +msgstr "topp" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "namngiven variabel (tal)" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#, fuzzy +msgid "action 2" +msgstr "händelse" #: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 #, fuzzy msgid "action 1" msgstr "händelse" -#: TurtleArt/tabasics.py:958 +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Kopiera" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Klistra" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "töm stapel" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 #, fuzzy -msgid "top of Action 1 stack" -msgstr "början av stacken för aktion 1" +msgid "pops value off FILO (first-in last-out heap)" +msgstr "för värdet till FILO (first-in-last-out) stacken" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "rensa" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 #, fuzzy -msgid "action 2" -msgstr "händelse" +msgid "Palette of presentation templates" +msgstr "palett med presentationsmallar" -#: TurtleArt/tabasics.py:967 +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "vinkel" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "Ljud" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Verktyg" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "vänster" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "subtraherar undre numeriskt indata från övre numeriskt indata" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"förfrågan för tangentbordsinmatning (resultat sparas i tangentbord blocket)" + +#: 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 "spänning" + +#: TurtleArt/tabasics.py:154 #, fuzzy -msgid "top of Action 2 stack" -msgstr "början av stacken för aktion 2" +msgid "clears the screen and reset the turtle" +msgstr "rensa skärmen och återställ sköldpaddan" #: TurtleArt/tabasics.py:977 #, fuzzy msgid "invokes Action 1 stack" msgstr "anropa stacken för aktion 1" +#: TurtleArt/tabasics.py:123 +#, fuzzy +msgid "Palette of turtle commands" +msgstr "palett med skölpaddskommandon" + +#: TurtleArt/tabasics.py:758 +#, fuzzy +msgid "loops forever" +msgstr "repetera oändligt" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Sköldpaddskonst" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Projekt" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Felsök" + +#: gnome_plugins/collaboration_plugin.py:300 +#, fuzzy +msgid "Password" +msgstr "Lösenord:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +#, fuzzy +msgid "show blocks" +msgstr "Visa block" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Förklaringsfält för Sugar-Journalen" + +#: turtleblocks.py:354 +msgid "New" +msgstr "Ny" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "skala" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "botten" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "Klicka för att öppna" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Beskrivning:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "dagbok" + +#: TurtleArt/tabasics.py:388 +#, fuzzy +msgid "Turtle will draw when moved." +msgstr "sköldpaddan kommer att rita medan den flyttas" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "ljudobjekt från Sugar-Dagboken" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "stoppa sköldpadda" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Sköldpadda" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "spara i" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "dölj block" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "eller" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +#, fuzzy +msgid "presentation template: list of bullets" +msgstr "presentationsmall: sju punkter" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "identitetsoperator används för att utöka block" + +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "sätt storlek på text som ritas av sköldpaddan" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"håller sköldpaddans nuvarande riktningsvärde (kan användas istället för ett " +"nummerblock)" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "bild" + +#: TurtleArt/tabasics.py:650 +#, fuzzy +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"returnerar slumpmässigt tal mellan minimum (vänster) och maximum (höger)" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "håller nuvarande penn-färg (kan användas istället för ett nummerblock)" + +# visa palett +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Visa palett" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Spara snabb-bild" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "starta" + +#: TurtleArt/tabasics.py:132 +#, fuzzy +msgid "moves turtle forward" +msgstr "flytta sköldpaddan framåt" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "framåt" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "tillbaka" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +#, fuzzy +msgid "sets the scale of media" +msgstr "Sätt skalan på mediet" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +#, fuzzy +msgid "presentation 1x1" +msgstr "presentation" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +#, fuzzy +msgid "presentation 1x2" +msgstr "presentation" + +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "början av en stack för en aktion som kan namnges" + +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +#, fuzzy +msgid "stores numeric value in named variable" +msgstr "spara tal i namngiven variabel" + +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "logisk ELLER operator" + +#: TurtleArt/tabasics.py:770 +#, fuzzy +msgid "loops specified number of times" +msgstr "repetera specifierat antal gånger" + #: TurtleArt/tabasics.py:987 #, fuzzy msgid "invokes Action 2 stack" msgstr "anropa stacken för aktion 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "ange x,y" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "fyll skärm" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Spara som" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "ange x,y" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "upprepa" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Spara som bild" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Redigera" + +#: TurtleArt/tabasics.py:967 +#, fuzzy +msgid "top of Action 2 stack" +msgstr "början av stacken för aktion 2" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" +"dividerar övre numeriskt indata (täljare) med undre numeriskt indata " +"(nämnare)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "största" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "skriver ut värde i statusblock vid botten av skärmen" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "innehåller resultat från förfrågan-tangentbord blocket" + +#. #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# sv.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "lägg till sist" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "höger" + +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "" + +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "" + +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "identititet" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "rest" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "" + +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "" + #: TurtleArt/tabasics.py:995 msgid "trash" msgstr "" @@ -763,45 +2782,10 @@ msgstr "" msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "titel" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "stoppa sköldpadda" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Visa block" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "dölj block" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Jag vet hur jag ska göra för att " - -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "tycker inte om" - #: TurtleArt/talogo.py:624 msgid "as input" msgstr "" @@ -822,19 +2806,6 @@ msgstr "" msgid "Save..." msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "Klicka för att öppna" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "riktning" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "nästa" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -850,33 +2821,10 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Sköldpaddskonst" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "bild" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Spara som Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Spara som bild" - #: TurtleArtActivity.py:211 msgid "snapshot" msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Spara snabb-bild" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -886,15 +2834,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -# visa palett -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Visa palett" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "dölj palett" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -903,59 +2842,19 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Redigera" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Visa" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Projekt" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Kopiera" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Klistra" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "helskärm" - -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Kartesiska koordinater" - -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Polära koordinater" - #: TurtleArtActivity.py:601 TurtleArtActivity.py:753 msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "Visa block" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" @@ -965,27 +2864,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "rensa" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Utför" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Steg" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Hjälp" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -#, fuzzy -msgid "Stop" -msgstr "topp" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1006,31 +2884,6 @@ msgstr "" msgid "Sharing blocks disabled" msgstr "" -#: TurtleArtActivity.py:883 -#, fuzzy -msgid "p" -msgstr "b" - -#: TurtleArtActivity.py:888 -#, fuzzy -msgid "e" -msgstr "b" - -#: TurtleArtActivity.py:890 -#, fuzzy -msgid "r" -msgstr "b" - -#: TurtleArtActivity.py:892 -#, fuzzy -msgid "w" -msgstr "b" - -#: TurtleArtActivity.py:895 -#, fuzzy -msgid "s" -msgstr "b" - #: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 #: TurtleArtActivity.py:1121 msgid "Plugin could not be installed." @@ -1094,20 +2947,10 @@ msgstr "" msgid "Port" msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -#, fuzzy -msgid "Password" -msgstr "Lösenord:" - #: gnome_plugins/collaboration_plugin.py:302 msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "färg" - #: 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 @@ -1128,31 +2971,10 @@ msgid "" "your project." msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Användarnamn:" - -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Lösenord:" - -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "titel" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Beskrivning:" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Avbryt" - #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "" @@ -1179,11 +3001,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "ljud" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1199,24 +3016,11 @@ msgstr "" msgid "microphone input volume" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "lutning" - #: plugins/audio_sensors/audio_sensors.py:120 #: plugins/audio_sensors/audio_sensors.py:128 msgid "microphone input pitch" msgstr "" -#: 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 "resistans" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1224,13 +3028,6 @@ msgstr "resistans" msgid "microphone input resistance" msgstr "" -#: 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 "spänning" - #: plugins/audio_sensors/audio_sensors.py:158 #: plugins/audio_sensors/audio_sensors.py:172 #: plugins/audio_sensors/audio_sensors.py:186 @@ -1243,15 +3040,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1283,100 +3071,23 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#, fuzzy -msgid "while" -msgstr "Vitt" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -#, fuzzy -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "" -"om-så-annars operatör som använder booleanska operatörer från Nummer-" -"paletten" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 msgid "until" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -#, fuzzy -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "" -"om-så-annars operatör som använder booleanska operatörer från Nummer-" -"paletten" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "topp" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "dagbok" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "mediaobjekt från Sugar-Dagboken" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "Ljud" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "ljudobjekt från Sugar-Dagboken" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "ljudobjekt från Sugar-Dagboken" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -#, fuzzy -msgid "description" -msgstr "Beskrivning:" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Förklaringsfält för Sugar-Journalen" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "visa" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -#, fuzzy -msgid "draws text or show media from the Journal" -msgstr "rita text eller visa media från dagboken" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "ange skala" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -#, fuzzy -msgid "sets the scale of media" -msgstr "Sätt skalan på mediet" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 msgid "save picture" msgstr "" @@ -1398,10 +3109,6 @@ msgstr "" msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "skala" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1500,20 +3207,6 @@ msgstr "" msgid "query keyboard" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "" -"förfrågan för tangentbordsinmatning (resultat sparas i tangentbord blocket)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "Tangentbord" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "innehåller resultat från förfrågan-tangentbord blocket" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 msgid "read pixel" msgstr "" @@ -1530,62 +3223,14 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -#, fuzzy -msgid "Palette of extra options" -msgstr "palett med extra alternativ" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "lägg till sist" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -#, fuzzy -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "för värdet till FILO (first-in-last-out) stacken" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "visa stapel" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -#, fuzzy -msgid "shows values in FILO (first-in last-out heap)" -msgstr "för värdet till FILO (first-in-last-out) stacken" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "töm stapel" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "ta bort" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -#, fuzzy -msgid "pops value off FILO (first-in last-out heap)" -msgstr "för värdet till FILO (first-in-last-out) stacken" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "töm stapel" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" @@ -1600,14 +3245,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "skriv" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "skriver ut värde i statusblock vid botten av skärmen" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 msgid "Python chr operator" msgstr "" @@ -1646,12 +3283,6 @@ msgstr "" msgid "Python block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "kör kod ur tamyblock.py modulen som finns i Dagboken" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 msgid "Cartesian" msgstr "" @@ -1668,12 +3299,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -#, fuzzy -msgid "turtle" -msgstr "Sköldpadda" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1698,18 +3323,6 @@ msgstr "" msgid "load" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "läs in mitt block" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "ange x,y" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1718,25 +3331,6 @@ msgstr "" msgid "selects a palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -#, fuzzy -msgid "Palette of presentation templates" -msgstr "palett med presentationsmallar" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "dölj block" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -#, fuzzy -msgid "declutters canvas by hiding blocks" -msgstr "rensa duken genom att gömma block" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -#, fuzzy -msgid "show blocks" -msgstr "Visa block" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1754,70 +3348,6 @@ msgstr "" msgid "presentation bulleted list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -#, fuzzy -msgid "presentation template: list of bullets" -msgstr "presentationsmall: sju punkter" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "presentationsmall: välj Dagboksobjekt (ingen förklaring)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "presentationsmall: välj Dagboksobjekt (med förklaring)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "presentationsmall: välj fyra Dagboksobjekt" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "presentationsmall: välj två Dagboksobjekt" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "x-koordinaten för skärmens vänstra sida" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "botten" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "y-koordinaten för skärmens nedre sida" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "bredd" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "dukens bredd" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "x-koordinaten för skärmens högra sida" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "y-koordinaten för skärmens övre sida" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "höjd" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "dukens höjd" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 msgid "title x" msgstr "" @@ -1838,32 +3368,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "botten" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -#, fuzzy -msgid "presentation 1x1" -msgstr "presentation" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -#, fuzzy -msgid "presentation 2x1" -msgstr "presentation" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -#, fuzzy -msgid "presentation 1x2" -msgstr "presentation" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -#, fuzzy -msgid "presentation 2x2" -msgstr "presentation" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1891,20 +3395,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "topp" - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "Spara" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1925,40 +3419,15 @@ msgstr "" msgid "No option action:" msgstr "" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "Hittar inte filen" - #: turtleblocks.py:279 #, python-format msgid "Configuration directory not writable: %s" msgstr "" -#: turtleblocks.py:354 -msgid "New" -msgstr "Ny" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "Öppna" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Spara" - -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Spara som" - #: turtleblocks.py:362 msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "Fil" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" @@ -1971,18 +3440,6 @@ msgstr "" msgid "Show/hide blocks" msgstr "" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Verktyg" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Felsök" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Sköldpadda" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1995,26 +3452,6 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "density" -#~ msgstr "identititet" - -#, fuzzy -#~ msgid "light" -#~ msgstr "höger" - -#, fuzzy -#~ msgid "sensor" -#~ msgstr "Sensorer" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "rest" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Exempel" - #~ msgid "Save as HTML" #~ msgstr "spara som HTML" @@ -2060,7 +3497,8 @@ msgstr "" #~ msgstr "textstorlek" #~ msgid "holds current text color (can be used in place of a number block)" -#~ msgstr "håller nuvarande textfärg (kan användas istället för ett nummerblock)" +#~ msgstr "" +#~ "håller nuvarande textfärg (kan användas istället för ett nummerblock)" #, fuzzy #~ msgid "flow" @@ -2098,7 +3536,8 @@ msgstr "" #~ "håller nuvarande penn-nyans (kan användas istället för ett nummberblock)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" #~ "ett programmeringsbart block: lägg till din egen matematik ekvation i " #~ "blocket, t.ex. sin(x)" diff --git a/po/sw.po b/po/sw.po index 83edab3..ceab954 100644 --- a/po/sw.po +++ b/po/sw.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# sw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sw.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# sw.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# sw.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1642 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "rekebu-kijivu" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "Umbali" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "Kuacha Butia" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "urefu" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "Upana" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "kitambulisho" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "haki" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "sauti" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "wakati" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Hatua" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "orodha" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "video" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "ijayo" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +#, fuzzy +msgid "description" +msgstr "Maelezo:" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "vuli" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "turtle" + +#: turtleblocks.py:356 +#, fuzzy +msgid "Save" +msgstr "kuokoa" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "ila kama Logo" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "idadi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "juu" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Kufuta" + +#: turtleblocks.py:363 +msgid "File" +msgstr "Faili" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "screen kamili" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "maandishi" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "kuacha" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Msaada" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "baobonye" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "sawa" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "kucheza" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "kuokoa" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Kuacha" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Nakili" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Kuweka" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "sauti" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "kushoto" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle sanaa" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "Ondoka" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Maelezo:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "shajara" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Kuacha turtle" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Turtle" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "tawsira" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "kuanza" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "mbele" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "Kuokoa..." + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#, fuzzy +msgid "fill screen" +msgstr "skrini nzima" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "ila kama" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Hariri" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -32,12 +1693,6 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "mbele" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" @@ -58,11 +1713,6 @@ msgstr "" msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "kushoto" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -96,14 +1746,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -154,24 +1796,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#, fuzzy -msgid "fill screen" -msgstr "skrini nzima" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "vuli" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -403,10 +2027,6 @@ msgstr "" msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "idadi" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -427,10 +2047,6 @@ msgstr "" msgid "logical less-than operator" msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "sawa" - #: TurtleArt/tabasics.py:699 msgid "logical equal-to operator" msgstr "" @@ -544,25 +2160,10 @@ msgstr "" msgid "Palette of variable blocks" msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "kuanza" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "maandishi" - #: TurtleArt/tabasics.py:856 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 msgid "string value" @@ -624,10 +2225,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -712,11 +2309,6 @@ msgstr "" msgid "Title" msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Kuacha turtle" - #: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 msgid "Show blocks" @@ -754,10 +2346,6 @@ msgstr "" msgid "Load..." msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "Kuokoa..." - #: TurtleArt/tautils.py:483 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 msgid "click to open" @@ -767,10 +2355,6 @@ msgstr "" msgid "orientation" msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "ijayo" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -786,19 +2370,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle sanaa" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "tawsira" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "ila kama Logo" - #: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 #: TurtleArtActivity.py:850 turtleblocks.py:358 msgid "Save as image" @@ -838,11 +2409,6 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Hariri" - #: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 #: TurtleArtActivity.py:747 turtleblocks.py:382 msgid "View" @@ -857,23 +2423,10 @@ msgstr "" msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Nakili" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Kuweka" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "screen kamili" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -907,18 +2460,6 @@ msgstr "" msgid "Run" msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Hatua" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Msaada" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Kuacha" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1066,18 +2607,10 @@ msgstr "" msgid "Title:" msgstr "" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Maelezo:" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Kufuta" - #: gnome_plugins/uploader_plugin.py:166 msgid "Login failed" msgstr "" @@ -1104,11 +2637,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "sauti" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2663,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2689,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1226,45 +2738,22 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "juu" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "shajara" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "sauti" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "video" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -#, fuzzy -msgid "description" -msgstr "Maelezo:" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 msgid "Sugar Journal description field" msgstr "" @@ -1419,10 +2908,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "baobonye" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1443,10 +2928,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "wakati" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1576,11 +3057,6 @@ msgstr "" msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "turtle" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "" @@ -1647,10 +3123,6 @@ msgstr "" msgid "hides the Sugar toolbars" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "orodha" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" @@ -1695,10 +3167,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "Upana" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1711,10 +3179,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "urefu" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1787,18 +3251,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "kuacha" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "kucheza" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "kuokoa" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1836,23 +3288,6 @@ msgstr "" msgid "Open" msgstr "" -#: turtleblocks.py:356 -#, fuzzy -msgid "Save" -msgstr "kuokoa" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "ila kama" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "Ondoka" - -#: turtleblocks.py:363 -msgid "File" -msgstr "Faili" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" @@ -1873,10 +3308,6 @@ msgstr "" msgid "Debug" msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Turtle" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1889,23 +3320,6 @@ msgstr "" msgid "Save project?" msgstr "" -#~ msgid "grayscale" -#~ msgstr "rekebu-kijivu" - -#~ msgid "distance" -#~ msgstr "Umbali" - -#~ msgid "stop Butia" -#~ msgstr "Kuacha Butia" - -#, fuzzy -#~ msgid "density" -#~ msgstr "kitambulisho" - -#, fuzzy -#~ msgid "light" -#~ msgstr "haki" - #~ msgid "Save as HTML" #~ msgstr "ila kama HTML" diff --git a/po/ta.po b/po/ta.po index 37e8358..0a43e9f 100644 --- a/po/ta.po +++ b/po/ta.po @@ -1,13 +1,50 @@ +# #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1507 +59,1728 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "ஆமை நிறப்பட்டையின் கட்டளைகள்" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "டர்டலின் மிகச்சிறிய கலை" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "முன்னோக்கி அனுப்பு" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "டர்டலின் குழப்பம்" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "ஆமையை முன்னோக்கி நகர்த்து" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "கடினமானதை தெரிவு செய்" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "பின்னால்" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "ஆமையை பின் நகர்த்து" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "Mexican pesos யின் தட்டு" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "சுத்தம்" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "Colombian pesos யின் தட்டு" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "திரையை தூய்மைப்படுத்து மற்றும் ஆமையை பாழையதாக்கு" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "Rwandan francs யின் தட்டு" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "இடது" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "ஆமையை கடிகார சுழற்சியில் திரும்பியது (கோணம் டிகிரி அளவில்)" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "வலது" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "ஆமையானது கடிகார திசையில் திரும்புகிறது (கோணம் டிகிரியில்)" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "வில்" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "கோணம்" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "குறை" +#: taextras.py:66 +#, fuzzy +msgid "adjust LED intensity between 0 and 255" +msgstr "" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"0 மற்றும் 255 க்கும் இடையில் LED ன் ஒளிஅளவை சரிசெய்." -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "ஆமையானது வளைவு கோட்டை ஒட்டி நகர்கிறது" +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "ஒழுங்கு படுத்துக" +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "எக்ஸ்" +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:71 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "xcor,ycor:(0,0) நிலைக்கு ஆமை நகர்கிறது. இது திரையின் மையப்பகுதியாகும்" - -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "தலைப்பை ஒழுங்கு செய்" - -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "ஆமையின் தலைப்பை வை (0 ஆனது திரையின் உச்சை நேக்குகிறது.)" - -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" msgstr "" -"தற்ப்போது ஆமையின் x-coordinate மதிப்பைக் கொண்டுள்ளது (எண் மாறிலி தொகுதி " -"இடத்தில் பயன்படுத்தலாம்)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "வை கோ" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" msgstr "" -"தற்ப்போது ஆமையின் ல-coordinate மதிப்பைக் கொண்டுள்ளது (எண் மாறிலி தொகுதி " -"இடத்தில் பயன்படுத்தலாம்)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "தலைப்பு" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:77 +msgid "LED" msgstr "" -"தற்ப்போதுள்ள ஆமையின் தலைப்பை பிடித்துவை(எண் தொகுதியின் இடத்தில் " -"பயன்படுத்தலாம்)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "நிறப்பட்டை எழுதுகோளின் கட்டளைகள்" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "முழுத்திரை" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "நிறம்" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "நிழல்" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "பின் பக்கத்தை உடன்(நிறம், நிழல்) நிரப்பு" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "கிறே" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "நிறத்தை ஒழுங்கு படுத்து" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "ஆமையால் வரையப்பட்ட கோட்டுக்கு நிறத்தை அமைக்கவும்" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "நிழலை ஒழுங்கு படுத்து" +#: taextras.py:86 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 "எதிர்ப்பு" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "ஆமையால் வரையப்பட்ட கோட்டடின் நிழலை அமைக்கவும்" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "கிறேவை அமை" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "ஆமையால் வரையப்பட்ட கோட்டின் மட்டத்திற்கு கிரே அளவை அமைத்தது" +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" msgstr "" -"இப்பொழுதுள்ள எழுதுகோளின் நிறம்(எண் தொகுதியின் இடத்தில் பயன்படுத்தலாம்)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "தற்ப்போதுள்ள எழுதுகோளின் நிழலை வைத்துள்ளது" +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" msgstr "" -"தற்ப்போது எழுதுகோளின் அளவை வைத்திருக்கிறது (எண்ணிலக்க தொகுதி இடத்தில் " -"பயன்படுத்திக்கொள்ள முடியும்)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "பேனை மேலே" +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "ஆமை நகர்ந்த பிறகு வரையாது" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "பேனை கீழே" +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "ஆமை நகர்ந்த பிறகு வரையும்" +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "பேனையின் அளவினை ஒழுங்குபடுத்து" +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "ஆமையால் வரையப்பட்ட கோட்டுக்கு அளவை அமைக்கவும்" +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "தொடக்க நிரப்பி" +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "ஆரம்பங்கள் பல்வடித்தை நிரப்பியது (கடைசி பகுதியுடன் பயன்படுத்தப்பட்டது)" +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "கடைசி நிரப்பல்" +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" msgstr "" -"நிரப்பற்ற ஒழுங்கற்ற வடிவம் முடிவடைகிறது (முதல் நிரம்பிய பகுதியுடன் " -"பயன்படுத்தப்பட்டது)" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "பேனை அளவு" +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:110 +msgid "turn the Butia robot at right" msgstr "" -"தற்ப்போது எழுதுகோளின் அளவை வைத்திருக்கிறது (எண்ணிலக்க தொகுதி இடத்தில் " -"பயன்படுத்திக்கொள்ள முடியும்)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "பட்டைகளாக எழுதுகொளின் நிறம்" +#: taextras.py:111 +msgid "turn Butia" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "சிவப்பு" +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "ஆரஞ்சு" +#: taextras.py:113 +msgid "stop Butia" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "மஞ்சள்" +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "பச்சை" +#: taextras.py:115 +msgid "Butia" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "ஆகாய நிறம்" +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "நீலம்" +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "பழுப்பு" +#: taextras.py:121 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "வெள்ளை" +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "தடு" +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "உரைக்கான நிறத்தை தெரிவு செய்" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "ஆமையால் வரையப்பட்ட உரையின் நிறத்தை அமைத்தது" +#: taextras.py:126 +msgid "FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "உரை அளவினை ஒழுங்குபடுத்து" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "ஆமையால் வரையப்பட்ட உரையின் அளவை அமைத்தது" +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "பட்டை எண்ணியக்கிகள்" +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "கூட்டல்" +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "இரண்டு ஆஃல்பா எண்ணிலக்க உள்ளீடுகள் சேர்க்கப்படுகிறது" +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "கழித்தல்" +#: taextras.py:133 +msgid "follow" +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" +#: taextras.py:134 +msgid "follow a color or calibration" msgstr "" -"மேல் மட்ட உள்ளீட்டு எண்ணிலிருந்து கீழ் அடிமட்ட உள்ளீட்டு எண்ணானது " -"கழிக்கப்படுகிறது" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "பெருக்கல்" +#: taextras.py:135 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 "வெளிச்சம்" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "இரட்டிப்பகளில் இரண்டு எண்ணிலக்க உள்ளீடுகள்" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "பிரி" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" msgstr "" -"அடியிலுள்ள(கீழெண்) எண்ணிலக்கத்தை உச்சி(மேலெண்) எண்ணிலக்கத்தை கொண்டு பிரி" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "அடையாளம்" +#: taextras.py:139 +msgid "threshold" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "அடையாள இயக்குனர் தொகுதிகளை நீட்டிக்க பயன்படுகிறார்" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "புதுப்பி" +#: taextras.py:142 +msgid "camera mode" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "மாறும்(மீதமுள்ள) இயக்கி" +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "இரட்டிப்பு வீதம்" +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "இரட்டை வீத்தை கணிக்கவும்" +#: taextras.py:147 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "எழுமாறாக" +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "மிகக்குறைய" +#: taextras.py:149 +msgid "x position" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "மிகக்கூடிய" +#: taextras.py:150 +msgid "return x position" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "மிக-அதிக மற்றும் மிக-குறைவு எண்களுக்கிடையே எழுமாறான எண் கிடைக்ப்பெறும்" +#: taextras.py:151 +msgid "y position" +msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "எண்" +#: taextras.py:152 +msgid "return y position" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "கணித இயக்கிகளில் எண்ணிலக்கங்கள் உள்ளீடாக பயன்படுத்தப்படுகிறது" +#: taextras.py:153 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "இதைவிட அதிகம்" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "லாஜிக்கல் மிகை எண்" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "இதற்க்கு குறைவாக" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "லாஜிக்கல் less-than இயக்கி" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "சமம்" +#: taextras.py:161 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "லாஜிக்கல் சமநிலை செயலி" +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "இல்லை" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "லாஜிக்கல் இயக்கி" +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "உடன்" +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "சரியான அன்டு இயக்குனர்" +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "அல்லது" +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "லாஜிக்கல் NOT இயக்கி" +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "செயலிகள் செல்லும் பட்டை" +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "பொறு" +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "ஒரு குறிப்பிட்ட வினாடிகளுக்கு நிரலின் இயக்கமானது இடைநிறுத்தப்படுகிறது" +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "எப்போதும்" +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "எப்பொழுதும் தொடர்படுத்து" +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr ", திருப்பிச்செய்" +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "தொடர்படுத்தல் எத்தனை மறை என்பது குறிப்பிடப்படுகின்றது" +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "எனின்" +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "அதன்பின்" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "இப்படியானால்" +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" msgstr "" -"if-then இயக்குனர் பூலியன் இயக்குனரை பட்டை எண்களிலிருந்து பயன்படுத்திகிறார்" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "வேறு" +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "இப்படியானால் என்ன" +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" msgstr "" -"if-then-else இயக்குனர் பூலியன் இயக்குனரை பட்டை எண்களிலிருந்து " -"பயன்படுத்திகிறார்" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "கிடைமட்ட வெளி" +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "இடது அடுக்கின் ஜாக்ஸ்" +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "நெடு வெளி" +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "ஜேகஸ் அடுக்கு கீழே" +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "செயலை நிறுத்து" +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "தற்ப்போது செயலை நுறுத்துகிறது" +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "மாறிலிகளின் தொகுதி பட்டை" +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "ஆரம்பி" +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "பொத்தான்களை இயக்கி கருவிப்பட்டைக்கு செயல்களை இணைக்கிறது" +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "உரை" +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "வார்த்தை மதிப்பு" +#: taextras.py:212 +msgid "distance to center" +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "செயற்படு" +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "பெயற்சொல்லும் செயலின் உச்சி அடுக்கு" +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "பெயருள்ள செயல் அடுக்கை தூண்டுகிறது" +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "1 வது பெட்டியில் சேமி" +#: taextras.py:217 +msgid "update information" +msgstr "" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "மாறிலி 1 ல் எண்ணிலக்க மதிப்பு சேமிக்கப்படுகின்றன." +#: taextras.py:218 +msgid "update information from the server" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "2 ஆவது பெட்டியில் சேமி" +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "பட்டைகளின் உணரும் பகுதி" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "மாறிலி 2 ல் எண்ணிலக்க மதிப்பு சேமிக்கப்படுகின்றன." +#: taextras.py:224 +msgid "start polygon" +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "முதலாவது பெட்டி" +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "மாறிலி 1 (எண்மதிப்பு)" +#: taextras.py:227 +msgid "add point" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "இரண்டாவது பெட்டி" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "மாறிலி 2 (எண்மதிப்பு)" +#: taextras.py:230 +msgid "end polygon" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "சேமிப்புக்கலனில்" +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "பெட்டி" +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "மதிப்பு" +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "என் பெட்டி" +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "பெயரிடப்பட்ட மாறிலியில் எண்ணிலக்க மதிப்பு சேமிக்கப்படுகின்றன." +#: taextras.py:235 +msgid "triangle" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "பெயர்களின் மாறிலி(எண்மதிப்பு)" +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "செயற்படு 1" +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "உயரம்" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "உச்சி செயல் 1ன் அடுக்கு" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "செயற்படு 2" +#: taextras.py:240 +msgid "circle" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "உச்சி செயல் 2ன் அடுக்கு" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "செயல் அடுக்கு 1 தூண்டல்" +#: taextras.py:242 +msgid "rectangle" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "செயல் அடுக்கு 2 தூண்டல்" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "அகலம்" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "குப்பை" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "குப்பையை துய்மையாக்கு" +#: taextras.py:246 +msgid "reset" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "குப்பையில் உள்ள உருப்படிகளை நிரந்திரமாள அழி" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "எல்லாத்தையும் சேமி" +#: taextras.py:248 +msgid "motor" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "குப்பையிலிருந்து அனைத்து தொகுதிகளையும் திரும்பச்சேமி" +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "எல்லாத்தையும் நீக்கு" +#: taextras.py:251 +msgid "speed" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "எல்லா அடைக்கிகளையும் குப்பைக்கு நகர்த்து" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" +#: taextras.py:254 taextras.py:417 +msgid "pin" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "தலைப்பு" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "ஆமையை நிறுத்து" +#: taextras.py:256 +msgid "joint" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "தொகுதிகளைக்காட்டு" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "எக்ஸ்" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "தொகுதிகளை மறை" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "வெளியீடு வெளியீடி இல்லவே இல்லை" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "எப்படி என்று எனக்கு தெறியாது" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "பிடிக்காது" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "உள்ளீடாக" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "அடுத்த நிறப்பட்டையை தெறியப்படுத்து" +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "நிறப்பட்டைகளின் தொகுதி ஒத்தமைந்த மாற்றங்கள்" +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "அடையாளம்" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "ஏற்று..." +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "சேமி..." +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "திறப்பதற்கு சொடுக்கவும்" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "ஒத்தமைவு" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "அடுத்து" +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" msgstr "" -#: TurtleArt/tawindow.py:1256 +#: taextras.py:278 msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "பட்டைகளின் உணரும் பகுதி" + +#: taextras.py:285 +msgid "WeDo" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "ஆமைச்சித்திரம்" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "படம்" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "சிறிய படமாக சேமி" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "படமாக சேமி" +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "மாதிறி எடுத்தல்" +#: taextras.py:294 +msgid "Motor A" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "எடுத்த மாதிறியை சேமிக்கவும்" +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" +#: taextras.py:296 +msgid "Motor B" msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" +#: taextras.py:297 +msgid "returns the current value of Motor B" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "நிறப்பட்டையை காட்டு" +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "நிறப்பட்டையை மறை" +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "கீழ் நோக்கிய இணைப்புள்ளிகளை மறுஅளவீடவும்" +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "மேழ் நோக்கிய இணைப்புள்ளிகளை மறுஅளவீடவும்" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "திருத்து" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "பார்" +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "செயற்றிட்டம்" +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "பிரதி செய்" +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "ஒட்டு" +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "நிறம்" -#: TurtleArtActivity.py:591 +#: taextras.py:318 #, fuzzy -msgid "Restore blocks from trash" -msgstr "குப்பையிலிருந்து அனைத்து தொகுதிகளையும் திரும்பச்சேமி" +msgid "light" +msgstr "வலது" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "முழுத்திரை" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "சத்தம்" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "கார்டீஷியன் இணைப்புள்ளிகள்" +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "கிறே" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "போலார் இணைப்புள்ளிகள்" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "அளவியல் இணைப்புள்ளிகள்" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "தொகுதியை வளர்" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "தொகுதியை சுருக்கு" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "உதாரணத்தை ஏற்று" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "சுத்தமக்கு" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "இயக்கு" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "படி" +#: taextras.py:329 +msgid "NXT not found" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "உதவி" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "நிறுத்து" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" +#: taextras.py:332 +msgid "Search for a connected NXT brick." msgstr "" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" +#: taextras.py:333 +msgid "NXT" msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "பைத்தான் அடைப்பை ஏற்று" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArtActivity.py:766 -msgid "Palettes" +#: taextras.py:335 +msgid "number of NXT devices" msgstr "" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" +#: taextras.py:336 +msgid "brick name" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: taextras.py:338 +msgid "play tone" +msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: taextras.py:339 +msgid "frequency" +msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "நேரம்" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" msgstr "" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "நுழைவு" + +#: taextras.py:345 +msgid "power" msgstr "" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" +#: taextras.py:348 +msgid "turn a motor" msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "என்னுடைய டர்டல் கலை பகுதி நேரம்" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "தொகுப்பிணைப்புகளை தோற்றுவி" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "செயற்பாடுகள்" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "நண்பர்கள்" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "பங்கீடு" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "கட்டமைப்பு" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "அயல்" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "புனைப்பெயர்" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "கணக்கு குறியெண்" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "வழங்கி (கணினி)" +#: taextras.py:358 +msgid "start motor" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "நுழைவு" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "கடவுச்சொல்" +#: taextras.py:360 +msgid "brake motor" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "பதிவு" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "நிறங்கள்" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" -#: 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 "பதிவேற்று" +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +#: taextras.py:365 +msgid "motor position" msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "இணையத்திற்கு எற்று" +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +#: taextras.py:367 +msgid "PORT 1" msgstr "" -"திட்டங்களை http://turtleartsite.sugarlabs.org இந்த தளத்தில் எற்ற அதில் " -"கட்டாயம் ஒரு கணக்கு வைத்திருக்க வேண்டும்." -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "பயனர்பெயர்:" +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "கடவுச்சொல்:" +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "சிவப்பு" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "தலைப்பு:" +#: taextras.py:370 +#, fuzzy +msgid "sensor" +msgstr "" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"உணரும் கருவிகள்" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "விரிவாக்கம்:" +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "இணையதடதிற்கு அளிக்கவும்" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "இரத்துசெய்" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "நுழைவு தோழ்வியுற்றது" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "எற்றம் தோழ்வியில்!" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "பட்டைகளின் உணரும் பகுதி" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "கூட்டல்" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" +#: taextras.py:378 +msgid "touch sensor" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "சத்தம்" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "உண்மையான ஒலிவாங்கியின் உள்ளீட்டு ஒலி" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "சத்தமான.." +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "ஒலிவாங்கியில் உள்ளீடு சத்தத்தினளவு" +#: taextras.py:382 +msgid "sound sensor" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "சுருதி" +#: taextras.py:383 +msgid "color sensor" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "ஒலி வாங்கியின் உள்ளீட்டு சுருதி" +#. 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:386 +msgid "set light" +msgstr "" -#: 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 "எதிர்ப்பு" +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" -#: 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 "ஒலிவாங்கியில் உள்ளீட்டு எதிர்ப்பு" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" -#: 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 "மின்னழுத்தம்" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" -#: 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 "ஒலிவாங்கியில் உள்ளீடு சத்த மின்னளவு" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "ஊடக பொருட்களின் பட்டை" +#: taextras.py:396 +msgid "LOW" +msgstr "" -#: 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 "வெளிச்சம்" +#: taextras.py:397 +msgid "INPUT" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "புகைப்பட கருவியின் ஓளி அளவு உணரப்பட்டது" +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" -#: 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 "புகைப்பட கருவியிலிருந்து சமமான RGB வண்ணம் அடுக்கிக்கு தள்ளப்பட்டது" +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" -#: 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 "புகைப்பட கருவி வெளியீடு" +#: taextras.py:401 +msgid "SERVO" +msgstr "" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "ஒளி உணர்வானால் ஒளியின் அளவு அறியப்பட்டது" +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "RFID கருவியிலிருந்து மதிப்பை படிக்கவும்" +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "நிகழும்போது" +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" +#: taextras.py:406 +msgid "refresh Arduino" msgstr "" -"எண்கள் நிறப்பட்டையிலிருந்து பூலியன் இயக்கிகளை பயன்படுத்தும் இயக்கி do-while-" -"True எனப்படுகிறது" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "இதுவரை" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" +#: taextras.py:408 +msgid "Arduino" msgstr "" -"எண்கள் நிறப்பட்டையிலிருந்து பூலியன் இயக்கிகளை பயன்படுத்தும் இயக்கி do-until-" -"True" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "உச்சி" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "களையும் அடுக்கின் உச்சி" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "சஞ்சிகை" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "சுகர் சஞ்சிகை ஊடகப்பொருள்" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "ஒலி" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "சுகர் சஞ்சிகையின் ஒலி பொருள்" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "காணொளி Video" +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "புதுப்பி" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "சுகர் சஞ்சிகையின் ஒலி பொருள்" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "விரிவாக்கம்:" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "சுகர் சஞ்சிகை விரிவாக்க புலம்" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "மதிப்பு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "காட்டு" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "உரையை வரை (அ) சஞ்சிகையிலிருந்து உடகத்தைக் காட்டு" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "ஒத்தமைவை காண்பி" +#: taextras.py:424 +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 "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "அளவீடுகளை ஒழுங்கு படுத்து" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "ஊடகத்தின் அளவை அமை" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "படத்தை சேமி" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "படத்தின் தலைப்பு" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "சுகர் சஞ்சிகைக்கு ஒரு படத்தை சேமிக்கவும்" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG ஆக சேமி" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "சுகர் சஞ்சிகையில் ஆமை வரைபடத்தை SVG கோப்பாக சேமித்து வைக்கவும்." +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "அளவீடு" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "தற்ப்போதைய அளவீடு மதிப்பை வைத்துள்ளது" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "ஊடக தாமதம்" +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "தற்பொழுதுள்ள காணொளி Video/ ஒலி முடியும்வரை காத்திருக்கவும்" +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "பட்டைகளின் உணரும் பகுதி" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" +#: taextras.py:443 +msgid "set programmable voltage output" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" +#: taextras.py:446 +msgid "set square wave 1 voltage output" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" +#: taextras.py:449 +msgid "set square wave 2 voltage output" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" msgstr "" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" +#: taextras.py:465 +msgid "capture" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -msgid "returns True if mouse button is pressed" +#: taextras.py:466 +msgid "input" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" +#: taextras.py:467 +#, fuzzy +msgid "samples" msgstr "" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-#\n" +"மாதிரிகள்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" +#: taextras.py:468 +msgid "interval" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "விசைப்பலகை கேள்வி" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" msgstr "" -"விசைப்பலகையை உள்ளீடுக்காக கேள் (முடிவுகள் விசைப்பலகை தொகுதியில் " -"சேமிக்கப்பட்டுள்ளது)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "விசைப்பலகை" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "முடிவுகள் விசைப்பலகை தொகுதியில் அடக்கப்பட்டுள்ளது" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "புள்ளியை படி" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "RGB நிறமானது டர்டிலிக்கு கீழடுக்கில் தள்ளப்பட்டது" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "டர்டல் பார்க்கிறது" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "டர்டல் அது `பார்க்கிற` வண்ணத்தை திருப்பும்" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "நேரம்" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "நிகழ்ச்சியானது தொடங்கியதிலிருந்து முடிந்த காலம் (நொடிகளில்)" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "பட்டைகளின் அதிகமான விருப்பங்கள்" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "தள்ளு" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" +#: taextras.py:492 +msgid "read square wave 2 voltage" msgstr "" -"பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை)வில் மதிப்புகள் " -"தள்ளப்படுகின்றன." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "குவியலைக்காட்டு" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" +#: taextras.py:495 +msgid "read programmable voltage" msgstr "" -"பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை)வின் மதிப்புகளை காட்டுகிறது" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "வெற்றுக்குவியல்" +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "தலைப்பு" + +#: 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 "புகைப்பட கருவியிலிருந்து சமமான RGB வண்ணம் அடுக்கிக்கு தள்ளப்பட்டது" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "மஞ்சள்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "போலார் இணைப்புள்ளிகளை தெறியப்படுத்து" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "காலியான FILO(முதலில் வந்தது கடைசியில் போகும் அடுக்கி)" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "வரல்" +#: 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 "புகைப்பட கருவி வெளியீடு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "" -"பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை) மதிப்பை வெளிவாங்குகிறது" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "if-then இயக்குனர் பூலியன் இயக்குனரை பட்டை எண்களிலிருந்து பயன்படுத்திகிறார்" + +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "இடது அடுக்கின் ஜாக்ஸ்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "சுகர் சஞ்சிகை ஊடகப்பொருள்" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "இரண்டாவது பெட்டி" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "முதலாவது பெட்டி" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "படி" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "இரட்டிப்பகளில் இரண்டு எண்ணிலக்க உள்ளீடுகள்" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "பிரிவுகளை காட்டு/மறை" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "நிறப்பட்டையை மறை" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "நண்பர்கள்" + +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "என்னுடைய டர்டல் கலை பகுதி நேரம்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "சுகர் சஞ்சிகையின் ஒலி பொருள்" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "ஆகாய நிறம்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "வலது திரையின் xcor" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "பட்டைகளின் அதிகமான விருப்பங்கள்" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "உதாரணத்தை ஏற்று" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "எல்லா அடைக்கிகளையும் குப்பைக்கு நகர்த்து" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "பட்டியல்" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "கட்டமைப்புகளின் அடைவுக்கு எழுதும் உறிமை இல்லை: %s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "தலைப்பு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "சுகர் சஞ்சிகையில் ஆமை வரைபடத்தை SVG கோப்பாக சேமித்து வைக்கவும்." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "உரையை வரை (அ) சஞ்சிகையிலிருந்து உடகத்தைக் காட்டு" + +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "காணொளி Video" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "நீலம்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "கார்டீஷியன் இணைப்புள்ளிகளை தெறியப்படுத்து" + +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "செயல் என்ற தேர்வில்லை:" + +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "ஜேகஸ் அடுக்கு கீழே" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "மாறும்(மீதமுள்ள) இயக்கி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "அடிப்க்க y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "SVG ஆக சேமி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "இயக்க குறி tamyblock.py லும் படிமம் சஞ்சிகையிலிருந்தும் கண்டுபிடிக்கப்பட்டன" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "பேனை கீழே" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "பொறு" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "பெட்டி" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "எற்றம் தோழ்வியில்!" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "பெயருள்ள செயல் அடுக்கை தூண்டுகிறது" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "செயற்படு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "எண்கள் நிறப்பட்டையிலிருந்து பூலியன் இயக்கிகளை பயன்படுத்தும் இயக்கி do-until-True" + +#: turtleblocks.py:86 +msgid "usage is" +msgstr "பயன்பாடு என்பது" + +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "மாறிலி 2 (எண்மதிப்பு)" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "பிரி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "படத்தின் தலைப்பு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "நிகழும்போது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "சாளர அகலம்" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 @@ -1530,41 +1788,43 @@ msgstr "" msgid "empty heap?" msgstr "வெற்றுக்குவியல்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "பெயர்களின் மாறிலி(எண்மதிப்பு)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "கருத்து தெறிவி" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "அடுத்து" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "உங்களின் குறிகளில் கருத்துக்களை இடு" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "இப்படியானால்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "அச்சு" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "பேனையின் அளவினை ஒழுங்குபடுத்து" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "திரையின் அடிப்பக்க தொகுதியில் நிலைமாறலின் மதிப்ப அச்சடிக்கப்படுகிறது" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "அளிக்கை மாதிரி: சஞ்சிகை பொருளை தெரிவு செய் (விரிவாக்கமில்லாமல்)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "இதுவரை" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "குப்பையில் உள்ள உருப்படிகளை நிரந்திரமாள அழி" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "பைத்தன்" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "ப வளைவு" + +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "உச்சி செயல் 1ன் அடுக்கு" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" @@ -1574,21 +1834,354 @@ msgstr "" "ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய தனித்த-மாறிலி கணித வாய்ப்பாடுகளை " "சேர்க்கப்பயன்படுகிறது, எ.கா. sin(x)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "செயலிகள் செல்லும் பட்டை" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "களைந்த அடுக்கின் உச்சி" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "if-then-else இயக்குனர் பூலியன் இயக்குனரை பட்டை எண்களிலிருந்து பயன்படுத்திகிறார்" + +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "தற்ப்போதுள்ள எழுதுகோளின் நிழலை வைத்துள்ளது" + +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "நுழைவு தோழ்வியுற்றது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "இடது x" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "தலைப்பை ஒழுங்கு செய்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "RGB நிறமானது டர்டிலிக்கு கீழடுக்கில் தள்ளப்பட்டது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "தொகுதிகளை மறைப்பதினால் சாளரத்தை வெட்டாத" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "கிடைமட்ட வெளி" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "அளவியல் இணைப்புள்ளிகள்" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "வார்த்தை மதிப்பு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "விரிவாக்கம்:" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "எப்படி என்று எனக்கு தெறியாது" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "உரை அளவினை ஒழுங்குபடுத்து" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "பயனர்பெயர்:" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "ஆரம்பங்கள் பல்வடித்தை நிரப்பியது (கடைசி பகுதியுடன் பயன்படுத்தப்பட்டது)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "அளிக்கை மாதிரி: நான்கு சஞ்சிகை பொருட்களை தெரிவு செய்" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "பார்" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "ஆமையால் வரையப்பட்ட கோட்டின் மட்டத்திற்கு கிரே அளவை அமைத்தது" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "கடவுச்சொல்:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "டர்டல் பார்க்கிறது" + +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "செயலை நிறுத்து" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "பச்சை" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "நிழல்" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "பின் பக்கத்தை உடன்(நிறம், நிழல்) நிரப்பு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "படத்தை சேமி" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "சுருதி" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "மேழ் நோக்கிய இணைப்புள்ளிகளை மறுஅளவீடவும்" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "பேனை மேலே" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "ஆரஞ்சு" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "ஒரு குறிப்பிட்ட வினாடிகளுக்கு நிரலின் இயக்கமானது இடைநிறுத்தப்படுகிறது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை)வில் மதிப்புகள் தள்ளப்படுகின்றன." + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "எல்லாத்தையும் நீக்கு" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "அதன்பின்" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "பதிவு" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "இல்லை" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "இப்படியானால் என்ன" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "தற்ப்போது செயலை நுறுத்துகிறது" + +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "ஆமையானது கடிகார திசையில் திரும்புகிறது (கோணம் டிகிரியில்)" + +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" msgstr "" -"ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய பன்-மாறிலி கணித வாய்ப்பாடுகளை " -"சேர்க்கப்பயன்படுகிறது, எ.கா. sqrt(x*x+y*y)" +"தற்ப்போது எழுதுகோளின் அளவை வைத்திருக்கிறது (எண்ணிலக்க தொகுதி இடத்தில் " +"பயன்படுத்திக்கொள்ள முடியும்)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "இடது திரையின் xcor" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "பட்டை அளவை மீழச்செய்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "ஆமை" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "அடுத்த நிறப்பட்டையை தெறியப்படுத்து" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "மறைந்துள்ள தொகுதி" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "புகைப்பட கருவியின் ஓளி அளவு உணரப்பட்டது" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "லாஜிக்கல் less-than இயக்கி" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "குப்பையிலிருந்து அனைத்து தொகுதிகளையும் திரும்பச்சேமி" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "சேமி" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "1 வது பெட்டியில் சேமி" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "2 ஆவது பெட்டியில் சேமி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "சுகர் கருவிபட்டைகளை மறை" + +#: TurtleArt/tabasics.py:226 msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -"ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய பன்-மாறிலி கணித வாய்ப்பாடுகளை " -"சேர்க்கப்பயன்படுகிறது, எ.கா. sin(x+y+z)" +"தற்ப்போது ஆமையின் x-coordinate மதிப்பைக் கொண்டுள்ளது (எண் மாறிலி தொகுதி இடத்தில் " +"பயன்படுத்தலாம்)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "அச்சு" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "சிறிய படமாக சேமி" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "ஆமையால் வரையப்பட்ட கோட்டுக்கு நிறத்தை அமைக்கவும்" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "உரைக்கான நிறத்தை தெரிவு செய்" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "சத்தமான.." + +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "தொகுப்பிணைப்புகளை தோற்றுவி" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "எண்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "விசைப்பலகை கேள்வி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "உச்சி" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "இணையதடதிற்கு அளிக்கவும்" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "கார்டீஷியன் இணைப்புள்ளிகள்" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "புனைப்பெயர்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "அளவீடுகளை ஒழுங்கு படுத்து" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "வெள்ளை" + +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "பொத்தான்களை இயக்கி கருவிப்பட்டைக்கு செயல்களை இணைக்கிறது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "நிகழ்ச்சியானது தொடங்கியதிலிருந்து முடிந்த காலம் (நொடிகளில்)" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "இரத்துசெய்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "சாளர உயரம்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "அளிக்கை 2x1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "கழித்தல்" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "உடன்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "களையும் அடுக்கின் உச்சி" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "உள்ளீடாக" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1596,410 +2189,1216 @@ msgstr "" msgid "Python block" msgstr "பைத்தான் அடைக்கி" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "ஊடக தாமதம்" + +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "கூட்டல்" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" msgstr "" -"இயக்க குறி tamyblock.py லும் படிமம் சஞ்சிகையிலிருந்தும் கண்டுபிடிக்கப்பட்டன" +"தற்ப்போது எழுதுகோளின் அளவை வைத்திருக்கிறது (எண்ணிலக்க தொகுதி இடத்தில் " +"பயன்படுத்திக்கொள்ள முடியும்)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "கார்டீஷியன்" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "நிறத்தை ஒழுங்கு படுத்து" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "கார்டீஷியன் இணைப்புள்ளிகளை தெறியப்படுத்து" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "மிகக்குறைய" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "போலார்" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "எனது தொகுதியை நிரப்பு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "போலார் இணைப்புள்ளிகளை தெறியப்படுத்து" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "நிறப்பட்டை எழுதுகோளின் கட்டளைகள்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "ஆமை" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை)வின் மதிப்புகளை காட்டுகிறது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "" +"எண்கள் நிறப்பட்டையிலிருந்து பூலியன் இயக்கிகளை பயன்படுத்தும் இயக்கி do-while-True " +"எனப்படுகிறது" + +#: turtleblocks.py:363 +msgid "File" +msgstr "கோப்பு" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "லாஜிக்கல் இயக்கி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor அடிமட்ட திரை" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "அளிக்கை மாதிரி: சஞ்சிகை பொருளை தெரிவு செய் (விரிவாக்கத்துடன்)" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "பட்டை எண்ணியக்கிகள்" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "பெருக்கல்" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "எப்போதும்" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "ஆமையால் வரையப்பட்ட கோட்டடின் நிழலை அமைக்கவும்" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "மாதிறி எடுத்தல்" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "சுத்தம்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "அளிக்கை மாதிரி: இரண்டு சஞ்சிகை பொருட்களை தெரிவு செய்" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "தொகுதியை வளர்" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "முழுத்திரை" + +#: turtleblocks.py:255 +msgid "File not found" +msgstr "கோப்பை கண்டுபிடிக்கவில்லை" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "காட்டு" + +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "உரை" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "எழுமாறாக" + +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "லாஜிக்கல் மிகை எண்" + +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "ஆமையை கடிகார சுழற்சியில் திரும்பியது (கோணம் டிகிரி அளவில்)" + +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "தடு" + +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "இரட்டை வீத்தை கணிக்கவும்" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"தற்ப்போது ஆமையின் ல-coordinate மதிப்பைக் கொண்டுள்ளது (எண் மாறிலி தொகுதி இடத்தில் " +"பயன்படுத்தலாம்)" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "நிறுத்து" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "இதைவிட அதிகம்" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "உதவி" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "திட்டத்தை சேமிக்கவா?" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 msgid "chooses which turtle to command" msgstr "தெரிவுசெய் எந்த ஆமைக்கு கட்டளையிடுவதென்று" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "வலது x" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "ஆமையால் வரையப்பட்ட உரையின் நிறத்தை அமைத்தது" + +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "ஒளி உணர்வானால் ஒளியின் அளவு அறியப்பட்டது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "விசைப்பலகை" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "வில்" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "குறை" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "போலார் இணைப்புள்ளிகள்" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "நிழலை ஒழுங்கு படுத்து" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "சரியான அன்டு இயக்குனர்" + +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"திட்டங்களை http://turtleartsite.sugarlabs.org இந்த தளத்தில் எற்ற அதில் கட்டாயம் ஒரு " +"கணக்கு வைத்திருக்க வேண்டும்." + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "இயக்கு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "குவியலைக்காட்டு" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "ஆமையின் தலைப்பை வை (0 ஆனது திரையின் உச்சை நேக்குகிறது.)" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "ஒலிவாங்கியில் உள்ளீடு சத்தத்தினளவு" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "தலைப்பு:" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "ஊடக பொருட்களின் பட்டை" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "குப்பையிலிருந்து அனைத்து தொகுதிகளையும் திரும்பச்சேமி" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "மாறிலிகளின் தொகுதி பட்டை" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "கணித இயக்கிகளில் எண்ணிலக்கங்கள் உள்ளீடாக பயன்படுத்தப்படுகிறது" + +#: 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 "பதிவேற்று" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "வழங்கி (கணினி)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "அளிக்கை 2x2" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "மாறிலி 1 (எண்மதிப்பு)" + +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "அயல்" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "இரண்டு ஆஃல்பா எண்ணிலக்க உள்ளீடுகள் சேர்க்கப்படுகிறது" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "சமம்" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "வேறு" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "பிடிக்காது" + +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "" +"நீங்கள் வைத்திருக்கும் வேலை சேமிக்கப்படாதது. வெளியேறும் முன் சேமிக்க விரும்புகிறீர்களா?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "மறைந்துள்ள தொகுதிகளைக் திரும்ப வை" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "ஆமை நகர்ந்த பிறகு வரையாது" + +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "வரல்" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "பேனை அளவு" + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 msgid "turtle shell" msgstr "டர்டல் அறை" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" + +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "RFID கருவியிலிருந்து மதிப்பை படிக்கவும்" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "ஆமையானது வளைவு கோட்டை ஒட்டி நகர்கிறது" + +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "ப வளைவுவை உருவாக்கு" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "லாஜிக்கல் சமநிலை செயலி" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "பட்டைகளாக எழுதுகொளின் நிறம்" + +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "மாறிலி 1 ல் எண்ணிலக்க மதிப்பு சேமிக்கப்படுகின்றன." + +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "மாறிலி 2 ல் எண்ணிலக்க மதிப்பு சேமிக்கப்படுகின்றன." + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 msgid "put a custom 'shell' on the turtle" msgstr "டர்டல் மேல் மாற்றதகுந்த `அறை` யை வை" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "களைந்த அடுக்கின் உச்சி" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "ஆமையை பின் நகர்த்து" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "திரையின் உச்சம் ycor" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "எனது தொகுதியை நிரப்பு" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "தொகுதிகளைக்காட்டு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "ஒழுங்கு படுத்துக" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "இயக்கு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "சேமி" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "நிறங்கள்" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "ஆமையால் வரையப்பட்ட கோட்டுக்கு அளவை அமைக்கவும்" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "திற" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "ஒத்தமைவு" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "வை கோ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" msgstr "" +"ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய பன்-மாறிலி கணித வாய்ப்பாடுகளை சேர்க்கப்பயன்படுகிறது, " +"எ.கா. sqrt(x*x+y*y)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "எனின்" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "xcor,ycor:(0,0) நிலைக்கு ஆமை நகர்கிறது. இது திரையின் மையப்பகுதியாகும்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "பைத்தன்" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "நிறுத்து" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "செயற்படு 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "செயற்படு 1" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "கடைசி நிரப்பல்" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "பிரதி செய்" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "ஒட்டு" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "வெளியீடு வெளியீடி இல்லவே இல்லை" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "செயற்பாடுகள்" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "இணையத்திற்கு எற்று" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "வெற்றுக்குவியல்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை) மதிப்பை வெளிவாங்குகிறது" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "சுத்தமக்கு" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 msgid "Palette of presentation templates" msgstr "அளிக்கை மாதிரிகளின் நிறப்பட்டை" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "மறைந்துள்ள தொகுதி" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "கோணம்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "தொகுதிகளை மறைப்பதினால் சாளரத்தை வெட்டாத" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "உச்சி y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "ஒலி" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "கருவிகள்" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "இடது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "கருத்து தெறிவி" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "மேல் மட்ட உள்ளீட்டு எண்ணிலிருந்து கீழ் அடிமட்ட உள்ளீட்டு எண்ணானது கழிக்கப்படுகிறது" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "" +"விசைப்பலகையை உள்ளீடுக்காக கேள் (முடிவுகள் விசைப்பலகை தொகுதியில் சேமிக்கப்பட்டுள்ளது)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "கார்டீஷியன்" + +#: 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 "மின்னழுத்தம்" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "திரையை தூய்மைப்படுத்து மற்றும் ஆமையை பாழையதாக்கு" + +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "உண்மையான ஒலிவாங்கியின் உள்ளீட்டு ஒலி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "டர்டல் அது `பார்க்கிற` வண்ணத்தை திருப்பும்" + +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "செயல் அடுக்கு 1 தூண்டல்" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "ஆமை நிறப்பட்டையின் கட்டளைகள்" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "எப்பொழுதும் தொடர்படுத்து" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "ஒத்தமைவை காண்பி" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "ஆமைச்சித்திரம்" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "செயற்றிட்டம்" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "வலு கண்டுபிடி" + +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "கடவுச்சொல்" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "நெடு வெளி" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" +"நிரப்பற்ற ஒழுங்கற்ற வடிவம் முடிவடைகிறது (முதல் நிரம்பிய பகுதியுடன் பயன்படுத்தப்பட்டது)" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "பங்கீடு" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "இதற்க்கு குறைவாக" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "இரட்டிப்பு வீதம்" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "இணைப்புள்ளிகளை மறு அளவீடு" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 msgid "show blocks" msgstr "தொகுதியைக்காட்டு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "மறைந்துள்ள தொகுதிகளைக் திரும்ப வை" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "வெளியேறு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "சுகர் கருவிபட்டைகளை மறை" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "சுகர் சஞ்சிகை விரிவாக்க புலம்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "பட்டியல்" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "கிறேவை அமை" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" msgstr "அளைக்கை புள்ளி பட்டியலில்" +#: turtleblocks.py:354 +msgid "New" +msgstr "புதிய" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "உங்களின் குறிகளில் கருத்துக்களை இடு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "புள்ளியை படி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "அளவீடு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "அடிப்பகுதி" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "பழுப்பு" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "கீழ் நோக்கிய இணைப்புள்ளிகளை மறுஅளவீடவும்" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "திறப்பதற்கு சொடுக்கவும்" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "ஒலி வாங்கியின் உள்ளீட்டு சுருதி" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "கட்டமைப்பு" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "விரிவாக்கம்:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "சஞ்சிகை" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "குப்பையை துய்மையாக்கு" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "ஆமை நகர்ந்த பிறகு வரையும்" + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "ஏற்று..." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "சுகர் சஞ்சிகையின் ஒலி பொருள்" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "ஆமையை நிறுத்து" + +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "ஆமை" + +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "நிறப்பட்டைகளின் தொகுதி ஒத்தமைந்த மாற்றங்கள்" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "சேமிப்புக்கலனில்" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "தொகுதிகளை மறை" + +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "பைத்தான் அடைப்பை ஏற்று" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "கூட்டல்" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "அல்லது" + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 msgid "presentation template: list of bullets" msgstr "அளிக்கை மாதிரி: புள்ளிப்பட்டியல்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "அளிக்கை மாதிரி: சஞ்சிகை பொருளை தெரிவு செய் (விரிவாக்கமில்லாமல்)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "அளிக்கை மாதிரி: சஞ்சிகை பொருளை தெரிவு செய் (விரிவாக்கத்துடன்)" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "அடையாள இயக்குனர் தொகுதிகளை நீட்டிக்க பயன்படுகிறார்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "அளிக்கை மாதிரி: நான்கு சஞ்சிகை பொருட்களை தெரிவு செய்" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "தொகுதியை சுருக்கு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "அளிக்கை மாதிரி: இரண்டு சஞ்சிகை பொருட்களை தெரிவு செய்" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "ஆமையால் வரையப்பட்ட உரையின் அளவை அமைத்தது" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "இடது திரையின் xcor" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "தற்ப்போதுள்ள ஆமையின் தலைப்பை பிடித்துவை(எண் தொகுதியின் இடத்தில் பயன்படுத்தலாம்)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "அடிப்பகுதி" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "படம்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor அடிமட்ட திரை" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "மிக-அதிக மற்றும் மிக-குறைவு எண்களுக்கிடையே எழுமாறான எண் கிடைக்ப்பெறும்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "அகலம்" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "இப்பொழுதுள்ள எழுதுகோளின் நிறம்(எண் தொகுதியின் இடத்தில் பயன்படுத்தலாம்)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "சாளர அகலம்" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "நிறப்பட்டையை காட்டு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "வலது திரையின் xcor" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "சுகர் சஞ்சிகைக்கு ஒரு படத்தை சேமிக்கவும்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "திரையின் உச்சம் ycor" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "எடுத்த மாதிறியை சேமிக்கவும்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "உயரம்" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "ஆரம்பி" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "சாளர உயரம்" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "ஆமையை முன்னோக்கி நகர்த்து" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "x தலைப்பு" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "முன்னோக்கி அனுப்பு" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "y தலைப்பு" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "என் பெட்டி" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "இடது x" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "கணக்கு குறியெண்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "உச்சி y" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "பின்னால்" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "வலது x" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "ஊடகத்தின் அளவை அமை" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "அடிப்க்க y" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "தற்ப்போதைய அளவீடு மதிப்பை வைத்துள்ளது" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 msgid "presentation 1x1" msgstr "அளிக்கை 1x1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "அளிக்கை 2x1" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 msgid "presentation 1x2" msgstr "அளிக்கை 1x2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "அளிக்கை 2x2" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "பெயற்சொல்லும் செயலின் உச்சி அடுக்கு" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "பெயரிடப்பட்ட மாறிலியில் எண்ணிலக்க மதிப்பு சேமிக்கப்படுகின்றன." + +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "லாஜிக்கல் NOT இயக்கி" + +#: 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 "ஒலிவாங்கியில் உள்ளீடு சத்த மின்னளவு" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "தொடர்படுத்தல் எத்தனை மறை என்பது குறிப்பிடப்படுகின்றது" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "சேமி..." + +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "செயல் அடுக்கு 2 தூண்டல்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "ஒழுங்கு படுத்துக" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "y தலைப்பு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "x தலைப்பு" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "முழுத்திரை" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "மாற்றி சேமி" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "ஒழுங்கு படுத்துக" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "குப்பை" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "போலார்" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr ", திருப்பிச்செய்" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "தற்பொழுதுள்ள காணொளி Video/ ஒலி முடியும்வரை காத்திருக்கவும்" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "படமாக சேமி" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "திருத்து" + +#: 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 "ஒலிவாங்கியில் உள்ளீட்டு எதிர்ப்பு" + +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "உச்சி செயல் 2ன் அடுக்கு" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "அடியிலுள்ள(கீழெண்) எண்ணிலக்கத்தை உச்சி(மேலெண்) எண்ணிலக்கத்தை கொண்டு பிரி" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "மிகக்கூடிய" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "திரையின் அடிப்பக்க தொகுதியில் நிலைமாறலின் மதிப்ப அச்சடிக்கப்படுகிறது" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "தொடக்க நிரப்பி" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "முடிவுகள் விசைப்பலகை தொகுதியில் அடக்கப்பட்டுள்ளது" + +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# ta.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "தள்ளு" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" msgstr "" +"ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய பன்-மாறிலி கணித வாய்ப்பாடுகளை சேர்க்கப்பயன்படுகிறது, " +"எ.கா. sin(x+y+z)" -#: pysamples/brain.py:54 -msgid "Spanish" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "எல்லாத்தையும் சேமி" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" msgstr "" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" msgstr "" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "வலது" + +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "கிறே" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "சிவப்பு" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "அடையாளம்" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "புதுப்பி" + +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" msgstr "" -#: pysamples/brain.py:100 +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "" + +#: TurtleArt/tawindow.py:1256 msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" msgstr "" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "நிறுத்து" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "இயக்கு" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "சேமி" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "" -#: pysamples/journal-stats.py:78 -msgid "other" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" msgstr "" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "ப வளைவு" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "" -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "ப வளைவுவை உருவாக்கு" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "பயன்பாடு என்பது" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "செயல் என்ற தேர்வில்லை:" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "கோப்பை கண்டுபிடிக்கவில்லை" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" -#: turtleblocks.py:279 +#: TurtleArtActivity.py:1135 #, python-format -msgid "Configuration directory not writable: %s" -msgstr "கட்டமைப்புகளின் அடைவுக்கு எழுதும் உறிமை இல்லை: %s" +msgid "Plugin %s already installed." +msgstr "" -#: turtleblocks.py:354 -msgid "New" -msgstr "புதிய" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "" -#: turtleblocks.py:355 -msgid "Open" -msgstr "திற" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "நுழைவு" -#: turtleblocks.py:356 -msgid "Save" -msgstr "சேமி" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "மாற்றி சேமி" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "பட்டைகளின் உணரும் பகுதி" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "வெளியேறு" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "கோப்பு" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "இணைப்புள்ளிகளை மறு அளவீடு" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "பட்டை அளவை மீழச்செய்" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "பிரிவுகளை காட்டு/மறை" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "கருவிகள்" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "வலு கண்டுபிடி" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "ஆமை" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "" -#: turtleblocks.py:407 -msgid "About..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" msgstr "" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" msgstr "" -"நீங்கள் வைத்திருக்கும் வேலை சேமிக்கப்படாதது. வெளியேறும் முன் சேமிக்க " -"விரும்புகிறீர்களா?" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "திட்டத்தை சேமிக்கவா?" +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "" -#~ msgid "Turtle Art Mini" -#~ msgstr "டர்டலின் மிகச்சிறிய கலை" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#~ msgid "Turtle Confusion" -#~ msgstr "டர்டலின் குழப்பம்" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "" -#~ msgid "Select a challenge" -#~ msgstr "கடினமானதை தெரிவு செய்" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "" -#~ msgid "Palette of Mexican pesos" -#~ msgstr "Mexican pesos யின் தட்டு" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "" -#~ msgid "Palette of Colombian pesos" -#~ msgstr "Colombian pesos யின் தட்டு" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "" -#~ msgid "Palette of Rwandan francs" -#~ msgstr "Rwandan francs யின் தட்டு" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +msgid "returns True if mouse button is pressed" +msgstr "" -#, fuzzy -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "0 மற்றும் 255 க்கும் இடையில் LED ன் ஒளிஅளவை சரிசெய்." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "" -#, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "பட்டைகளின் உணரும் பகுதி" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "" -#, fuzzy -#~ msgid "density" -#~ msgstr "அடையாளம்" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "" -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "பட்டைகளின் உணரும் பகுதி" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "வலது" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "" -#, fuzzy -#~ msgid "grey" -#~ msgstr "கிறே" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "" -#, fuzzy -#~ msgid "port" -#~ msgstr "நுழைவு" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "" -#, fuzzy -#~ msgid "read" -#~ msgstr "சிவப்பு" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "" -#, fuzzy -#~ msgid "sensor" -#~ msgstr "உணரும் கருவிகள்" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "" -#, fuzzy -#~ msgid "mode" -#~ msgstr "புதுப்பி" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "பட்டைகளின் உணரும் பகுதி" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#, fuzzy -#~ msgid "samples" -#~ msgstr "மாதிரிகள்" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" + +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" + +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" + +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" + +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" + +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" + +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "Palette of Arduino blocks" @@ -2012,8 +3411,7 @@ msgstr "திட்டத்தை சேமிக்கவா?" #~ msgstr "களையும் அடுக்கின் உச்சி" #~ msgid "bottom block in a collapsed stack: click to open" -#~ msgstr "" -#~ "களைந்த அடுக்கில் அடிமட்ட தொகுதி: திறக்க வேண்டுமாயின் இங்கே சொடுக்கவும்" +#~ msgstr "களைந்த அடுக்கில் அடிமட்ட தொகுதி: திறக்க வேண்டுமாயின் இங்கே சொடுக்கவும்" #~ msgid "top of stack" #~ msgstr "அடுக்கின் உச்சியில்" @@ -2075,10 +3473,11 @@ msgstr "திட்டத்தை சேமிக்கவா?" #~ msgid "restore last" #~ msgstr "கடைசியை சேமி" -#~ 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 "" -#~ "ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய கணித வாய்ப்பாடுகளை சேர்க்கப்பயன்படுகிறது, " -#~ "எ.கா. sin(x)" +#~ "ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய கணித வாய்ப்பாடுகளை சேர்க்கப்பயன்படுகிறது, எ.கா. " +#~ "sin(x)" #~ msgid "blocks" #~ msgstr "பகுதிகள்" @@ -2091,8 +3490,8 @@ msgstr "திட்டத்தை சேமிக்கவா?" #~ msgid "holds current text color (can be used in place of a number block)" #~ msgstr "" -#~ "தற்ப்போதைய உரை நிறத்தைக்கொண்டுள்ளது (ஒரு எண் தொகுதியின் இடத்தில் " -#~ "பயன்படுத்த முடியும்)" +#~ "தற்ப்போதைய உரை நிறத்தைக்கொண்டுள்ளது (ஒரு எண் தொகுதியின் இடத்தில் பயன்படுத்த " +#~ "முடியும்)" #~ msgid "picture top" #~ msgstr "படத்தின் உச்சி" @@ -2138,8 +3537,7 @@ msgstr "திட்டத்தை சேமிக்கவா?" #~ msgid "holds current text size (can be used in place of a number block)" #~ msgstr "" -#~ "தற்ப்போதைய உரை அளவைக்கொண்டுள்ளது (ஒரு எண் தொகுதியின் இடத்தில் பயன்படுத்த " -#~ "முடியும்)" +#~ "தற்ப்போதைய உரை அளவைக்கொண்டுள்ளது (ஒரு எண் தொகுதியின் இடத்தில் பயன்படுத்த முடியும்)" #~ msgid "extras" #~ msgstr "தேவைக்கதிகமான" diff --git a/po/te.po b/po/te.po index 370d86c..d7174a6 100644 --- a/po/te.po +++ b/po/te.po @@ -2,8 +2,37 @@ # 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 "" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: 2012-11-25 06:59+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: te\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" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-09 00:33-0500\n" +"PO-Revision-Date: 2012-11-25 06:59+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: te\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" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,553 +47,1825 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the gray level" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature" +msgstr "" + +#: taextras.py:71 +msgid "returns the distance from the object in front of the sensor" +msgstr "" + +#: taextras.py:72 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:73 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:74 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:75 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:76 +msgid "LED" +msgstr "" + +#: taextras.py:77 +msgid "button" +msgstr "" + +#: taextras.py:78 +msgid "grayscale" +msgstr "" + +#: taextras.py:79 +msgid "ambient light" +msgstr "" + +#: taextras.py:80 +msgid "temperature" +msgstr "" + +#: taextras.py:81 taextras.py:292 +msgid "distance" +msgstr "" + +#: taextras.py:82 taextras.py:289 +msgid "tilt" +msgstr "" + +#: taextras.py:83 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:84 +msgid "vibration" +msgstr "" + +#: taextras.py:85 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 "ప్రతిఘటన" + +#: taextras.py:86 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:87 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:88 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:90 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:91 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:93 +msgid "speed Butia" +msgstr "" + +#: taextras.py:94 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:95 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#: taextras.py:96 +msgid "move Butia" +msgstr "" + +#: taextras.py:97 +msgid "moves the Butia motors at the specified speed" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:99 +msgid "forward Butia" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:101 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:103 +msgid "left Butia" +msgstr "" + +#: taextras.py:104 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:106 +msgid "backward Butia" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:108 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:110 +msgid "right Butia" +msgstr "" + +#: taextras.py:111 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:112 +msgid "turn Butia" +msgstr "" + +#: taextras.py:113 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:114 +msgid "stop Butia" +msgstr "" + +#: taextras.py:115 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:116 +msgid "Butia" +msgstr "" + +#: taextras.py:120 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:121 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:122 +msgid "No camera was found" +msgstr "" + +#: taextras.py:123 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:124 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:126 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:127 +msgid "FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:129 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:131 +msgid "calibration" +msgstr "" + +#: taextras.py:132 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:134 +msgid "follow" +msgstr "" + +#: taextras.py:135 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:136 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 "" + +#: taextras.py:137 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:138 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:139 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:140 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:142 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:143 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:145 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:146 +msgid "get brightness" +msgstr "" + +#: taextras.py:147 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:148 +msgid "average color" +msgstr "" + +#: taextras.py:149 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "టర్టిల్ నిర్దేశాల పలకం" +#: taextras.py:150 +msgid "x position" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "ముందుకు" +#: taextras.py:151 +msgid "return x position" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "టర్టిల్‌ను ముందుకు నడుపుతుంది" +#: taextras.py:152 +msgid "y position" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "వెనుక" +#: taextras.py:153 +msgid "return y position" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "టర్టిల్‌ని వెనుకకు నడుపుతుంది" +#: taextras.py:154 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:151 -#, fuzzy -msgid "clean" -msgstr "శుభ్రపరుచు" +#: taextras.py:155 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "తెరను శుభ్ర పరచి టర్టిల్‌ను పున:స్థాపిస్తుంది" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:157 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "ఎడమ" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:159 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:161 +msgid "set the color mode of the camera to HSV" msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "కుడి" +#: taextras.py:162 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" +#: taextras.py:163 +msgid "error in string conversion" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "జ్యా" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:168 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "కోణం" +#: taextras.py:169 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "వ్యాసార్ధం" +#: taextras.py:170 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "జ్యా వెంబడి టర్టిల్‌ని కదుపుతుంది" +#: taextras.py:171 +msgid "set the default speed for the movement commands" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "xy లను అమర్చు" +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:173 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:174 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:176 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:177 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:178 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:179 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:181 +msgid "left SumBot" +msgstr "" + +#: taextras.py:182 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:184 +msgid "right SumBot" +msgstr "" + +#: taextras.py:185 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:188 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:190 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:193 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:194 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:196 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:197 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:199 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:200 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:202 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:203 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:205 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:206 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:208 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:209 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:211 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:212 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:213 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:215 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:216 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:217 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:218 +msgid "update information" +msgstr "" + +#: taextras.py:219 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:224 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:225 +msgid "start polygon" +msgstr "" + +#: taextras.py:226 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:228 +msgid "add point" +msgstr "" + +#: taextras.py:229 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:231 +msgid "end polygon" +msgstr "" + +#: taextras.py:232 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:233 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:234 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:235 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:236 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:238 +msgid "base" +msgstr "" + +#: taextras.py:239 taextras.py:245 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "ఎత్తు" + +#: taextras.py:240 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:241 +msgid "circle" +msgstr "" + +#: taextras.py:242 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:243 +msgid "rectangle" +msgstr "" + +#: taextras.py:244 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "వెడల్పు" + +#: taextras.py:246 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:247 +msgid "reset" +msgstr "" + +#: taextras.py:248 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:249 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:251 +msgid "torque" +msgstr "" + +#: taextras.py:252 +msgid "speed" +msgstr "" + +#: taextras.py:253 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:255 taextras.py:418 +msgid "pin" +msgstr "" + +#: taextras.py:256 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:257 +msgid "joint" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:259 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:260 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +"Join two objects together (the most recent object created and the object at " +"point x, y)." msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "seth" +#: taextras.py:262 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +#: taextras.py:263 +msgid "Save the project to the Journal as a Physics activity." msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x అక్షము" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:265 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:266 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:267 +#, fuzzy +msgid "density" +msgstr "" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"అస్థిత్వం\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"అస్థిత్వం\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"అస్థిత్వం " + +#: taextras.py:268 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y అక్షము" +#: taextras.py:270 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:271 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "పీఠిక" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:274 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:275 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." msgstr "" -#: TurtleArt/tabasics.py:282 -#, fuzzy -msgid "Palette of pen commands" -msgstr "కలం వర్ణాలతో కూడిన పలకం" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:278 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "తెరను నింపుము" +#: taextras.py:279 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:285 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:286 +msgid "WeDo" +msgstr "" + +#: taextras.py:287 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:288 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:290 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:294 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:295 +msgid "Motor A" +msgstr "" + +#: taextras.py:296 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:297 +msgid "Motor B" +msgstr "" + +#: taextras.py:298 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:300 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:301 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:303 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:306 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:313 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:315 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:317 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:318 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "వర్ణము" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "ఛాయ" +#: taextras.py:319 +#, fuzzy +msgid "light" +msgstr "కుడి" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "పూర్వరంగాన్ని (వర్ణము, చాయతో ) నింపుతుంది" +#: taextras.py:320 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: taextras.py:321 TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "వర్ణాన్ని అమర్చు" +#. TRANS: The brick is the NXT controller +#: taextras.py:323 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "ఛాయను అమర్చు" +#: taextras.py:325 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" +#: taextras.py:326 +msgid "The value of power must be between -127 to 127" msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" +#: taextras.py:327 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" +#: taextras.py:328 +msgid "An error has occurred: check all connections and try to reconnect" msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" +#: taextras.py:329 +#, python-format +msgid "NXT found %s bricks" msgstr "" -"ప్రస్తుత కలం వర్ణాన్ని పట్టి ఉంచుతుంది ( సంఖ్య భాగం బదులు మనం దీనిని వాడ " -"వచ్చు)" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" +#: taextras.py:330 +msgid "NXT not found" msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:331 +#, python-format +msgid "Brick number %s was not found" msgstr "" -"ప్రస్థుత పాఠ్య పరిమాణాన్ని పట్టి ఉంచుతుంది (సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "కలం పట్టుకొను" +#: taextras.py:332 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." +#: taextras.py:333 +msgid "Search for a connected NXT brick." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "కలం పక్కనపెట్టు" +#: taextras.py:334 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." +#: taextras.py:335 +msgid "set current NXT device" msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "కలం పరిమాణాన్ని అమర్చు" +#: taextras.py:336 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" +#: taextras.py:337 +msgid "brick name" msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" +#: taextras.py:338 +msgid "Get the name of a brick." msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:339 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" +#: taextras.py:340 +msgid "frequency" msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:341 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "కలం పరిమాణము" +#: taextras.py:342 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tabasics.py:427 -#, fuzzy -msgid "holds current pen size (can be used in place of a number block)" +#. TRANS: turn is the action +#: taextras.py:344 +msgid "" +"turn motor\n" +"\n" msgstr "" -"ప్రస్థుత పాఠ్య పరిమాణాన్ని పట్టి ఉంచుతుంది (సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "కలం వర్ణాలతో కూడిన పలకం" +#: taextras.py:345 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "ఎరుపు" +#: taextras.py:346 +msgid "power" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "నారింజ" +#. TRANS: rotations is quantity of turns +#: taextras.py:348 +msgid "rotations" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "పసుపు పచ్చ" +#: taextras.py:349 +msgid "turn a motor" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "ఆకుపచ్చ" +#: taextras.py:350 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" +#: taextras.py:351 +msgid "steering" msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "నీలం" +#: taextras.py:352 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "ఊద" +#: taextras.py:353 +msgid "PORT A" +msgstr "" -#: TurtleArt/tabasics.py:453 -#, fuzzy -msgid "white" -msgstr "రాయు" +#: taextras.py:354 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "వెనుక" +#: taextras.py:355 +msgid "PORT B" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "పాఠ్య వర్ణాన్ని అమర్చు" +#: taextras.py:356 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" +#: taextras.py:357 +msgid "PORT C" msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "పాఠ్య పరిమాణాన్ని అమర్చు" +#: taextras.py:358 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" +#: taextras.py:359 +msgid "start motor" msgstr "" -#: TurtleArt/tabasics.py:557 +#: taextras.py:360 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:361 +msgid "brake motor" +msgstr "" + +#: taextras.py:362 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:364 +msgid "reset motor" +msgstr "" + +#: taextras.py:365 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:366 +msgid "motor position" +msgstr "" + +#: taextras.py:367 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:368 +msgid "PORT 1" +msgstr "" + +#: taextras.py:369 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:370 #, fuzzy -msgid "Palette of numeric operators" -msgstr "ప్రస్రణా కార్యవాహికల పలకం" +msgid "read" +msgstr "ఎరుపు" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "కూడిక" +#: taextras.py:371 +msgid "sensor" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" +#: taextras.py:372 +msgid "Read sensor output." msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "తీసివేయు" +#: taextras.py:373 +msgid "PORT 2" +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" +#: taextras.py:374 +msgid "PORT 2 of the brick" msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "గుణించు" +#: taextras.py:375 +msgid "light sensor" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" +#: taextras.py:376 +msgid "gray sensor" msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "భాగించు" +#: taextras.py:377 +msgid "PORT 3" +msgstr "" -#: TurtleArt/tabasics.py:604 +#: taextras.py:378 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:379 +msgid "touch sensor" +msgstr "" + +#: taextras.py:380 +msgid "distance sensor" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4" +msgstr "" + +#: taextras.py:382 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:383 +msgid "sound sensor" +msgstr "" + +#: taextras.py:384 +msgid "color sensor" +msgstr "" + +#. 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:387 +msgid "set light" +msgstr "" + +#: taextras.py:388 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:390 +msgid "battery level" +msgstr "" + +#: taextras.py:391 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:396 +msgid "HIGH" +msgstr "" + +#: taextras.py:397 +msgid "LOW" +msgstr "" + +#: taextras.py:398 +msgid "INPUT" +msgstr "" + +#: taextras.py:399 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:401 +msgid "PWM" +msgstr "" + +#: taextras.py:402 +msgid "SERVO" +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:406 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:407 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:408 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:409 +msgid "Arduino" +msgstr "" + +#: taextras.py:410 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:412 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:413 +msgid "Arduino name" +msgstr "" + +#: taextras.py:414 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:417 +msgid "pin mode" +msgstr "" + +#: taextras.py:419 +msgid "mode" +msgstr "" + +#: taextras.py:420 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:421 +msgid "analog write" +msgstr "" + +#: taextras.py:422 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "విలువ" + +#: taextras.py:423 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:424 +msgid "analog read" +msgstr "" + +#: taextras.py:425 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" +"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 "" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "అస్థిత్వం" +#: taextras.py:427 +msgid "digital write" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "భాగాలను పెంచటానికి ఉపయోగించే కార్యవాహిక గుర్తు" +#: taextras.py:428 +msgid "Write digital value to specified port." +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" +#: taextras.py:429 +msgid "digital read" msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" +#: taextras.py:430 +msgid "Read value from digital port." msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" +#: taextras.py:431 +msgid "Set HIGH value for digital port." msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "మూలం" +#: taextras.py:432 +msgid "Configure Arduino port for digital input." +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "మూలాన్ని గణిస్తుంది" +#: taextras.py:433 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "విభిన్నంగా" +#: taextras.py:434 +msgid "Set LOW value for digital port." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "అత్యల్ప" +#: taextras.py:435 +msgid "Configure Arduino port for digital output." +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "అత్యధిక" +#: taextras.py:436 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:441 +msgid "Palette of Expeyes blocks" msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "సంఖ్య" +#. TRANS: Programmable voltage output +#: taextras.py:443 +msgid "set PVS" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" +#: taextras.py:444 +msgid "set programmable voltage output" msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "కంటే ఏక్కువ" +#. TRANS: Square wave 1 voltage output +#: taextras.py:446 +msgid "set SQR1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "తార్కిక ఎక్కువ కార్యవాహిక" +#: taextras.py:447 +msgid "set square wave 1 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "కంటే తక్కువ" +#. TRANS: Square wave 2 voltage output +#: taextras.py:449 +msgid "set SQR2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "తార్కిక తక్కువ కార్యవాహిక" +#: taextras.py:450 +msgid "set square wave 2 voltage output" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "సమానం" +#. TRANS: Digital output level +#: taextras.py:452 +msgid "set OD1" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "తార్కిక సమాన కార్యవాహిక" +#: taextras.py:453 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "కాదు" +#. TRANS: Input 1 voltage level +#: taextras.py:455 +msgid "IN1 level" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "తార్కిక కాదు కార్యవాహిక" +#: taextras.py:456 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "మరియు" +#. TRANS: Input 2 voltage level +#: taextras.py:459 +msgid "IN2 level" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "తార్కిక AND కార్యనిర్వాహిక" +#: taextras.py:460 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "లేదా" +#. TRANS: Resistive sensor voltage level +#: taextras.py:463 +msgid "SEN level" +msgstr "" -#: TurtleArt/tabasics.py:729 +#: taextras.py:464 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:466 +msgid "capture" +msgstr "" + +#: taextras.py:467 +msgid "input" +msgstr "" + +#: taextras.py:468 #, fuzzy -msgid "logical OR operator" -msgstr "తార్కిక కాదు కార్యవాహిక" +msgid "samples" +msgstr "" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"నమూనాలు " -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "ప్రస్రణా కార్యవాహికల పలకం" +#: taextras.py:469 +msgid "interval" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "వేచి ఉండు" +#. TRANS: MS is microseconds +#: taextras.py:471 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "నిర్వర్తిస్తున్న కార్యక్రమాన్ని పేర్కొన్న సెకన్ల వరకు నిలిపి వేస్తుంది" +#. TRANS: Analog input 1 voltage level +#: taextras.py:474 +msgid "A1" +msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "ఎప్పటికీ" +#: taextras.py:475 +msgid "read analog input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "ఎల్లప్పిటికీ ఉండే లూపులు" +#. TRANS: Analog input 2 voltage level +#: taextras.py:477 +msgid "A2" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "మళ్ళీ చేయి" +#: taextras.py:478 +msgid "read analog input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" +#. TRANS: Read input 1 voltage +#: taextras.py:480 +msgid "IN1" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "ఒక వేళ" +#: taextras.py:481 +msgid "read input 1 voltage" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "అయితే" +#. TRANS: Read input 2 voltage +#: taextras.py:483 +msgid "IN2" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "ఒకవేళ అయితే" +#: taextras.py:484 +msgid "read input 2 voltage" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" +#. TRANS: Read analog sensor input voltage +#: taextras.py:486 +msgid "SEN" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" +#: taextras.py:487 +msgid "read analog sensor input voltage" msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -#, fuzzy -msgid "if then else" -msgstr "కాకపోతే" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:489 +msgid "SQR1" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" +#: taextras.py:490 +msgid "read square wave 1 voltage" msgstr "" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "అడ్డంగా ఉన్న ప్రదేశం" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:492 +msgid "SQR2" +msgstr "" + +#: taextras.py:493 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:495 +msgid "PVS" +msgstr "" + +#: taextras.py:496 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:497 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "పీఠిక" + +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "పసుపు పచ్చ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "FILO క్రమంలో ఖాళీ చేస్తుంది (మొదట-వచ్చినది - కుప్పనుండి -చరకు -వెళుతుంది )" #: TurtleArt/tabasics.py:812 msgid "jogs stack right" msgstr "కుప్పను కుడివైపుకు నెడుతుంది" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "నిటారు ప్రదేశము" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "పేటిక 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "పేటిక 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "మెట్టు" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "పలకాన్ని దాచుము" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +#, fuzzy +msgid "Sugar Journal video object" +msgstr "శుగర్ పొద్దు శ్రావ్య తాత్పర్యం " + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +#, fuzzy +msgid "xcor of right of screen" +msgstr "తెర దిగువున y అక్షము " + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "పీఠిక" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "నీలం" #: TurtleArt/tabasics.py:820 msgid "jogs stack down" msgstr "కుప్పను క్రింది వైపునకు నెడుతుంది" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "దిగువ " + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "కలం పక్కనపెట్టు" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "వేచి ఉండు" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "పేటిక" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "నామకరణ అయిన చర్య కుప్పను ప్రేరేపిస్తుంది" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "చర్య" + +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "చరరాశి 2 ( పూర్ణసంఖ్య విలువ )" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "భాగించు" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "ప్రతిరూప నామం" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#, fuzzy +msgid "while" +msgstr "రాయు " + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "ఖాళీ కుప్ప " + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "నామకరణం అయిన చరరాశి ( పూర్ణసంఖ్య విలువ )" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "తర్వాత" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "ఒకవేళ అయితే" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "కలం పరిమాణాన్ని అమర్చు" + +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "చెత్తకుండీలోని అంశాలను పూర్తిగా తొలగిస్తుంది" + +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "చర్య 1 కుప్ప పైన" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "ప్రస్రణా కార్యవాహికల పలకం" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "seth" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "అడ్డంగా ఉన్న ప్రదేశం" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "పద బంధం విలువ" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "ఎలాగో నాకు తెలియదు" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "పాఠ్య పరిమాణాన్ని అమర్చు" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "దర్శించు" + #: TurtleArt/tabasics.py:826 msgid "stop action" msgstr "చర్యను నిలిపివేయి" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "ఆకుపచ్చ" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "ఛాయ" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "పూర్వరంగాన్ని (వర్ణము, చాయతో ) నింపుతుంది" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "కలం పట్టుకొను" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "నారింజ" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "నిర్వర్తిస్తున్న కార్యక్రమాన్ని పేర్కొన్న సెకన్ల వరకు నిలిపి వేస్తుంది" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "అయితే" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "కాదు" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +#, fuzzy +msgid "if then else" +msgstr "కాకపోతే" + #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "ప్రస్థుత చర్యను నిలిపి వేస్తుంది" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "మారే భాగాల పలకం" +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" +msgstr "ప్రస్థుత పాఠ్య పరిమాణాన్ని పట్టి ఉంచుతుంది (సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "ప్రారంభించు" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +#, fuzzy +msgid "xcor of left of screen" +msgstr "" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"తెర దిగువున y అక్షము \n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"తెర దిగువున y అక్షము \n" +"#-#-#-#-# te.po (PACKAGE VERSION) #-#-#-#-#\n" +"తెర దిగువున y అక్షము" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "తదుపరి పలకాన్ని ప్రదర్శిస్తుంది" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "తార్కిక తక్కువ కార్యవాహిక" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "1 పేటికలో దాచుము" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "2 పేటికలో దాచుము" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "ముద్రికగా దాచు" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "పాఠ్య వర్ణాన్ని అమర్చు" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "సంఖ్య" + +#: TurtleArt/tabasics.py:453 +#, fuzzy +msgid "white" +msgstr "రాయు" #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "చర్యను పనిముట్ల మీటలతో అనుసంధానం చేస్తుంది" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "తీసివేయు" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "మరియు" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "ఎగుబడిలా" + +#: TurtleArt/tabasics.py:427 +#, fuzzy +msgid "holds current pen size (can be used in place of a number block)" +msgstr "ప్రస్థుత పాఠ్య పరిమాణాన్ని పట్టి ఉంచుతుంది (సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "వర్ణాన్ని అమర్చు" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "అత్యల్ప" + +#: TurtleArt/tabasics.py:282 +#, fuzzy +msgid "Palette of pen commands" +msgstr "కలం వర్ణాలతో కూడిన పలకం" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "తార్కిక కాదు కార్యవాహిక" + +#: TurtleArt/tabasics.py:557 +#, fuzzy +msgid "Palette of numeric operators" +msgstr "ప్రస్రణా కార్యవాహికల పలకం" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "గుణించు" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "ఎప్పటికీ" + +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "ఛాయా చిత్రం" + +#: TurtleArt/tabasics.py:151 +#, fuzzy +msgid "clean" +msgstr "శుభ్రపరుచు" + +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "భాగాలను పెంచుము" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "తెర మొత్తం" + #: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 #: TurtleArt/tabasics.py:855 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 @@ -576,70 +1877,300 @@ msgstr "చర్యను పనిముట్ల మీటలతో అను msgid "text" msgstr "పాఠము" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "పద బంధం విలువ" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "విభిన్నంగా" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "చర్య" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "తార్కిక ఎక్కువ కార్యవాహిక" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "నామకరణం చెయ గల చర్య కుప్ప పైన" +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "వెనుక" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "నామకరణ అయిన చర్య కుప్పను ప్రేరేపిస్తుంది" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "మూలాన్ని గణిస్తుంది" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "1 పేటికలో దాచుము" +#: pysamples/grecord.py:215 +#, fuzzy +msgid "stop" +msgstr "పైన " + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "కంటే ఏక్కువ" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x అక్షము" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "సహాయం" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "జ్యా" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "వ్యాసార్ధం" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "ఛాయను అమర్చు" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "తార్కిక AND కార్యనిర్వాహిక" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "నడుపు" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "మైకు ఎగుబడి పరిమాణం" + +#: gnome_plugins/uploader_plugin.py:120 +#, fuzzy +msgid "Title:" +msgstr "పీఠిక " + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "మారే భాగాల పలకం" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "చరరాశి 1 ( పూర్ణసంఖ్య విలువ )" + +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "సమానం" + +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "నచ్చని" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "కలం పరిమాణము" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "జ్యా వెంబడి టర్టిల్‌ని కదుపుతుంది" + +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "తార్కిక సమాన కార్యవాహిక" + +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "కలం వర్ణాలతో కూడిన పలకం" #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "సంఖ్యా విలువను చరరాశి 1 లో నిక్షిప్తం చేస్తుంది" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "2 పేటికలో దాచుము" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "సంఖ్యా విలువను చరరాశి 2 లో నిక్షిప్తం చేస్తుంది" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "పేటిక 1" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "టర్టిల్‌ని వెనుకకు నడుపుతుంది" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "చరరాశి 1 ( పూర్ణసంఖ్య విలువ )" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +#, fuzzy +msgid "ycor of top of screen" +msgstr "తెర దిగువున y అక్షము " -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "పేటిక 2" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "భాగాలను చూపుము" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "చరరాశి 2 ( పూర్ణసంఖ్య విలువ )" +#: pysamples/grecord.py:219 +#, fuzzy +msgid "save" +msgstr "దాచు " + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "వర్ణము" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +#, fuzzy +msgid "orientation" +msgstr "సమర్పణ" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y అక్షము" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "ఒక వేళ" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "చర్య 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "చర్య 1" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "కాపీ" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "అతికించు" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "అక్కడకి దిగుబడి కాలేదు" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "శుభ్రపరుచు" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "కోణం" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "ఎడమ" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "తెరను శుభ్ర పరచి టర్టిల్‌ను పున:స్థాపిస్తుంది" + +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "చర్య 1 కుప్పను ప్రేరేపిస్తుంది" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "టర్టిల్ నిర్దేశాల పలకం" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "ఎల్లప్పిటికీ ఉండే లూపులు" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "టర్టిల్ కళ" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "పథకం" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "లోప నిర్మూలన" + +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "నిటారు ప్రదేశము" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "కంటే తక్కువ" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "మూలం" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "ఊద" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "తెరుచుటకు నొక్కుము" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +#, fuzzy +msgid "microphone input pitch" +msgstr "మైకు ఎగుబడి పరిమాణం" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "చెత్తకుండీ ఖాళీ చేయు" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "టర్టిల్ ని ఆపు" #: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 msgid "store in" msgstr "దీనిలో దాచు" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "పేటిక" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "భాగాలను దాచుము" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "విలువ" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "కూడిక" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "లేదా" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "భాగాలను పెంచటానికి ఉపయోగించే కార్యవాహిక గుర్తు" + +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "భాగాలను కుంచించుము" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "ప్రతిరూపము" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "ప్రస్తుత కలం వర్ణాన్ని పట్టి ఉంచుతుంది ( సంఖ్య భాగం బదులు మనం దీనిని వాడ వచ్చు)" + +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "వర్ణపలకాన్ని చూపుము" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "ఛాయా చిత్రాన్ని దాచుము" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "ప్రారంభించు" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "టర్టిల్‌ను ముందుకు నడుపుతుంది" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "ముందుకు" #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 @@ -648,116 +2179,274 @@ msgstr "విలువ" msgid "my box" msgstr "నా పేటిక" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "వెనుక" + +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "నామకరణం చెయ గల చర్య కుప్ప పైన" + #: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 msgid "stores numeric value in named variable" msgstr "సంఖ్యా విలువను పేరు గల చరరాశి రూపంలో నిక్షిప్తం చేస్తుంది" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "నామకరణం అయిన చరరాశి ( పూర్ణసంఖ్య విలువ )" +#: TurtleArt/tabasics.py:729 +#, fuzzy +msgid "logical OR operator" +msgstr "తార్కిక కాదు కార్యవాహిక" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "చర్య 1" +#: 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 +#, fuzzy +msgid "microphone input voltage" +msgstr "మైకు ఎగుబడి పరిమాణం" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "చర్య 1 కుప్ప పైన" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "చర్య 2 కుప్పను ప్రేరేపిస్తుంది" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "చర్య 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "xy లను అమర్చు" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "పీఠిక y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "పీఠిక x" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "తెరను నింపుము" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "xy లను అమర్చు" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "మళ్ళీ చేయి" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "ప్రతిరూపంగా దాచు" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "సరిచేయు" #: TurtleArt/tabasics.py:967 msgid "top of Action 2 stack" msgstr "చర్య 2 కుప్ప పైన" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "చర్య 1 కుప్పను ప్రేరేపిస్తుంది" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "అత్యధిక" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "చర్య 2 కుప్పను ప్రేరేపిస్తుంది" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "అన్నింటినీ పున:స్థాపించు" -#: TurtleArt/tabasics.py:995 -msgid "trash" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "చెత్తకుండీ ఖాళీ చేయు" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "చెత్తకుండీలోని అంశాలను పూర్తిగా తొలగిస్తుంది" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "అన్నింటినీ పున:స్థాపించు" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "కుడి" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "పీఠిక" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "టర్టిల్ ని ఆపు" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "భాగాలను చూపుము" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "భాగాలను దాచుము" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "అక్కడకి దిగుబడి కాలేదు" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "ఎలాగో నాకు తెలియదు" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "నచ్చని" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "ఎగుబడిలా" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "తదుపరి పలకాన్ని ప్రదర్శిస్తుంది" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "ఎరుపు" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "" + +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "అస్థిత్వం" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" + +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "" + +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" #: TurtleArt/tapalette.py:98 msgid "changes the orientation of the palette of blocks" @@ -771,20 +2460,6 @@ msgstr "" msgid "Save..." msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "తెరుచుటకు నొక్కుము" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -#, fuzzy -msgid "orientation" -msgstr "సమర్పణ" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "తర్వాత" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -800,33 +2475,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "టర్టిల్ కళ" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "ప్రతిరూపము" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "ముద్రికగా దాచు" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "ప్రతిరూపంగా దాచు" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "ఛాయా చిత్రం" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "ఛాయా చిత్రాన్ని దాచుము" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -836,14 +2484,6 @@ msgstr "" msgid "Turn on hover help" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "వర్ణపలకాన్ని చూపుము" - -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "పలకాన్ని దాచుము" - #: TurtleArtActivity.py:447 msgid "Rescale coordinates down" msgstr "" @@ -852,42 +2492,15 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "సరిచేయు" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "దర్శించు" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "పథకం" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "కాపీ" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "అతికించు" - #: TurtleArtActivity.py:591 msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "తెర మొత్తం" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -900,39 +2513,11 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "భాగాలను పెంచుము" - -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "భాగాలను కుంచించుము" - #: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 #: TurtleArtActivity.py:832 msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "శుభ్రపరుచు" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "నడుపు" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "మెట్టు" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "సహాయం" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "నిలిపివేయి" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1044,11 +2629,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "వర్ణము" - #: 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 @@ -1077,11 +2657,6 @@ msgstr "" msgid "Password:" msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -#, fuzzy -msgid "Title:" -msgstr "పీఠిక " - #: gnome_plugins/uploader_plugin.py:130 msgid "Description:" msgstr "" @@ -1120,11 +2695,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,30 +2705,6 @@ msgstr "" msgid "loudness" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "మైకు ఎగుబడి పరిమాణం" - -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "శృతి" - -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -#, fuzzy -msgid "microphone input pitch" -msgstr "మైకు ఎగుబడి పరిమాణం" - -#: 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 "ప్రతిఘటన" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1173,28 +2719,11 @@ msgstr "" msgid "voltage" msgstr "" -#: 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 -#, fuzzy -msgid "microphone input voltage" -msgstr "మైకు ఎగుబడి పరిమాణం" - #: plugins/camera_sensor/camera_sensor.py:67 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1226,117 +2755,44 @@ msgstr "" msgid "read value from RFID device" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#, fuzzy -msgid "while" -msgstr "రాయు " - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "అప్పటివరకు" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "పైన" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "పొద్దు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "శుగర్ పొద్దు మాధ్యమ తాత్పర్యం" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "శ్రావణ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "శుగర్ పొద్దు శ్రావ్య తాత్పర్యం" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 msgid "video" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -#, fuzzy -msgid "Sugar Journal video object" -msgstr "శుగర్ పొద్దు శ్రావ్య తాత్పర్యం " - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "శుగర్ పొద్దును వివరించే ప్రాంతం" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "చూపు" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 msgid "draws text or show media from the Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "లీనంగా చూపు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "కొలబద్దను అమర్చు" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "ప్రతిరూపాన్ని దాచు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "ప్రతిరూప నామం" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 msgid "saves a picture to the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "SVG గా దాచు" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "కొలబద్ద" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1431,18 +2887,10 @@ msgstr "" msgid "returns mouse y coordinate" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "query మీటల పలకం" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "మీటల పలకం" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1463,77 +2911,27 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "అదనపు ఇచ్ఛాపూర్వకాల పలకం" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "నెట్టు" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "కుప్పను చూపుము" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 msgid "shows values in FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "ఖాళీ కుప్ప" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "" -"FILO క్రమంలో ఖాళీ చేస్తుంది (మొదట-వచ్చినది - కుప్పనుండి -చరకు -వెళుతుంది )" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "ఎగసి" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 msgid "pops value off FILO (first-in last-out heap)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "ఖాళీ కుప్ప " - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "వ్యాఖ్య" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "మీ సంకేతాలలో వ్యాఖ్యనుంచుతుంది" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "ముద్రణ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1590,23 +2988,10 @@ msgstr "" msgid "displays Cartesian coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "ధృవ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 msgid "displays polar coordinates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "టర్టిల్" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "ఏ టర్టిల్‌ను నిర్దేశించాలో ఎంచుకొంటుంది" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 msgid "turtle shell" @@ -1633,11 +3018,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "xy లను అమర్చు" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1650,35 +3030,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "భాగాలను దాచు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "భాగాలను దాచటం ద్వారా యవనికను శుబ్రపరుస్తుంది" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "భాగాలను చూపు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "దాగి ఉన్న భాగాల్ని పున:స్థాపిస్తుంది" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "శుగర్ పనిముట్ల పట్టాను దాచుతుంది" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 msgid "list" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "సమర్పణ విశేషణ సూచిక జాబితా" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 msgid "presentation template: list of bullets" @@ -1706,53 +3061,6 @@ msgstr "" msgid "presentation template: select two Journal objects" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -#, fuzzy -msgid "xcor of left of screen" -msgstr "తెర దిగువున y అక్షము" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "దిగువ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "తెర దిగువున y అక్షము" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "వెడల్పు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "యవనిక వెడల్పు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -#, fuzzy -msgid "xcor of right of screen" -msgstr "తెర దిగువున y అక్షము " - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -#, fuzzy -msgid "ycor of top of screen" -msgstr "తెర దిగువున y అక్షము " - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "ఎత్తు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "యవనిక ఎత్తు" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "పీఠిక x" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "పీఠిక y" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 msgid "left x" msgstr "" @@ -1765,28 +3073,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "దిగువ " - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "సమర్పణ 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "సమర్పణ 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "సమర్పణ 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "సమర్పణ 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1814,20 +3100,10 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -#, fuzzy -msgid "stop" -msgstr "పైన " - #: pysamples/grecord.py:217 msgid "play" msgstr "" -#: pysamples/grecord.py:219 -#, fuzzy -msgid "save" -msgstr "దాచు " - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1861,14 +3137,6 @@ msgstr "" msgid "New" msgstr "" -#: turtleblocks.py:355 -msgid "Open" -msgstr "తెరుచు" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "దాచు" - #: turtleblocks.py:357 msgid "Save as" msgstr "" @@ -1877,34 +3145,10 @@ msgstr "" msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "దస్త్రము" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "బాగం పరిమాణాన్ని పున:స్థాపించు" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "భాగాలను చూపుము/దాచుము" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "పనిముట్లు" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "లోప నిర్మూలన" - -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "టర్టిల్" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1917,21 +3161,152 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "density" -#~ msgstr "అస్థిత్వం " +#~ msgid "Sugar Journal media object" +#~ msgstr "శుగర్ పొద్దు మాధ్యమ తాత్పర్యం " -#, fuzzy -#~ msgid "light" -#~ msgstr "కుడి" +#~ msgid "Show/hide blocks" +#~ msgstr "భాగాలను చూపుము/దాచుము " -#, fuzzy -#~ msgid "read" -#~ msgstr "ఎరుపు" +#~ msgid "Palette of extra options" +#~ msgstr "అదనపు ఇచ్ఛాపూర్వకాల పలకం " -#, fuzzy -#~ msgid "samples" -#~ msgstr "నమూనాలు " +#~ msgid "save SVG" +#~ msgstr "SVG గా దాచు " + +#~ msgid "the canvas width" +#~ msgstr "యవనిక వెడల్పు " + +#~ msgid "until" +#~ msgstr "అప్పటివరకు " + +#~ msgid "declutters canvas by hiding blocks" +#~ msgstr "భాగాలను దాచటం ద్వారా యవనికను శుబ్రపరుస్తుంది " + +#~ msgid "save picture" +#~ msgstr "ప్రతిరూపాన్ని దాచు " + +#~ msgid "pitch" +#~ msgstr "శృతి " + +#~ msgid "Reset block size" +#~ msgstr "బాగం పరిమాణాన్ని పున:స్థాపించు " + +#~ msgid "turtle" +#~ msgstr "టర్టిల్ " + +#~ msgid "hide blocks" +#~ msgstr "భాగాలను దాచు " + +#~ msgid "Save" +#~ msgstr "దాచు " + +#~ msgid "hides the Sugar toolbars" +#~ msgstr "శుగర్ పనిముట్ల పట్టాను దాచుతుంది " + +#~ msgid "print" +#~ msgstr "ముద్రణ " + +#~ msgid "query keyboard" +#~ msgstr "query మీటల పలకం " + +#~ msgid "top" +#~ msgstr "పైన " + +#~ msgid "set scale" +#~ msgstr "కొలబద్దను అమర్చు " + +#~ msgid "the canvas height" +#~ msgstr "యవనిక ఎత్తు " + +#~ msgid "presentation 2x1" +#~ msgstr "సమర్పణ 2x1 " + +#~ msgid "File" +#~ msgstr "దస్త్రము " + +#~ msgid "ycor of bottom of screen" +#~ msgstr "తెర దిగువున y అక్షము " + +#~ msgid "show" +#~ msgstr "చూపు " + +#~ msgid "chooses which turtle to command" +#~ msgstr "ఏ టర్టిల్‌ను నిర్దేశించాలో ఎంచుకొంటుంది " + +#~ msgid "keyboard" +#~ msgstr "మీటల పలకం " + +#~ msgid "show heap" +#~ msgstr "కుప్పను చూపుము " + +#~ msgid "presentation 2x2" +#~ msgstr "సమర్పణ 2x2 " + +#~ msgid "restores hidden blocks" +#~ msgstr "దాగి ఉన్న భాగాల్ని పున:స్థాపిస్తుంది " + +#~ msgid "pop" +#~ msgstr "ఎగసి " + +#~ msgid "Open" +#~ msgstr "తెరుచు " + +#~ msgid "Stop" +#~ msgstr "నిలిపివేయి " + +#~ msgid "empty heap" +#~ msgstr "ఖాళీ కుప్ప " + +#~ msgid "audio" +#~ msgstr "శ్రావణ " + +#~ msgid "Tools" +#~ msgstr "పనిముట్లు " + +#~ msgid "comment" +#~ msgstr "వ్యాఖ్య " + +#~ msgid "show aligned" +#~ msgstr "లీనంగా చూపు " + +#~ msgid "show blocks" +#~ msgstr "భాగాలను చూపు " + +#~ msgid "Sugar Journal description field" +#~ msgstr "శుగర్ పొద్దును వివరించే ప్రాంతం " + +#~ msgid "presentation bulleted list" +#~ msgstr "సమర్పణ విశేషణ సూచిక జాబితా " + +#~ msgid "places a comment in your code" +#~ msgstr "మీ సంకేతాలలో వ్యాఖ్యనుంచుతుంది " + +#~ msgid "scale" +#~ msgstr "కొలబద్ద " + +#~ msgid "bottom" +#~ msgstr "దిగువ " + +#~ msgid "journal" +#~ msgstr "పొద్దు " + +#~ msgid "Sugar Journal audio object" +#~ msgstr "శుగర్ పొద్దు శ్రావ్య తాత్పర్యం " + +#~ msgid "Turtle" +#~ msgstr "టర్టిల్ " + +#~ msgid "presentation 1x1" +#~ msgstr "సమర్పణ 1x1 " + +#~ msgid "presentation 1x2" +#~ msgstr "సమర్పణ 1x2 " + +#~ msgid "polar" +#~ msgstr "ధృవ " + +#~ msgid "push" +#~ msgstr "నెట్టు " #~ msgid "then else" #~ msgstr "కాకపోతే" @@ -1974,8 +3349,7 @@ msgstr "" #~ msgstr "పాఠ పరిమాణం " #~ msgid "holds current text color (can be used in place of a number block)" -#~ msgstr "" -#~ "ప్రస్థుత పాఠ్య వర్ణాన్ని పట్టి ఉంచుతుంది ( సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" +#~ msgstr "ప్రస్థుత పాఠ్య వర్ణాన్ని పట్టి ఉంచుతుంది ( సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" #~ msgid "picture top" #~ msgstr "ప్రతిరూపం పైన " @@ -2009,8 +3383,7 @@ msgstr "" #~ msgstr "సెన్సారు వోల్టేజీ" #~ msgid "holds current text size (can be used in place of a number block)" -#~ msgstr "" -#~ "ప్రస్థుత పాఠ్య పరిమాణాన్ని పట్టి ఉంచుతుంది (సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" +#~ msgstr "ప్రస్థుత పాఠ్య పరిమాణాన్ని పట్టి ఉంచుతుంది (సంఖ్య భాగాల స్థానంలో వాడవచ్చు )" #~ msgid "Save Logo" #~ msgstr "ముద్రికను దాచు " diff --git a/po/th.po b/po/th.po index 895b1be..03c32fc 100644 --- a/po/th.po +++ b/po/th.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,489 +43,2515 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "ชุดคำสั่งควบคุมเต่า" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "เดินหน้า" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "เคลื่อนเต่าไปข้างหน้า" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "กลับ" +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "เคลื่อนเต่าไปข้างหลัง" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "ล้างหน้าจอ" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "ลบภาพและนำเต่ากลับมากลางหน้าจอ" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "ซ้าย" +#: taextras.py:80 +msgid "ambient light" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "หมุนเต่าทวนเข็มนาฬิกา (องศา)" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "ขวา" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "หมุนเต่าตามเข็มนาฬิกา (องศา)" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "เส้นโค้ง" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "มุม" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "รัศมี" +#: taextras.py:86 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 "ความต้านทาน" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "เคลื่อนเต่าไปตามเส้นโค้ง" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "ตั้งค่าแกน xy" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "ความสว่าง" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "ชุดคำสั่งเซ็นเซอร์" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "ความสูง" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "ความกว้าง" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "x" msgstr "แกน x" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 msgid "y" msgstr "แกน y" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:259 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "ย้ายเต่าไปยังตำแหน่ง x, ตำแหน่ง y; โดย (0,0) อยู่กลางหน้าจอ" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "กำหนดทิศทาง" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "กำหนดทิศทางของเต่า (0 ชี้ไปทางด้านบนของหน้าจอ)" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "ตำแหน่ง x" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:226 +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "เอกลักษณ์" + +#: taextras.py:267 msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the density property for objects (density can be any positive number)." msgstr "" -"คือค่าตำแหน่งแกนนอน (แกน x) ของตัวเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ตำแหน่ง y" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/tabasics.py:237 +#: taextras.py:270 msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." msgstr "" -"คือค่าตำแหน่งแกนตั้ง (แกน y) ของตัวเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "ทิศทางปัจจุบัน" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/tabasics.py:248 +#: taextras.py:274 msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "คือค่าทิศทางปัจจุบันของเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "ชุดคำสั่งการวาด" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "สีจอ" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "ชุดคำสั่งเซ็นเซอร์" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 #: TurtleArt/tabasics.py:348 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 msgid "color" msgstr "สี" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "เฉดสี" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "ขวา" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "เทสีพื้นหลังด้วยสีที่กำหนดโดย (สี , เฉดสี)" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "เสียง" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:320 +#, fuzzy +msgid "grey" msgstr "สีเทา" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "ตั้งค่าสี" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "ตั้งค่าสีของเส้นที่เต่าวาด" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "ตั้งค่าเฉดสี" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "ตั้งค่าเฉดสีของเส้นที่เต่าวาด" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "ตั้งค่าความเทา" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "ตั้งต่าระดับความเทาของเส้นที่เต่าวาด" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "ค่าสีปัจจุบันของเต่า สามารถนำไปใช้เหมือนบล็อกตัวเลข" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "ค่าเฉดสีปัจจุบันของปากกา" +#: taextras.py:329 +msgid "NXT not found" +msgstr "" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "ค่าระดับความเทาปัจจุบัน เอาไปใช้ได้เหมือนบล็อกตัวเลข" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "ยกปากกาขึ้น" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "เวลาเคลื่อนที่เต่าจะไม่วาดเส้น" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "จรดปากกา" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "เวลาเคลื่อนที่เต่าจะวาดเส้น" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "ตั้งค่าขนาดปากกา" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "ตั้งขนาดของเส้นที่จะถูกวาดโดยเต่า" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "เริ่มเทสี" +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" +#: taextras.py:338 +msgid "play tone" msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "จบการเทสี" +#: taextras.py:339 +msgid "frequency" +msgstr "" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "เวลา" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "ขนาดปากกา" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "ค่าขนาดปากกาปัจจุบัน นำไปใช้ได้เหมือนบล็อกตัวเลข" +#: taextras.py:344 +msgid "port" +msgstr "" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "ชุดสีปากกา" +#: taextras.py:345 +msgid "power" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +#, fuzzy +msgid "read" msgstr "สีแดง" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "สีส้ม" +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "หารเอาเศษ" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "ค่า" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "ชุดคำสั่งเซ็นเซอร์" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +#, fuzzy +msgid "Title" +msgstr "ชื่อแทร็ก" #: TurtleArt/tabasics.py:446 msgid "yellow" msgstr "สีเหลือง" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "สีเขียว" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "กล่องที่ 2" + +#: TurtleArt/tabasics.py:909 +#, fuzzy +msgid "box 1" +msgstr "กล่องที่ 2" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +#, fuzzy +msgid "Step" +msgstr "หยุด" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "คูณค่าตัวเลขสองตัว" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "คู่หู" #: TurtleArt/tabasics.py:449 msgid "cyan" msgstr "สีฟ้า" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +#, fuzzy +msgid "Load example" +msgstr "โหลดตัวอย่าง" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "ย้าย Block ทั้งหมดลงถังขยะ" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "ทิศทางปัจจุบัน" + +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "รูปภาพ" + #: TurtleArt/tabasics.py:450 msgid "blue" msgstr "สีน้ำเงิน" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "สีม่วง" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +#, fuzzy +msgid "bottom y" +msgstr "ปุ่ม" -#: TurtleArt/tabasics.py:453 -msgid "white" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "บันทึก SVG" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "จรดปากกา" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "รอ" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "กล่อง" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "อัปโหลดล้มเหลว" + +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "ตัวแปรที่ 2 (ค่าที่เป็นตัวเลข)" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "หาร" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "ชื่อรูปภาพ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +#, fuzzy +msgid "while" msgstr "สีขาว" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "สีดำ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "heap ว่าง" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "ตั้งค่าสีตัวอักษร" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "ถ้ดไปถัดไป" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "ตั้งค่าสีของข้อความที่เต่าวาด" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "ถ้า... แล้ว..." + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "ตั้งค่าขนาดปากกา" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#, fuzzy +msgid "Palette of flow operators" +msgstr "ชุดคำสั่งประมวลผลตัวเลข" + +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "ค่าเฉดสีปัจจุบันของปากกา" + +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "เข้าใช้งานไม่ผ่าน" + +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "กำหนดทิศทาง" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "ค่า String" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +#, fuzzy +msgid "description" +msgstr "คำอธิบาย" #: TurtleArt/tabasics.py:471 msgid "set text size" msgstr "ตั้งค่าขนาดตัวอักษร" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "ตั่งค่าขนาดตัวอักษรที่เต่าวาด" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "ชื่อผู้ใช้:" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "ชุดคำสั่งประมวลผลตัวเลข" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +#, fuzzy +msgid "View" +msgstr "มุมมอง" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "บวก" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "ตั้งต่าระดับความเทาของเส้นที่เต่าวาด" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "บวกค่าตัวเลขสองตัว" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "รหัสผ่าน:" + +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "หยุดกระทำการใด ๆ" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "สีเขียว" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "เฉดสี" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "เทสีพื้นหลังด้วยสีที่กำหนดโดย (สี , เฉดสี)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "บันทึกรูปภาพ" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "ยกปากกาขึ้น" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "สีส้ม" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "ใส่ค่าใน FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "ล้างค่าทั้งหมด" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "แล้ว" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "สมัครสมาชิก" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "ไม่" + +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "หมุนเต่าตามเข็มนาฬิกา (องศา)" + +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "ค่าระดับความเทาปัจจุบัน เอาไปใช้ได้เหมือนบล็อกตัวเลข" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "ซ่อน blocks" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "ระดับแสงที่ตรวจพบโดยกล้อง" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "เครื่องหมายน้อยกว่า" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "คืนค่า Blocks ทั้งหมดจากถังขยะ" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "บันทึก" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "นำไปเก็บที่ box 1" + +#: TurtleArt/tabasics.py:896 +#, fuzzy +msgid "store in box 2" +msgstr "นำไปเก็บที่ box 1" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "คือค่าตำแหน่งแกนนอน (แกน x) ของตัวเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "งานพิมพ์" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "บันทึกเป็นโลโก้" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "ตั้งค่าสีของเส้นที่เต่าวาด" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "ตั้งค่าสีตัวอักษร" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "ระดับความดัง" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "ตัวเลข" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +#, fuzzy +msgid "top" +msgstr "หยุด" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "ชื่อเล่น" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "ตั้งค่าเฉดสี" + +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "สีขาว" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "ยกเลิก" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "งานนำเสนอ 2x1" #: TurtleArt/tabasics.py:575 msgid "minus" msgstr "ลบ" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "นำค่าตัวเลขตัวล่างไปลบออกจากค่าตัวบน" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "บวก" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "การนำเข้า" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "ค่าขนาดปากกาปัจจุบัน นำไปใช้ได้เหมือนบล็อกตัวเลข" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "ตั้งค่าสี" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "นาที" + +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "ชุดคำสั่งการวาด" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "แสดงค่าใน FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)" + +#: turtleblocks.py:363 +msgid "File" +msgstr "แฟ้ม" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "เครื่องหมาย NOT" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "ชุดคำสั่งประมวลผลตัวเลข" #: TurtleArt/tabasics.py:589 msgid "multiply" msgstr "คูณ" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "คูณค่าตัวเลขสองตัว" - -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "หาร" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "ตลอดไป" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "นำค่าตัวเลขตัวบน(ตัวตั้ง) หารด้วยตัวเลขตัวล่า(ตัวหาร)" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "ตั้งค่าเฉดสีของเส้นที่เต่าวาด" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "เอกลักษณ์" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "ภาพที่จับได้" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "ล้างหน้าจอ" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "หารเอาเศษ" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +#, fuzzy +msgid "Grow blocks" +msgstr "แสดง blocks" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "เต็มจอ" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "ไม่พบไฟล์" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "รากที่สอง" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "แสดง" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "คำนวนค่า square root" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +#, fuzzy +msgid "text" +msgstr "ถ้ดไป" #: TurtleArt/tabasics.py:646 msgid "random" msgstr "สุ่ม" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "นาที" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "เครื่องหมายมากกว่า" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "ใหญ่สุด" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "หมุนเต่าทวนเข็มนาฬิกา (องศา)" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "กลับสู่การสุ่มตัวเลข ระหว่าง ค่าที่น้อยที่สุด และ ค่าที่มากที่สุด" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "สีดำ" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "ตัวเลข" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "คำนวนค่า square root" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "คือค่าตำแหน่งแกนตั้ง (แกน y) ของตัวเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "หยุด" #: TurtleArt/tabasics.py:671 msgid "greater than" msgstr "มากกว่า" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "เครื่องหมายมากกว่า" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "ตำแหน่ง x" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "น้อยกว่า" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "ช่วยเหลือ" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "เครื่องหมายน้อยกว่า" +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "บันทึกโครงการ?" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "ตั้งค่าสีของข้อความที่เต่าวาด" + +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "ระดับแสงที่ตรวจพบโดยเซ็นเซอร์วัดแสง" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "แป้นพิมพ์" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "เส้นโค้ง" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "รัศมี" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "ตั้งค่าเฉดสี" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "เครื่องหมายบวก" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "ประมวลผล" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "แสดง heap" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "กำหนดทิศทางของเต่า (0 ชี้ไปทางด้านบนของหน้าจอ)" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "ชื่อแทร็ก:" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "คืนค่า Blocks ทั้งหมดจากถังขยะ" + +#: TurtleArt/tabasics.py:838 +#, fuzzy +msgid "Palette of variable blocks" +msgstr "ชุดคำสั่งตัวแปร" + +#: 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 "อัปโหลด" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "เครื่องแม่ข่าย" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "งานนำเสนอ 2x2" + +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "ตัวแปรที่ 1 (ค่าที่เป็นตัวเลข)" + +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "เพื่อนบ้าน" + +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "บวกค่าตัวเลขสองตัว" #: TurtleArt/tabasics.py:695 msgid "equal" msgstr "เท่ากับ" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "ไม่เป็น" + +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "คุณยังไม่ได้บันทึกไฟล์ คุณต้องการบันทึกก่อนปิดโปรแกรมหรือไม่?" + +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "เวลาเคลื่อนที่เต่าจะไม่วาดเส้น" + +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "ป๊อบ" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "ขนาดปากกา" + +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +#, fuzzy +msgid "read value from RFID device" +msgstr "อ่านค่าจากอุปกรณ์ RFID" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "เคลื่อนเต่าไปตามเส้นโค้ง" + #: TurtleArt/tabasics.py:699 msgid "logical equal-to operator" msgstr "เครื่องหมายเท่ากับ" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "ไม่" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "ชุดสีปากกา" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "เครื่องหมาย NOT" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "เคลื่อนเต่าไปข้างหลัง" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "บวก" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +#, fuzzy +msgid "Show blocks" +msgstr "แสดง blocks" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "เครื่องหมายบวก" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "เล่น" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "บันทึก" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "สี" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "ตั้งขนาดของเส้นที่จะถูกวาดโดยเต่า" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "เปิด" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "ทิศทาง" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ตำแหน่ง y" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "ถ้า" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "ย้ายเต่าไปยังตำแหน่ง x, ตำแหน่ง y; โดย (0,0) อยู่กลางหน้าจอ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "ภาษาไพทอน" + +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "หยุด" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "จบการเทสี" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "คัดลอก" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "วาง" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "กิจกรรม" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "เอาขึ้นเว็บ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "heap ว่าง" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "นำค่าออกจาก FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "ล้าง" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "มุม" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "เสียง" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "เครื่องมือ" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "ซ้าย" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "หมายเหตุ" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "นำค่าตัวเลขตัวล่างไปลบออกจากค่าตัวบน" + +#: 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 "แรงดันไฟฟ้า" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "ลบภาพและนำเต่ากลับมากลางหน้าจอ" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "ชุดคำสั่งควบคุมเต่า" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "การทำซ้ำตลอดเวลา" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "โครงการ" + +#: turtleblocks.py:402 +msgid "Debug" +msgstr "ดีบั๊ก" + +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "รหัสผ่าน" + +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "แบ่งปัน" + +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "น้อยกว่า" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "รากที่สอง" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "แสดง blocks" + +#: turtleblocks.py:362 +msgid "Quit" +msgstr "ออก" + +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "ตั้งค่าความเทา" + +#: turtleblocks.py:354 +msgid "New" +msgstr "ไฟล์ใหม่" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "อัตราขยาย" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "ปุ่ม" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "สีม่วง" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "กดเปิด" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "แฟ้มค่าปรับแต่ง" + +#: gnome_plugins/uploader_plugin.py:130 +#, fuzzy +msgid "Description:" +msgstr "คำอธิบาย:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "บันทึกประจำวัน" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "ลบขยะ" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "เวลาเคลื่อนที่เต่าจะวาดเส้น" + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "โหลด..." + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "หยุดเต่า" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "นำไปเก็บไว้" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +#, fuzzy +msgid "Hide blocks" +msgstr "ซ่อน blocks" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "บวก" #: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 msgid "or" msgstr "หรือ" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "ตั่งค่าขนาดตัวอักษรที่เต่าวาด" + +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "คือค่าทิศทางปัจจุบันของเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้" + +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "รูปภาพ" + +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "กลับสู่การสุ่มตัวเลข ระหว่าง ค่าที่น้อยที่สุด และ ค่าที่มากที่สุด" + +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "ค่าสีปัจจุบันของเต่า สามารถนำไปใช้เหมือนบล็อกตัวเลข" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "บันทึกรูปภาพไปที่ Sugar Journal" + +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "บันทึกภาพ" + +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "เริ่ม" + +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "เคลื่อนเต่าไปข้างหน้า" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "เดินหน้า" + +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "ค่าประจำตัวบัญชีผู้ใช้" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "กลับ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "งานนำเสนอ 1x1" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "งานนำเสนอ 1x2" + #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "เครื่องหมาย OR" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "บันทึก..." + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 #, fuzzy -msgid "Palette of flow operators" -msgstr "ชุดคำสั่งประมวลผลตัวเลข" +msgid "setxy" +msgstr "ตั้งค่าแกน xy" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "รอ" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "สีจอ" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "บันทึกเป็น" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "ตลอดไป" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "ตั้งค่าแกน xy" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "การทำซ้ำตลอดเวลา" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "ถังขยะ" #: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 msgid "repeat" msgstr "ซ้ำ" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "บันทึกเป็นรูปภาพ" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "แก้ไข" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "นำค่าตัวเลขตัวบน(ตัวตั้ง) หารด้วยตัวเลขตัวล่า(ตัวหาร)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "ใหญ่สุด" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "เริ่มเทสี" + +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# th.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "ใส่เข้าไป" + +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "คืนค่าทั้งหมด" + +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "ถ้า" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "แล้ว" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "ขวา" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "ถ้า... แล้ว..." +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "สีเทา" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "สีแดง" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "เอกลักษณ์" + +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "หารเอาเศษ" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "" #: TurtleArt/tabasics.py:781 msgid "if-then operator that uses boolean operators from Numbers palette" @@ -534,44 +2585,14 @@ msgstr "" msgid "jogs stack down" msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "หยุดกระทำการใด ๆ" - #: TurtleArt/tabasics.py:829 msgid "stops current action" msgstr "" -#: TurtleArt/tabasics.py:838 -#, fuzzy -msgid "Palette of variable blocks" -msgstr "ชุดคำสั่งตัวแปร" - -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "เริ่ม" - #: TurtleArt/tabasics.py:846 msgid "connects action to toolbar run buttons" msgstr "" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -#, fuzzy -msgid "text" -msgstr "ถ้ดไป" - -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "ค่า String" - #: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 #: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 #: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 @@ -588,52 +2609,14 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "นำไปเก็บที่ box 1" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -#, fuzzy -msgid "store in box 2" -msgstr "นำไปเก็บที่ box 1" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -#, fuzzy -msgid "box 1" -msgstr "กล่องที่ 2" - -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "ตัวแปรที่ 1 (ค่าที่เป็นตัวเลข)" - -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "กล่องที่ 2" - -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "ตัวแปรที่ 2 (ค่าที่เป็นตัวเลข)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "นำไปเก็บไว้" - -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "กล่อง" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "ค่า" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -673,68 +2656,15 @@ msgstr "" msgid "invokes Action 2 stack" msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "ถังขยะ" - -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "ลบขยะ" - #: TurtleArt/tabasics.py:1000 msgid "permanently deletes items in trash" msgstr "" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "คืนค่าทั้งหมด" - -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "คืนค่า Blocks ทั้งหมดจากถังขยะ" - -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "ล้างค่าทั้งหมด" - -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "ย้าย Block ทั้งหมดลงถังขยะ" - #: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 #: TurtleArtActivity.py:703 msgid "Share selected blocks" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -#, fuzzy -msgid "Title" -msgstr "ชื่อแทร็ก" - -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "หยุดเต่า" - -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -#, fuzzy -msgid "Show blocks" -msgstr "แสดง blocks" - -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -#, fuzzy -msgid "Hide blocks" -msgstr "ซ่อน blocks" - #: TurtleArt/talogo.py:511 msgid "did not output to" msgstr "" @@ -743,14 +2673,6 @@ msgstr "" msgid "I don't know how to" msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "ไม่เป็น" - -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "การนำเข้า" - #: TurtleArt/tapalette.py:97 msgid "displays next palette" msgstr "" @@ -759,27 +2681,6 @@ msgstr "" msgid "changes the orientation of the palette of blocks" msgstr "" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "โหลด..." - -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "บันทึก..." - -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "กดเปิด" - -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "ทิศทาง" - -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "ถ้ดไปถัดไป" - #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" @@ -795,33 +2696,6 @@ msgstr "" msgid "Select blocks to share" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "รูปภาพ" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "บันทึกเป็นโลโก้" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "บันทึกเป็นรูปภาพ" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "ภาพที่จับได้" - -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "บันทึกภาพ" - #: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 #: turtleblocks.py:378 msgid "Turn off hover help" @@ -847,44 +2721,11 @@ msgstr "" msgid "Rescale coordinates up" msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "แก้ไข" - -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -#, fuzzy -msgid "View" -msgstr "มุมมอง" - -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "โครงการ" - #: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 #: TurtleArtActivity.py:707 TurtleArtActivity.py:815 msgid "Save/Load" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "คัดลอก" - -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "วาง" - -#: TurtleArtActivity.py:591 -#, fuzzy -msgid "Restore blocks from trash" -msgstr "คืนค่า Blocks ทั้งหมดจากถังขยะ" - -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "เต็มจอ" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -897,42 +2738,10 @@ msgstr "" msgid "Metric coordinates" msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -#, fuzzy -msgid "Grow blocks" -msgstr "แสดง blocks" - #: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 msgid "Shrink blocks" msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -#, fuzzy -msgid "Load example" -msgstr "โหลดตัวอย่าง" - -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "ล้าง" - -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "ประมวลผล" - -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -#, fuzzy -msgid "Step" -msgstr "หยุด" - -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "ช่วยเหลือ" - -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "หยุด" - #: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 msgid "Load project" msgstr "" @@ -1000,107 +2809,24 @@ msgstr "" msgid "Enable collaboration" msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "กิจกรรม" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "คู่หู" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "แบ่งปัน" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "แฟ้มค่าปรับแต่ง" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "เพื่อนบ้าน" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "ชื่อเล่น" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "ค่าประจำตัวบัญชีผู้ใช้" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "เครื่องแม่ข่าย" - #: gnome_plugins/collaboration_plugin.py:298 msgid "Port" msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "รหัสผ่าน" - -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "สมัครสมาชิก" - -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "สี" - -#: gnome_plugins/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 "อัปโหลด" - #: gnome_plugins/fb_plugin.py:87 msgid "Facebook wall post" msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "เอาขึ้นเว็บ" - #: gnome_plugins/uploader_plugin.py:90 msgid "" "You must have an account at http://turtleartsite.sugarlabs.org to upload " "your project." msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "ชื่อผู้ใช้:" - -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "รหัสผ่าน:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "ชื่อแทร็ก:" - -#: gnome_plugins/uploader_plugin.py:130 -#, fuzzy -msgid "Description:" -msgstr "คำอธิบาย:" - #: gnome_plugins/uploader_plugin.py:140 msgid "Submit to Web" msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "ยกเลิก" - -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "เข้าใช้งานไม่ผ่าน" - -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "อัปโหลดล้มเหลว" - #: plugins/accelerometer/accelerometer.py:49 #: plugins/audio_sensors/audio_sensors.py:75 #: plugins/camera_sensor/camera_sensor.py:63 @@ -1119,21 +2845,11 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "เสียง" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "ระดับความดัง" - #: plugins/audio_sensors/audio_sensors.py:91 #: plugins/audio_sensors/audio_sensors.py:106 msgid "microphone input volume" @@ -1150,13 +2866,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "ความต้านทาน" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1164,13 +2873,6 @@ msgstr "ความต้านทาน" msgid "microphone input resistance" msgstr "" -#: 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 "แรงดันไฟฟ้า" - #: plugins/audio_sensors/audio_sensors.py:158 #: plugins/audio_sensors/audio_sensors.py:172 #: plugins/audio_sensors/audio_sensors.py:186 @@ -1183,20 +2885,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "ความสว่าง" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "ระดับแสงที่ตรวจพบโดยกล้อง" - #: 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" @@ -1210,26 +2898,6 @@ msgstr "" msgid "camera output" msgstr "" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "ระดับแสงที่ตรวจพบโดยเซ็นเซอร์วัดแสง" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -#, fuzzy -msgid "read value from RFID device" -msgstr "อ่านค่าจากอุปกรณ์ RFID" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -#, fuzzy -msgid "while" -msgstr "สีขาว" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 msgid "do-while-True operator that uses boolean operators from Numbers palette" msgstr "" @@ -1243,55 +2911,26 @@ msgstr "" msgid "do-until-True operator that uses boolean operators from Numbers palette" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -#, fuzzy -msgid "top" -msgstr "หยุด" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 msgid "top of a collapsible stack" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "บันทึกประจำวัน" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 msgid "Sugar Journal media object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "เสียง" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 msgid "Sugar Journal audio object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "รูปภาพ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -#, fuzzy -msgid "description" -msgstr "คำอธิบาย" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 msgid "Sugar Journal description field" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "แสดง" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 @@ -1302,40 +2941,14 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "ตั้งค่าเฉดสี" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "บันทึกรูปภาพ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "ชื่อรูปภาพ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "บันทึกรูปภาพไปที่ Sugar Journal" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "บันทึก SVG" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 msgid "saves turtle graphics as an SVG file in the Sugar Journal" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "อัตราขยาย" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 msgid "holds current scale value" msgstr "" @@ -1438,10 +3051,6 @@ msgstr "" msgid "query for keyboard input (results stored in keyboard block)" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "แป้นพิมพ์" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 msgid "holds results of query-keyboard block as ASCII" msgstr "" @@ -1462,10 +3071,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "เวลา" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1474,64 +3079,19 @@ msgstr "" msgid "Palette of extra options" msgstr "" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "ใส่เข้าไป" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "ใส่ค่าใน FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "แสดง heap" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "แสดงค่าใน FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "heap ว่าง" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 msgid "emptys FILO (first-in-last-out heap)" msgstr "" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "ป๊อบ" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "นำค่าออกจาก FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "heap ว่าง" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 msgid "returns True if heap is empty" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "หมายเหตุ" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "งานพิมพ์" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1544,12 +3104,6 @@ msgstr "" msgid "Python int operator" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "ภาษาไพทอน" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 msgid "" "a programmable block: used to add advanced single-variable math equations, e." @@ -1631,11 +3185,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "ตั้งค่าแกน xy" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1648,18 +3197,10 @@ msgstr "" msgid "Palette of presentation templates" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "ซ่อน blocks" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 msgid "declutters canvas by hiding blocks" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "แสดง blocks" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 msgid "restores hidden blocks" msgstr "" @@ -1708,18 +3249,10 @@ msgstr "" msgid "xcor of left of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "ปุ่ม" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "ความกว้าง" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1732,10 +3265,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "ความสูง" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1760,28 +3289,6 @@ msgstr "" msgid "right x" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -#, fuzzy -msgid "bottom y" -msgstr "ปุ่ม" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "งานนำเสนอ 1x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "งานนำเสนอ 2x1" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "งานนำเสนอ 1x2" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "งานนำเสนอ 2x2" - #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." msgstr "" @@ -1809,18 +3316,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "หยุด" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "เล่น" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "บันทึก" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1841,39 +3336,11 @@ msgstr "" msgid "No option action:" msgstr "" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "ไม่พบไฟล์" - #: turtleblocks.py:279 #, python-format msgid "Configuration directory not writable: %s" msgstr "" -#: turtleblocks.py:354 -msgid "New" -msgstr "ไฟล์ใหม่" - -#: turtleblocks.py:355 -msgid "Open" -msgstr "เปิด" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "บันทึก" - -#: turtleblocks.py:357 -msgid "Save as" -msgstr "บันทึกเป็น" - -#: turtleblocks.py:362 -msgid "Quit" -msgstr "ออก" - -#: turtleblocks.py:363 -msgid "File" -msgstr "แฟ้ม" - #: turtleblocks.py:370 msgid "Rescale coordinates" msgstr "" @@ -1886,14 +3353,6 @@ msgstr "" msgid "Show/hide blocks" msgstr "" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "เครื่องมือ" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "ดีบั๊ก" - #: turtleblocks.py:404 msgid "Turtle" msgstr "" @@ -1902,46 +3361,6 @@ msgstr "" msgid "About..." msgstr "" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "คุณยังไม่ได้บันทึกไฟล์ คุณต้องการบันทึกก่อนปิดโปรแกรมหรือไม่?" - -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "บันทึกโครงการ?" - -#, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "ชุดคำสั่งเซ็นเซอร์" - -#, fuzzy -#~ msgid "density" -#~ msgstr "เอกลักษณ์" - -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "ชุดคำสั่งเซ็นเซอร์" - -#, fuzzy -#~ msgid "light" -#~ msgstr "ขวา" - -#, fuzzy -#~ msgid "grey" -#~ msgstr "สีเทา" - -#, fuzzy -#~ msgid "read" -#~ msgstr "สีแดง" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "หารเอาเศษ" - -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "ชุดคำสั่งเซ็นเซอร์" - #, fuzzy #~ msgid "Palette of Arduino blocks" #~ msgstr "ชุดคำสั่งเซ็นเซอร์" diff --git a/po/tr.po b/po/tr.po index cb0e4f6..95af81f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -5,6 +5,30 @@ #, fuzzy msgid "" msgstr "" +"#-#-#-#-# tr.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# tr.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# tr.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# tr.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +42,1659 @@ msgstr "" "X-Generator: Translate Toolkit 1.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "renk" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "sağ" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "mod" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "kutu 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "kutu 1" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "başlık" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "kk" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "bekle" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "kutu" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "kalem boyu ayan" + +# +#: TurtleArt/tabasics.py:213 +#, fuzzy +msgid "set heading" +msgstr "seth" + +#: TurtleArt/tabasics.py:471 +#, fuzzy +msgid "set text size" +msgstr "kalem boyu ayan" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "gölge" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "kb" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "sonra" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "değil" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "kutu 1 de sakla" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "kutu 1 de sakla" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "yazdır" + +#: TurtleArt/tabasics.py:662 +#, fuzzy +msgid "number" +msgstr "Sayılar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +#, fuzzy +msgid "set scale" +msgstr "gölge ayarı" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "ve" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "renk ayarı" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "sürekli" + +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "temizle" + +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +#, fuzzy +msgid "Fullscreen" +msgstr "ekranı doldur" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "rastgele" + +#: TurtleArt/tabasics.py:454 +#, fuzzy +msgid "black" +msgstr "geri" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "x ekseni" + +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "yay" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "yarıçap" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "gölge ayarı" + +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "voska" + +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "kalem boyu" + +#: gnome_plugins/collaboration_plugin.py:304 +#, fuzzy +msgid "Colors" +msgstr "renk" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "y ekseni" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "eğer" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +#, fuzzy +msgid "Clean" +msgstr "temizle" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "açı" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "sol" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "veya" + +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "ileri" + +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "geri" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "eksen ayarla" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "ekranı doldur" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "eksen ayarla" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "tekrarla" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -32,37 +1709,18 @@ msgstr "" msgid "Palette of turtle commands" msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "ileri" - #: TurtleArt/tabasics.py:132 msgid "moves turtle forward" msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "geri" - #: TurtleArt/tabasics.py:143 msgid "moves turtle backward" msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "temizle" - #: TurtleArt/tabasics.py:154 msgid "clears the screen and reset the turtle" msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "sol" - #: TurtleArt/tabasics.py:166 msgid "turns turtle counterclockwise (angle in degrees)" msgstr "" @@ -76,76 +1734,31 @@ msgstr "sağ" msgid "turns turtle clockwise (angle in degrees)" msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "yay" - -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "açı" - -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "yarıçap" - #: TurtleArt/tabasics.py:190 msgid "moves turtle along an arc" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "eksen ayarla" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." msgstr "" -# -#: TurtleArt/tabasics.py:213 -#, fuzzy -msgid "set heading" -msgstr "seth" - #: TurtleArt/tabasics.py:217 msgid "sets the heading of the turtle (0 is towards the top of the screen.)" msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "x ekseni" - #: TurtleArt/tabasics.py:226 msgid "" "holds current x-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "y ekseni" - #: TurtleArt/tabasics.py:237 msgid "" "holds current y-coordinate value of the turtle (can be used in place of a " "number block)" msgstr "" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "başlık" - #: TurtleArt/tabasics.py:248 msgid "" "holds current heading value of the turtle (can be used in place of a number " @@ -156,23 +1769,6 @@ msgstr "" msgid "Palette of pen commands" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "ekranı doldur" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "renk" - -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "gölge" - #: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 msgid "fills the background with (color, shade)" msgstr "" @@ -183,18 +1779,10 @@ msgstr "" msgid "gray" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "renk ayarı" - #: TurtleArt/tabasics.py:317 msgid "sets color of the line drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "gölge ayarı" - #: TurtleArt/tabasics.py:329 msgid "sets shade of the line drawn by the turtle" msgstr "" @@ -219,26 +1807,14 @@ msgstr "" msgid "holds current gray level (can be used in place of a number block)" msgstr "" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "kb" - #: TurtleArt/tabasics.py:379 msgid "Turtle will not draw when moved." msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "kk" - #: TurtleArt/tabasics.py:388 msgid "Turtle will draw when moved." msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "kalem boyu ayan" - #: TurtleArt/tabasics.py:398 msgid "sets size of the line drawn by the turtle" msgstr "" @@ -259,10 +1835,6 @@ msgstr "" msgid "completes filled polygon (used with start fill block)" msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "kalem boyu" - #: TurtleArt/tabasics.py:427 msgid "holds current pen size (can be used in place of a number block)" msgstr "" @@ -303,11 +1875,6 @@ msgstr "" msgid "white" msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "geri" - #: TurtleArt/tabasics.py:460 msgid "set text color" msgstr "" @@ -316,11 +1883,6 @@ msgstr "" msgid "sets color of text drawn by the turtle" msgstr "" -#: TurtleArt/tabasics.py:471 -#, fuzzy -msgid "set text size" -msgstr "kalem boyu ayan" - #: TurtleArt/tabasics.py:474 msgid "sets size of text drawn by the turtle" msgstr "" @@ -391,10 +1953,6 @@ msgid "calculates square root" msgstr "" #: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "rastgele" - -#: TurtleArt/tabasics.py:646 msgid "min" msgstr "" @@ -406,11 +1964,6 @@ msgstr "" msgid "returns random number between minimum (top) and maximum (bottom) values" msgstr "" -#: TurtleArt/tabasics.py:662 -#, fuzzy -msgid "number" -msgstr "Sayılar" - #: TurtleArt/tabasics.py:663 msgid "used as numeric input in mathematic operators" msgstr "" @@ -439,26 +1992,14 @@ msgstr "" msgid "logical equal-to operator" msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "değil" - #: TurtleArt/tabasics.py:708 msgid "logical NOT operator" msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "ve" - #: TurtleArt/tabasics.py:718 msgid "logical AND operator" msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "veya" - #: TurtleArt/tabasics.py:729 msgid "logical OR operator" msgstr "" @@ -468,38 +2009,18 @@ msgstr "" msgid "Palette of flow operators" msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "bekle" - #: TurtleArt/tabasics.py:747 msgid "pauses program execution a specified number of seconds" msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "sürekli" - #: TurtleArt/tabasics.py:758 msgid "loops forever" msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "tekrarla" - #: TurtleArt/tabasics.py:770 msgid "loops specified number of times" msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "eğer" - -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "sonra" - #: TurtleArt/tabasics.py:779 msgid "if then" msgstr "" @@ -508,10 +2029,6 @@ msgstr "" msgid "if-then operator that uses boolean operators from Numbers palette" msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "voska" - #: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 msgid "if then else" msgstr "" @@ -588,34 +2105,18 @@ msgstr "" msgid "invokes named action stack" msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "kutu 1 de sakla" - #: TurtleArt/tabasics.py:888 msgid "stores numeric value in Variable 1" msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "kutu 1 de sakla" - #: TurtleArt/tabasics.py:901 msgid "stores numeric value in Variable 2" msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "kutu 1" - #: TurtleArt/tabasics.py:912 msgid "Variable 1 (numeric value)" msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "kutu 2" - #: TurtleArt/tabasics.py:922 msgid "Variable 2 (numeric value)" msgstr "" @@ -624,14 +2125,6 @@ msgstr "" msgid "store in" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "kutu" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -873,12 +2366,6 @@ msgstr "" msgid "Restore blocks from trash" msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -#, fuzzy -msgid "Fullscreen" -msgstr "ekranı doldur" - #: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 msgid "Cartesian coordinates" msgstr "" @@ -904,11 +2391,6 @@ msgstr "" msgid "Load example" msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -#, fuzzy -msgid "Clean" -msgstr "temizle" - #: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 msgid "Run" msgstr "" @@ -1036,11 +2518,6 @@ msgstr "" msgid "Register" msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -#, fuzzy -msgid "Colors" -msgstr "renk" - #: 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 @@ -1111,11 +2588,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1142,13 +2614,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1175,15 +2640,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1290,11 +2746,6 @@ msgstr "" msgid "show aligned" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -#, fuzzy -msgid "set scale" -msgstr "gölge ayarı" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 msgid "sets the scale of media" msgstr "" @@ -1450,10 +2901,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1515,10 +2962,6 @@ msgstr "" msgid "places a comment in your code" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "yazdır" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 msgid "prints value in status block at bottom of the screen" msgstr "" @@ -1618,11 +3061,6 @@ msgstr "" msgid "loads a block" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "eksen ayarla" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 msgid "palette" msgstr "" @@ -1703,10 +3141,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1719,10 +3153,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1897,14 +3327,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "light" -#~ msgstr "sağ" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "mod" - -#, fuzzy #~ msgid "full screen" #~ msgstr "ekranı doldur" diff --git a/po/tvl.po b/po/tvl.po index 6f07b7b..e2c329b 100644 --- a/po/tvl.po +++ b/po/tvl.po @@ -1,13 +1,50 @@ +# #-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# tvl.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,6 +59,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -100,14 +1592,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -162,12 +1646,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -627,10 +2105,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1107,11 +2581,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1138,13 +2607,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1171,15 +2633,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1445,10 +2898,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1697,10 +3146,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1713,10 +3158,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/tzo.po b/po/tzo.po index 8489f06..9b6ffd7 100644 --- a/po/tzo.po +++ b/po/tzo.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# tzo.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# tzo.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# tzo.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# tzo.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -17,6 +42,1461 @@ msgstr "" "X-Generator: Translate Toolkit 1.7.0\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -95,14 +1575,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -157,12 +1629,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -622,10 +2088,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1102,11 +2564,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1133,13 +2590,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1166,15 +2616,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1440,10 +2881,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1692,10 +3129,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1708,10 +3141,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/ug.po b/po/ug.po index 9e56428..1d3f683 100644 --- a/po/ug.po +++ b/po/ug.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1473 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +#, fuzzy +msgid "color" +msgstr "" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"رەڭ" + +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ug.po (PACKAGE VERSION) #-#-#-#-#\n" +"ئوڭ" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -100,14 +1592,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -162,13 +1646,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -#, fuzzy -msgid "color" -msgstr "رەڭ" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -629,10 +2106,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1109,11 +2582,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1140,13 +2608,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1173,15 +2634,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1447,10 +2899,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1699,10 +3147,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1715,10 +3159,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" @@ -1892,9 +3332,5 @@ msgstr "" msgid "Save project?" msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "ئوڭ" - #~ msgid " " #~ msgstr " " diff --git a/po/ur.po b/po/ur.po index 6f78740..8c6cb70 100644 --- a/po/ur.po +++ b/po/ur.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# ur.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ur.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# ur.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# ur.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -17,6 +42,1461 @@ msgstr "" "X-Generator: Pootle 1.1.0rc2\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -95,14 +1575,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -158,12 +1630,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -623,10 +2089,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1103,11 +2565,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1134,13 +2591,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1167,15 +2617,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1441,10 +2882,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1693,10 +3130,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1709,10 +3142,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/vi.po b/po/vi.po index 000ad16..8bdd616 100644 --- a/po/vi.po +++ b/po/vi.po @@ -1,13 +1,50 @@ +# #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1197 +59,1522 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "Khối rùa" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "Bảng chọn lệnh rùa" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "tiếp" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "chuyển rùa đi tới" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "lùi" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "chuyển rùa đi lùi" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "gột" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "xoá màn hình và đặt lại rùa" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "trái" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "quay rùa theo ngược chiều kim đồng hồ (góc theo độ)" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "phải" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "quay rùa theo chiều kim đồng hồ (góc theo độ)" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "cung" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "góc" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "bán kính" +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "chuyển rùa theo một hình cung" +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "đặt xy" +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "x" +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "y" +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:71 msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "di chuyển rùa tới vị trí xcor, ycor; (0, 0) là trung tâm của màn hình." +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "đặt hướng về" +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "đặt sự hướng về của rùa (0 là hướng về đầu màn hình)" +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "xcor" +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:76 +msgid "returns the value of the resistance" msgstr "" -"giữ giá trị đồ hoạ X hiện thời của rùa (cũng có thể được sử dụng để thay thế " -"một khối con số)" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "ycor" +#: taextras.py:77 +msgid "LED" +msgstr "" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" +#: taextras.py:78 +msgid "button" msgstr "" -"giữ giá trị đồ hoạ Y hiện thời của rùa (cũng có thể được sử dụng để thay thế " -"một khối con số)" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "tiêu đề" +#: taextras.py:79 +msgid "grayscale" +msgstr "" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" +#: taextras.py:80 +msgid "ambient light" msgstr "" -"giữ hướng về hiện thời của rùa (cũng có thể được sử dụng để thay thế một " -"khối con số)" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "Bảng chọn lệnh bút" +#: taextras.py:81 +msgid "temperature" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "đầy màn hình" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "màu" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "sắc màu" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "tô đầy nền bằng (màu, sắc)" +#: taextras.py:85 +msgid "vibration" +msgstr "" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" +#: taextras.py:86 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 "điện trở" + +#: taextras.py:87 +msgid "Butia Robot" msgstr "" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "đặt màu" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "thiết lập màu sắc cho đường do rùa vẽ" +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "Tô bóng" +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "đặt sắc màu của đường được rùa vẽ" +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "tô xám" +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "tô xám đường được rùa vẽ" +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "giữ màu bút hiện thời (cũng có thể dùng để thay thế một khối con số)" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "giữ sắc màu bút hiện thời" +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" -#: TurtleArt/tabasics.py:368 -#, fuzzy -msgid "holds current gray level (can be used in place of a number block)" +#: taextras.py:99 +msgid "move the Butia robot forward" msgstr "" -"giữ giá trị tỷ lệ hiện thời của rùa (cũng có thể được sử dụng để thay thế " -"một khối con số)" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "bút lên" +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "Con rùa sẽ không vẽ khi được di chuyển." +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "bút xuống" +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "Con rùa sẽ vẽ khi được di chuyển." +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "đặt kích cỡ bút" +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "đặt kích cỡ của đường được rùa vẽ" +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "bắt đầu lấp đầy" +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "bắt đầu việc lấp đầy đa giác (bằng cách kết thúc việc lấp đầy khối)" +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" +#: taextras.py:111 +msgid "turn Butia" msgstr "" -#: TurtleArt/tabasics.py:419 -#, fuzzy -msgid "completes filled polygon (used with start fill block)" -msgstr "bắt đầu việc lấp đầy đa giác (bằng cách kết thúc việc lấp đầy khối)" +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "kích cỡ bút" +#: taextras.py:113 +msgid "stop Butia" +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" +#: taextras.py:114 +msgid "stop the Butia robot" msgstr "" -"giữ kích cỡ bút hiện thời (cũng có thể dùng để thay thế một khối con số)" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "Bảng chọn màu sắc bút" +#: taextras.py:115 +msgid "Butia" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "đỏ" +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "cam" +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "vàng" +#: taextras.py:121 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "lục" +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "lục lam" +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "xanh" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "tím" +#: taextras.py:126 +msgid "FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:453 -#, fuzzy -msgid "white" -msgstr "trong khi" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:454 -#, fuzzy -msgid "black" -msgstr "lùi" +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "đặt màu chữ" +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "đặt màu của các chữ được rùa vẽ" +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "đặt kích cỡ chữ" +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:474 -#, fuzzy -msgid "sets size of text drawn by the turtle" -msgstr "đặt kích cỡ của các chữ được rùa vẽ" +#: taextras.py:133 +msgid "follow" +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "Bảng chọn toán tử thuộc số" +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "cộng" +#: taextras.py:135 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 "độ sáng" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "thêm hai đầu vào chữ số, chử cái" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "trừ" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "trừ đầu vào thuộc số dưới từ đầu vào thuộc số trên" +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "nhân" +#: taextras.py:139 +msgid "threshold" +msgstr "" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "nhân lên nhau hai đầu vào thuộc số" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "chia" +#: taextras.py:142 +msgid "camera mode" +msgstr "" -#: TurtleArt/tabasics.py:604 +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "chia đầu vào thuộc số trên (tử số) cho đầu vào thuộc số dưới (mẫu số)" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "nhận dạng" +#: taextras.py:149 +msgid "x position" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "toán tử nhận diện dùng để mở rộng khối" +#: taextras.py:150 +msgid "return x position" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "sửa" +#: taextras.py:151 +msgid "y position" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "toán tử đơn thể (phần dư)" +#: taextras.py:152 +msgid "return y position" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:153 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "căn bậc hai" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "tính căn bậc hai" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "ngẫu nhiên" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "tiểu" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "đại" +#: taextras.py:161 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" +#: taextras.py:162 +msgid "error in string conversion" msgstr "" -"trả lại một số ngẫu nhiên nằm giữa hai giá trị là tối thiểu (bên trên) và " -"tối đa (bên dưới)" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "số" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "dùng để nhập thuộc số trong toán tử toán học" +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "lớn hơn" +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "toán tử lớn-hơn lôgic" +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "nhỏ hơn" +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "toán tử nhỏ hơn lôgic" +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "bằng" +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "toán tử bằng-với lôgic" +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "không phải" +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "toán tử KHÔNG_PHẢI lôgic" +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "và" +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "toán tử VÀ lôgic" +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "hoặc" +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "toán tử HOẶC lôgic" +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "Bảng chọn toán tử luồng" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "đợi" +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "tạm dừng thực hiện chương trình trong một số giây đưa ra" +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "hẳn" +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "lặp lại vô hạn" +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "lặp lại" +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "lặp lại một số lần được ghi rõ" +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "nếu" +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "thì" +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "nếu thì" +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "toán tử nếu-thì mà sử dụng toán tử lôgic từ bảng chọn Số" +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "không thì" +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "nếu thì không thì" +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "toán tử nếu-thì-không_thì mà sử dụng toán tử lôgic từ bảng chọn Số" +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "khoảng nằm ngang" +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "đẩy nhẹ đống qua phải" +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "khoảng nằm dọc" +#: taextras.py:212 +msgid "distance to center" +msgstr "" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "đẩy nhẹ đống xuống dưới" +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "dừng hành vi" +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "dừng hành vi đang làm" +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "Bảng chọn khối biến đổi" +#: taextras.py:217 +msgid "update information" +msgstr "" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "đầu" +#: taextras.py:218 +msgid "update information from the server" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "kết nối hành vi đến nút chạy thanh công cụ" +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +#, fuzzy +msgid "Palette of physics blocks" +msgstr "Bảng chọn của khối cảm biến" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "văn bản" +#: taextras.py:224 +msgid "start polygon" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "giá trị chuỗi" +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "hành vi" +#: taextras.py:227 +msgid "add point" +msgstr "" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "đầu của đống hành vi có thể đặt tên" +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "gọi đống hành vi đặt tên" +#: taextras.py:230 +msgid "end polygon" +msgstr "" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "lưu vào hộp 1" +#: taextras.py:231 +#, fuzzy +msgid "Define a new polygon." +msgstr "Định nghĩa một đa giác lồi mới" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "cất giữ giá trị thuộc số trong Biến 1" +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "lưu vào hộp 2" +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "Không phải là hình đa giác đơn giản" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "cất giữ giá trị thuộc số trong Biến 2" +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "Định nghĩa một đa giác lồi mới" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "hộp 1" +#: taextras.py:235 +msgid "triangle" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "Biến 1 (giá trị thuộc số)" +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "hộp 2" +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "độ cao" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "Biến 2 (giá trị thuộc số)" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "lưu vào" +#: taextras.py:240 +msgid "circle" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "hộp" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "giá trị" +#: taextras.py:242 +msgid "rectangle" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "hộp mình" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "rộng" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "cất giữ giá trị thuộc số trong biến đặt tên" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "biến đặt tên (giá trị thuộc số)" +#: taextras.py:246 +msgid "reset" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "hành vi 1" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "đầu của đống Hành vi 1" +#: taextras.py:248 +msgid "motor" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "hành vi 2" +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "đầu của đống Hành vi 2" +#: taextras.py:251 +msgid "speed" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "gọi đống Hành vi 1" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "gọi đống Hành vi 2" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "thùng rác" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "đổ rác" +#: taextras.py:256 +msgid "joint" +msgstr "" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "xoá hoàn toàn các mục trong thùng rác" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "x" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "phục hồi tất cả" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "y" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "phục hồi từ sọt rác tất cả các khối" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" +#: taextras.py:261 +msgid "save as Physics activity" msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "Tiêu đề" +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "Dừng rùa" +#: taextras.py:266 +#, fuzzy +msgid "density" +msgstr "nhận dạng" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "Hiện khối" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "Ẩn khối" +#: taextras.py:269 +msgid "friction" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "đã không xuất tới" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "Tôi chưa biết cách" +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "không thích" +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "làm đầu vào" +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "hiển thị bảng chọn kế tiếp" +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "thay đổi hướng của bảng chọn khối" +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "Bảng chọn của khối cảm biến" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "tải xuống" +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "lưu lại" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "nhấn để mở" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "hướng" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "tiếp" +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" +#: taextras.py:294 +msgid "Motor A" msgstr "" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +#: taextras.py:295 +msgid "returns the current value of Motor A" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" +#: taextras.py:296 +msgid "Motor B" msgstr "" -# Tên: không nên dịch -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "Turtle Art" +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "ảnh" +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "Lưu dạng Biểu hình" +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "Lưu dạng ảnh" +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "hiện trạng" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "Lưu ảnh chụp" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "Hiện bảng chọn" +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "Ẩn bảng chọn" +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "Giảm toạ độ theo tỷ lệ" +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "màu" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "Tăng toạ độ theo tỷ lệ" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "phải" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "Sửa" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "âm thanh" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "Xem" +#: taextras.py:320 +msgid "grey" +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "Dự án" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "Chép" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "Dán" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArtActivity.py:591 +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "Thời gian" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 #, fuzzy -msgid "Restore blocks from trash" -msgstr "phục hồi từ sọt rác tất cả các khối" +msgid "port" +msgstr "Cổng" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "Toàn màn hình" +#: taextras.py:345 +msgid "power" +msgstr "" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "Toạ độ thuyết Đê-các-tơ" +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "Toạ độ cực" +#: taextras.py:348 +msgid "turn a motor" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "Tọa độ theo hệ Mét" +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "Khối lớn hơn" +#: taextras.py:350 +msgid "steering" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "Khối nhỏ hơn" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "Tải ví dụ" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "Làm sạch" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "Chạy" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "Bước" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "Trợ giúp" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "Dừng" +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" +#: taextras.py:358 +msgid "start motor" msgstr "" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" +#: taextras.py:359 +msgid "Run a motor forever." msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "Tải khối Python" +#: taextras.py:360 +msgid "brake motor" +msgstr "" -#: TurtleArtActivity.py:766 -msgid "Palettes" +#: taextras.py:361 +msgid "Stop a specified motor." msgstr "" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" msgstr "" -# Phím tắt này tương ứng với hành động nào? -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "Tổ hợp phím Ctrl+p" +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "Tổ hợp phím Ctrl+e" +#: taextras.py:365 +msgid "motor position" +msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "Tổ hợp phím Ctrl+r" +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "Tổ hợp phím Ctrl+w" +#: taextras.py:367 +msgid "PORT 1" +msgstr "" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "Tổ hợp phím Ctrl+s" +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "đỏ" + +#: taextras.py:370 +#, fuzzy +msgid "sensor" +msgstr "" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Máy nhạy" + +#: taextras.py:371 +msgid "Read sensor output." msgstr "" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:372 +msgid "PORT 2" msgstr "" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." +#: taextras.py:373 +msgid "PORT 2 of the brick" msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" +#: taextras.py:374 +msgid "light sensor" msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "Buổi học Turtle Art của tôi" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "Kích hoạt tính năng cộng tác" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "Hoạt động" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "Bạn" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "Chia sẻ" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "Cấu hình" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "Hàng xóm" +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "Tên riêng" +#: taextras.py:382 +msgid "sound sensor" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "Tài khoản" +#: taextras.py:383 +msgid "color sensor" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "Máy chủ" +#. 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:386 +msgid "set light" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "Cổng" +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "Mật khẩu" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "Đăng ký" +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "Màu" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" -#: 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 "Tải lên" +#: taextras.py:396 +msgid "LOW" +msgstr "" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +#: taextras.py:397 +msgid "INPUT" msgstr "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "Tải lên Web" +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" -#: gnome_plugins/uploader_plugin.py:90 +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "sửa" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "giá trị" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." +"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 "" -"Bạn phải có một tài khoản ở trang Web http://turtleartsite.sugarlabs.org để " -"tải lên dự án của bạn" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "Tên người dùng:" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "Mật khẩu:" +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "Tiêu đề:" +#: taextras.py:428 +msgid "digital read" +msgstr "" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "Mô tả:" +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "Gửi lên web" +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "Hủy bỏ" +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "Đăng nhập thất bại" +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "tải lên thất bại" +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" -#: 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:330 -msgid "Palette of sensor blocks" +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" msgstr "Bảng chọn của khối cảm biến" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "gia tốc" +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "đẩy gia tốc trong x, y, z xếp thành đống" +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "âm thanh" +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "tín hiệu thô đầu vào máy vi âm" +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "độ lớn" +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "âm lượng đầu vào máy vi âm" +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "cường độ" +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "cường độ đầu vào máy vi âm" +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" -#: 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 "điện trở" +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" -#: 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 "điện trở đầu vào máy vi âm" +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: 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 "điện áp" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: 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 "điện áp đầu vào máy vi âm" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "Bảng chọn của đối tượng phương tiện truyền thông" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: 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 "độ sáng" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "mức độ ánh sáng được phát hiện bởi máy ảnh" +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-#\n" +"Mẫu lấy" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "Tiêu đề" #: 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 "màu sắc Trung bình RGB từ máy ảnh được đẩy vào ngăp xếp" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "vàng" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "hiển thị toạ độ cực" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "trống miền FILO ( vào trước, ra sau)" + #: plugins/camera_sensor/camera_sensor.py:106 #: plugins/camera_sensor/camera_sensor.py:113 #: plugins/camera_sensor/camera_sensor.py:121 @@ -1221,353 +1583,1027 @@ msgstr "màu sắc Trung bình RGB từ máy ảnh được đẩy vào ngăp x msgid "camera output" msgstr "đầu ra máy ảnh" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "mức độ ánh sáng được phát hiện bởi bộ cảm biến ánh sáng" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "đẩy gia tốc trong x, y, z xếp thành đống" + +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "toán tử nếu-thì mà sử dụng toán tử lôgic từ bảng chọn Số" + +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "đẩy nhẹ đống qua phải" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "đối tượng phương tiện truyền thông Nhật ký Sugar" + +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "hộp 2" + +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "hộp 1" + +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "Bước" + +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "nhân lên nhau hai đầu vào thuộc số" + +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "Hiện/ẩn khối" + +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "Ẩn bảng chọn" + +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "Bạn" + +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "Buổi học Turtle Art của tôi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "đối tượng hình ảnh chuyển động Nhật ký Sugar" + +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "lục lam" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "xcor bên phải màn hình" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "Bảng chọn tuỳ chọn bổ sung" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "Tải ví dụ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "danh sách" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "tiêu đề" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "lưu đồ họa rùa dưới dạng một tập tin SVG trong Nhật ký Sugar" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "vẽ văn bản hoặc hiển thị phương tiện truyền thông từ Nhật ký" # http://en.wikipedia.org/wiki/Radio-frequency_identification #: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 msgid "RFID" msgstr "Nhận dạng tần số vô tuyến" -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "đọc giá trị từ thiết bị Nhận dạng tần số vô tuyến" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "hình ảnh chuyển động" + +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "xanh" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "hiển thị toạ độ thuyết Đê-các-tơ" + +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "đẩy nhẹ đống xuống dưới" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "toán tử đơn thể (phần dư)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "tọa độ y phía dưới" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "lưu SVG" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "chạy mã nguồn được tìm trong mô-đun tamyblock.py có trong Nhật ký" + +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "bút xuống" + +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "đợi" + +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "hộp" + +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "tải lên thất bại" + +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "gọi đống hành vi đặt tên" + +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "hành vi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "toán tử làm-đến-khi-Đúng mà sử dụng toán tử lôgic từ bảng chọn Số" + +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "Biến 2 (giá trị thuộc số)" + +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "chia" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "tên ảnh" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 msgid "while" msgstr "trong khi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "toán tử làm-trong-khi-Đúng mà sử dụng toán tử lôgic từ bảng chọn Số" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "chiều rộng vùng vẽ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "miền nhớ trống" + +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "biến đặt tên (giá trị thuộc số)" + +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "tiếp" + +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "nếu thì" + +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "đặt kích cỡ bút" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "mẫu trình diễn: chọn đối tượng Nhật ký (không mô tả)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 msgid "until" msgstr "đến khi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "toán tử làm-đến-khi-Đúng mà sử dụng toán tử lôgic từ bảng chọn Số" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "xoá hoàn toàn các mục trong thùng rác" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "trên" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "đầu của đống Hành vi 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "đầu của một đống có thể thu gọn" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "" +"Một cách lập trình:sử dụng bằng cách thêm các phương trình đơn biến như sin" +"(x)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "nhật ký" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "Bảng chọn toán tử luồng" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "đối tượng phương tiện truyền thông Nhật ký Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "đầu của một đống đã thu gọn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "âm thanh" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "toán tử nếu-thì-không_thì mà sử dụng toán tử lôgic từ bảng chọn Số" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "đối tượng âm thanh Nhật ký Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "Trả về tọa độ y của con trỏ chuột" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "hình ảnh chuyển động" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "giữ sắc màu bút hiện thời" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "đối tượng hình ảnh chuyển động Nhật ký Sugar" +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "Sóng hình sin" + +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "Đăng nhập thất bại" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "tọa độ x phía trái" + +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "đặt hướng về" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "Khối màu RGB theo màu mà con rùa nhìn thấy được đưa vào stack" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "làm sạch sẽ vùng vẽ bằng cách ẩn các khối" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "Tổ hợp phím Ctrl+w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "Tổ hợp phím Ctrl+r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "Tổ hợp phím Ctrl+s" + +# Phím tắt này tương ứng với hành động nào? +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "Tổ hợp phím Ctrl+p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "Tổ hợp phím Ctrl+e" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "khoảng nằm ngang" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "Tọa độ theo hệ Mét" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "giá trị chuỗi" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 msgid "description" msgstr "mô tả" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "trường mô tả Nhật ký Sugar" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "Tôi chưa biết cách" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "hiển thị" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "đặt kích cỡ chữ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "vẽ văn bản hoặc hiển thị phương tiện truyền thông từ Nhật ký" +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "Tên người dùng:" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "hiện liên kết" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "bắt đầu việc lấp đầy đa giác (bằng cách kết thúc việc lấp đầy khối)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "đặt tỷ lệ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "mẫu trình diễn: chọn 4 đối tượng Nhật ký" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "đặt tỷ lệ của phương tiện truyền thông" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "Xem" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "tô xám đường được rùa vẽ" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "Mật khẩu:" + +# Số màu rùa thấy được +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "Màu mà rùa nhìn thấy" + +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "dừng hành vi" + +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "lục" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "sắc màu" + +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "tô đầy nền bằng (màu, sắc)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 msgid "save picture" msgstr "lưu ảnh" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "tên ảnh" +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "cường độ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "lưu một ảnh vào Nhật ký Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "trả về 1 nếu nhấn chuột" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "lưu SVG" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "Tăng toạ độ theo tỷ lệ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "lưu đồ họa rùa dưới dạng một tập tin SVG trong Nhật ký Sugar" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "bút lên" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "tỷ lệ" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "cam" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "giữ giá trị tỷ lệ hiện thời" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "tạm dừng thực hiện chương trình trong một số giây đưa ra" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "đẩy giá trị vào miền nhớ FILO (vào trước thì ra sau)" + +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "thì" + +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "Đăng ký" + +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "không phải" + +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "nếu thì không thì" + +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "dừng hành vi đang làm" + +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "quay rùa theo chiều kim đồng hồ (góc theo độ)" + +#: TurtleArt/tabasics.py:368 +#, fuzzy +msgid "holds current gray level (can be used in place of a number block)" +msgstr "" +"giữ giá trị tỷ lệ hiện thời của rùa (cũng có thể được sử dụng để thay thế " +"một khối con số)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "xcor bên trái màn hình" + +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "Đặt lại kích cỡ khối" + +# Tên: không nên dịch +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "rùa" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "hiển thị bảng chọn kế tiếp" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "ẩn khối" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "mức độ ánh sáng được phát hiện bởi máy ảnh" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "toán tử nhỏ hơn lôgic" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "phục hồi từ sọt rác tất cả các khối" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "Lưu" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "lưu vào hộp 1" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "lưu vào hộp 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "ẩn các thanh công cụ Sugar" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"giữ giá trị đồ hoạ X hiện thời của rùa (cũng có thể được sử dụng để thay thế " +"một khối con số)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "in" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "Trả về toạ độ x của con trỏ chuột" + +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "Lưu dạng Biểu hình" + +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "thiết lập màu sắc cho đường do rùa vẽ" + +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "đặt màu chữ" + +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "độ lớn" + +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "Kích hoạt tính năng cộng tác" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#, fuzzy +msgid "returns True if mouse button is pressed" +msgstr "trả về 1 nếu nhấn chuột" + +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "số" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "truy vấn bàn phím" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "trên" + +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "Gửi lên web" + +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "Toạ độ thuyết Đê-các-tơ" + +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "Tên riêng" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "đặt tỷ lệ" + +#: TurtleArt/tabasics.py:453 +#, fuzzy +msgid "white" +msgstr "trong khi" + +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "kết nối hành vi đến nút chạy thanh công cụ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "Thời gian trôi qua từ khi khởi động chương trình" + +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "Hủy bỏ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "chiều cao vùng vẽ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "trình diễn 2×1" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "trừ" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "và" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "đầu của một đống có thể thu gọn" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "làm đầu vào" + +#: 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:653 +msgid "Python block" +msgstr "Khối ngôn ngữ lập trình Python" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 msgid "media wait" msgstr "Chờ chạy chương trình chơi nhạc" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "đợi cho đoạn video hoặc âm thanh chạy hết" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "gia tốc" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" msgstr "" +"giữ kích cỡ bút hiện thời (cũng có thể dùng để thay thế một khối con số)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "đặt màu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "tiểu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 +#, fuzzy +msgid "loads a block" +msgstr "nạp khối của mình" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "Bảng chọn lệnh bút" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "hiển thị các giá trị trong miền nhớ FILO (vào trước thì ra sau)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "Nói" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "toán tử làm-trong-khi-Đúng mà sử dụng toán tử lôgic từ bảng chọn Số" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "Chào" +#: turtleblocks.py:363 +msgid "File" +msgstr "Tập tin" + +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "toán tử KHÔNG_PHẢI lôgic" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "ycor bên dưới màn hình" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "mẫu trình diễn: chọn đối tượng Nhật ký (với mô tả)" + +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "Bảng chọn toán tử thuộc số" + +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "nhân" + +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "hẳn" + +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "đặt sắc màu của đường được rùa vẽ" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 msgid "speaks text" msgstr "Nguyên bản lời nói" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "Sóng hình sin" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "hiện trạng" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "gột" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "Duy trỳ" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 +msgid "presentation template: select two Journal objects" +msgstr "mẫu trình diễn: chọn 2 đối tượng Nhật ký" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "Sử dụng sóng hình sin tai tần số, biên độ và thời gian( tính bằng giây)" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "Khối lớn hơn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "nút xuống( trong bàn phím vi tính)" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "Toàn màn hình" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "trả về 1 nếu nhấn chuột" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "hiển thị" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "văn bản" + +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "ngẫu nhiên" + +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "toán tử lớn-hơn lôgic" + +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "quay rùa theo ngược chiều kim đồng hồ (góc theo độ)" + +#: TurtleArt/tabasics.py:454 #, fuzzy -msgid "returns True if mouse button is pressed" -msgstr "trả về 1 nếu nhấn chuột" +msgid "black" +msgstr "lùi" + +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "tính căn bậc hai" + +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "" +"giữ giá trị đồ hoạ Y hiện thời của rùa (cũng có thể được sử dụng để thay thế " +"một khối con số)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 msgid "mouse x" msgstr "Tọa độ x của chuột(vói x là tọa độ của trục hoành)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "Trả về toạ độ x của con trỏ chuột" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 msgid "mouse y" msgstr "Tọa độ y của chuột(vói y là tọa độ của trục hoành)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "Trả về tọa độ y của con trỏ chuột" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "dừng" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "truy vấn bàn phím" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "lớn hơn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "yêu cầu đầu vào bàn phím (kết quả được lưu vào khối bàn phím)" +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "xcor" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "Trợ giúp" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "chọn con rùa nào cần điều khiển" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "tọa độ x phía phải" + +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "đặt màu của các chữ được rùa vẽ" + +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "mức độ ánh sáng được phát hiện bởi bộ cảm biến ánh sáng" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 msgid "keyboard" msgstr "bàn phím" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "cung" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "bán kính" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "Toạ độ cực" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "Tô bóng" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "toán tử VÀ lôgic" + +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"Bạn phải có một tài khoản ở trang Web http://turtleartsite.sugarlabs.org để " +"tải lên dự án của bạn" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "Chạy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "hiện miền nhớ" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "đặt sự hướng về của rùa (0 là hướng về đầu màn hình)" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "âm lượng đầu vào máy vi âm" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "Tiêu đề:" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "Bảng chọn của đối tượng phương tiện truyền thông" + +#: TurtleArtActivity.py:591 #, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "giữ kết quả của khối yêu-cầu-bàn-phím" +msgid "Restore blocks from trash" +msgstr "phục hồi từ sọt rác tất cả các khối" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "Đọc điểm ảnh" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "Bảng chọn khối biến đổi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "Khối màu RGB theo màu mà con rùa nhìn thấy được đưa vào stack" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "dùng để nhập thuộc số trong toán tử toán học" -# Số màu rùa thấy được -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "Màu mà rùa nhìn thấy" +#: 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 "Tải lên" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "trả về màu mà con rùa nhìn thấy" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "Máy chủ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "Thời gian" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "trình diễn 2×2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "Thời gian trôi qua từ khi khởi động chương trình" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "Biến 1 (giá trị thuộc số)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "Bảng chọn tuỳ chọn bổ sung" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "Hàng xóm" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "đẩy" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "thêm hai đầu vào chữ số, chử cái" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "đẩy giá trị vào miền nhớ FILO (vào trước thì ra sau)" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "bằng" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "hiện miền nhớ" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "không thì" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "hiển thị các giá trị trong miền nhớ FILO (vào trước thì ra sau)" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "không thích" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "miền nhớ trống" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "phục hồi các khối bị ẩn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "trống miền FILO ( vào trước, ra sau)" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "Con rùa sẽ không vẽ khi được di chuyển." +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# #. TRANS: pop removes a new item from the program stack #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 msgid "pop" msgstr "Đẩy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "đẩy giá trị ra miền nhớ FILO (vào trước thì ra sau)" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "kích cỡ bút" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "miền nhớ trống" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "mai rùa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" msgstr "" +"Sử dụng sóng hình sin tai tần số, biên độ và thời gian( tính bằng giây)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "ghi chú" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "đặt một ghi chú vào mã nguồn của bạn" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "Nói" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "in" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "đọc giá trị từ thiết bị Nhận dạng tần số vô tuyến" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "in giá trị trạng thái ở phần dưới màn hình" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "chuyển rùa theo một hình cung" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "toán tử bằng-với lôgic" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "Bảng chọn màu sắc bút" -# Tên ngôn ngữ lập trình: đừng dịch -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "cất giữ giá trị thuộc số trong Biến 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "" -"Một cách lập trình:sử dụng bằng cách thêm các phương trình đơn biến như " -"sin(x)" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "cất giữ giá trị thuộc số trong Biến 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "đặt một chiếc mai tùy thích lên chú rùa" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "nút xuống( trong bàn phím vi tính)" + +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "chuyển rùa đi lùi" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "ycor bên trên màn hình" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "Hiện khối" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "chơi" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "lưu" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "Màu" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "đặt kích cỡ của đường được rùa vẽ" + +#: turtleblocks.py:355 +msgid "Open" +msgstr "Mở" + +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "hướng" + +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "ycor" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 msgid "" @@ -1577,228 +2613,727 @@ msgstr "" "Một phương thức lập trình: được sử dụng để thêm nhiều phương trình toán học " "đa biến" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "nếu" + +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "" -"Một cách lập trình:sử dụng bằng cách thêm các phương trình đabiến như " -"sin(x+y+z)" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "di chuyển rùa tới vị trí xcor, ycor; (0, 0) là trung tâm của màn hình." -#: 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:653 -msgid "Python block" -msgstr "Khối ngôn ngữ lập trình Python" +# Tên ngôn ngữ lập trình: đừng dịch +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "chạy mã nguồn được tìm trong mô-đun tamyblock.py có trong Nhật ký" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "Dừng" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "hành vi 2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "hành vi 1" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "Chép" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "Dán" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "đã không xuất tới" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "Hoạt động" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "Tải lên Web" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "miền nhớ trống" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "đẩy giá trị ra miền nhớ FILO (vào trước thì ra sau)" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "Làm sạch" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "Bảng chọn mẫu trình diễn" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "góc" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "tọa độ y phía trên" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "âm thanh" + +#: turtleblocks.py:396 +msgid "Tools" +msgstr "Công cụ" + +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "trái" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "ghi chú" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "trừ đầu vào thuộc số dưới từ đầu vào thuộc số trên" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "yêu cầu đầu vào bàn phím (kết quả được lưu vào khối bàn phím)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 msgid "Cartesian" msgstr "thuyết Đê-các-tơ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "hiển thị toạ độ thuyết Đê-các-tơ" +#: 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 "điện áp" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "cực" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "xoá màn hình và đặt lại rùa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "hiển thị toạ độ cực" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "tín hiệu thô đầu vào máy vi âm" -# Tên: không nên dịch -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "rùa" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "trả về màu mà con rùa nhìn thấy" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "chọn con rùa nào cần điều khiển" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "gọi đống Hành vi 1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "mai rùa" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "Bảng chọn lệnh rùa" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "đặt một chiếc mai tùy thích lên chú rùa" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "lặp lại vô hạn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "đầu của một đống đã thu gọn" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "hiện liên kết" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "" +# Tên: không nên dịch +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "Turtle Art" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:746 -#, fuzzy -msgid "loads a block" -msgstr "nạp khối của mình" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "Dự án" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "đặt xy" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "Gỡ lỗi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "Mật khẩu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "khoảng nằm dọc" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "Bảng chọn mẫu trình diễn" +#: TurtleArt/tabasics.py:419 +#, fuzzy +msgid "completes filled polygon (used with start fill block)" +msgstr "bắt đầu việc lấp đầy đa giác (bằng cách kết thúc việc lấp đầy khối)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "ẩn khối" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "Chia sẻ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "làm sạch sẽ vùng vẽ bằng cách ẩn các khối" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "nhỏ hơn" + +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "căn bậc hai" + +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "Đặt lại tỷ lệ toạ độ" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 msgid "show blocks" msgstr "hiện khối" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "phục hồi các khối bị ẩn" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "ẩn các thanh công cụ Sugar" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "trường mô tả Nhật ký Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "danh sách" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "tô xám" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 msgid "presentation bulleted list" msgstr "trình diễn danh sách nút" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "Duy trỳ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "đặt một ghi chú vào mã nguồn của bạn" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "Đọc điểm ảnh" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "tỷ lệ" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "dưới" + +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "tím" + +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "Giảm toạ độ theo tỷ lệ" + +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "nhấn để mở" + +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "cường độ đầu vào máy vi âm" + +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "Cấu hình" + +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "Mô tả:" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "nhật ký" + +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "đổ rác" + +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "Con rùa sẽ vẽ khi được di chuyển." + +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "tải xuống" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "đối tượng âm thanh Nhật ký Sugar" + +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "Dừng rùa" + +# Tên: không nên dịch +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "Rùa" + +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "thay đổi hướng của bảng chọn khối" + +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "lưu vào" + +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "Ẩn khối" + +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "Tải khối Python" + +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "cộng" + +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "hoặc" + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 msgid "presentation template: list of bullets" msgstr "mẫu trình diễn: danh sách chấm điểm" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "mẫu trình diễn: chọn đối tượng Nhật ký (không mô tả)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "mẫu trình diễn: chọn đối tượng Nhật ký (với mô tả)" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "toán tử nhận diện dùng để mở rộng khối" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "mẫu trình diễn: chọn 4 đối tượng Nhật ký" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "Khối nhỏ hơn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:996 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1011 -msgid "presentation template: select two Journal objects" -msgstr "mẫu trình diễn: chọn 2 đối tượng Nhật ký" +#: TurtleArt/tabasics.py:474 +#, fuzzy +msgid "sets size of text drawn by the turtle" +msgstr "đặt kích cỡ của các chữ được rùa vẽ" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "xcor bên trái màn hình" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "" +"giữ hướng về hiện thời của rùa (cũng có thể được sử dụng để thay thế một " +"khối con số)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "dưới" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "ảnh" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "ycor bên dưới màn hình" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "" +"trả lại một số ngẫu nhiên nằm giữa hai giá trị là tối thiểu (bên trên) và " +"tối đa (bên dưới)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "rộng" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "giữ màu bút hiện thời (cũng có thể dùng để thay thế một khối con số)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "chiều rộng vùng vẽ" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "Hiện bảng chọn" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "xcor bên phải màn hình" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "lưu một ảnh vào Nhật ký Sugar" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "ycor bên trên màn hình" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "Lưu ảnh chụp" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "độ cao" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "đầu" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "chiều cao vùng vẽ" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "chuyển rùa đi tới" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "tiêu đề x" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "tiếp" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "tiêu đề y" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "hộp mình" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "tọa độ x phía trái" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "Tài khoản" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "tọa độ y phía trên" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "lùi" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "tọa độ x phía phải" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "đặt tỷ lệ của phương tiện truyền thông" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "tọa độ y phía dưới" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "giữ giá trị tỷ lệ hiện thời" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 msgid "presentation 1x1" msgstr "trình diễn 1×1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "trình diễn 2×1" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 msgid "presentation 1x2" msgstr "trình diễn 1×2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "trình diễn 2×2" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "đầu của đống hành vi có thể đặt tên" + +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "cất giữ giá trị thuộc số trong biến đặt tên" + +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "toán tử HOẶC lôgic" + +#: 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 "điện áp đầu vào máy vi âm" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "lặp lại một số lần được ghi rõ" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "lưu lại" + +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "gọi đống Hành vi 2" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +#, fuzzy +msgid "setxy" +msgstr "đặt xy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "tiêu đề y" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "tiêu đề x" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "đầy màn hình" + +#: turtleblocks.py:357 +#, fuzzy +msgid "Save as" +msgstr "Lưu dạng" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "đặt xy" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "thùng rác" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "cực" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "lặp lại" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "đợi cho đoạn video hoặc âm thanh chạy hết" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "Lưu dạng ảnh" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "Sửa" + +#: 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 "điện trở đầu vào máy vi âm" + +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "đầu của đống Hành vi 2" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "chia đầu vào thuộc số trên (tử số) cho đầu vào thuộc số dưới (mẫu số)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "đại" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "in giá trị trạng thái ở phần dưới màn hình" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "bắt đầu lấp đầy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +#, fuzzy +msgid "holds results of query-keyboard block as ASCII" +msgstr "giữ kết quả của khối yêu-cầu-bàn-phím" + +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# vi.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "đẩy" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "" +"Một cách lập trình:sử dụng bằng cách thêm các phương trình đabiến như sin(x+y" +"+z)" + +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "phục hồi tất cả" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "Chào" + +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "Khối rùa" + +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" + +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "phải" + +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "" + +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "đỏ" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "nhận dạng" + +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "sửa" + +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "" + +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" + +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "" + +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" + +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "" + +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "" + +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "" + +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "" + +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "" + +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "" + +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" + +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "" + +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "" + +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" + +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "" + +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "" + +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "Cổng" + +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" + +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "Bảng chọn của khối cảm biến" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "" #: pysamples/brain.py:43 msgid "Please install the Speak Activity and try again." @@ -1827,18 +3362,6 @@ msgstr "" msgid "push destination rgb value to heap" msgstr "" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "dừng" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "chơi" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "lưu" - #: pysamples/journal-stats.py:78 msgid "other" msgstr "" @@ -1872,52 +3395,10 @@ msgstr "" msgid "New" msgstr "" -#: turtleblocks.py:355 -msgid "Open" -msgstr "Mở" - -#: turtleblocks.py:356 -msgid "Save" -msgstr "Lưu" - -#: turtleblocks.py:357 -#, fuzzy -msgid "Save as" -msgstr "Lưu dạng" - #: turtleblocks.py:362 msgid "Quit" msgstr "" -#: turtleblocks.py:363 -msgid "File" -msgstr "Tập tin" - -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "Đặt lại tỷ lệ toạ độ" - -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "Đặt lại kích cỡ khối" - -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "Hiện/ẩn khối" - -#: turtleblocks.py:396 -msgid "Tools" -msgstr "Công cụ" - -#: turtleblocks.py:402 -msgid "Debug" -msgstr "Gỡ lỗi" - -# Tên: không nên dịch -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "Rùa" - #: turtleblocks.py:407 msgid "About..." msgstr "" @@ -1931,56 +3412,6 @@ msgid "Save project?" msgstr "" #, fuzzy -#~ msgid "Palette of physics blocks" -#~ msgstr "Bảng chọn của khối cảm biến" - -#, fuzzy -#~ msgid "Define a new polygon." -#~ msgstr "Định nghĩa một đa giác lồi mới" - -#~ msgid "Not a simple polygon" -#~ msgstr "Không phải là hình đa giác đơn giản" - -#~ msgid "Define a new filled polygon." -#~ msgstr "Định nghĩa một đa giác lồi mới" - -#, fuzzy -#~ msgid "density" -#~ msgstr "nhận dạng" - -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "Bảng chọn của khối cảm biến" - -#, fuzzy -#~ msgid "light" -#~ msgstr "phải" - -#, fuzzy -#~ msgid "port" -#~ msgstr "Cổng" - -#, fuzzy -#~ msgid "read" -#~ msgstr "đỏ" - -#, fuzzy -#~ msgid "sensor" -#~ msgstr "Máy nhạy" - -#, fuzzy -#~ msgid "mode" -#~ msgstr "sửa" - -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "Bảng chọn của khối cảm biến" - -#, fuzzy -#~ msgid "samples" -#~ msgstr "Mẫu lấy" - -#, fuzzy #~ msgid "Palette of Arduino blocks" #~ msgstr "Bảng chọn của khối cảm biến" @@ -2040,10 +3471,11 @@ msgstr "" #~ msgid "restore last" #~ msgstr "phục hồi cái cuối" -#~ 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 "" -#~ "một khối có thể lập trình: dùng để thêm phương trình toán học cấp cao, v.d. " -#~ "sin(x)" +#~ "một khối có thể lập trình: dùng để thêm phương trình toán học cấp cao, v." +#~ "d. sin(x)" #, fuzzy #~ msgid "blocks" @@ -2056,7 +3488,8 @@ msgstr "" #~ msgstr "điện trở đầu vào máy nhạy" #~ msgid "holds current text color (can be used in place of a number block)" -#~ msgstr "giữ màu chữ hiện thời (cũng có thể dùng để thay thế một khối con số)" +#~ msgstr "" +#~ "giữ màu chữ hiện thời (cũng có thể dùng để thay thế một khối con số)" #~ msgid "picture top" #~ msgstr "trên ảnh" @@ -2142,10 +3575,11 @@ msgstr "" #~ "giữ sắc màu bút hiện thời (cũng có thể dùng để thay thế một khối con số)" #~ msgid "" -#~ "a programmable block: add your own math equation in the block, e.g., sin(x)" +#~ "a programmable block: add your own math equation in the block, e.g., sin" +#~ "(x)" #~ msgstr "" -#~ "một khối có thể lập trình: hãy thêm vào khối phương trình toán tử của mình, " -#~ "v.d. sin(x)" +#~ "một khối có thể lập trình: hãy thêm vào khối phương trình toán tử của " +#~ "mình, v.d. sin(x)" #~ msgid "pop value off FILO" #~ msgstr "bỏ giá trị ra FILO" diff --git a/po/wa.po b/po/wa.po index 585301e..99e3376 100644 --- a/po/wa.po +++ b/po/wa.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# wa.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# wa.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# wa.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# wa.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/yo.po b/po/yo.po index 75a6c7a..5565af8 100644 --- a/po/yo.po +++ b/po/yo.po @@ -2,8 +2,33 @@ # 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 "" +"#-#-#-#-# yo.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# yo.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# yo.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# yo.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -18,6 +43,1461 @@ msgstr "" "X-Generator: Pootle 2.0.1\n" #. TRANS: "name" option from activity.info file +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "turtleart-extras (master)" +msgstr "" + +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "" + +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "" + +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "" + +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" + +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "" + +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "" + +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "" + +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" + +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" + +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" + +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" + +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" + +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" + +#: taextras.py:66 +msgid "adjust LED intensity between 0 and 255" +msgstr "" + +#: taextras.py:67 +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:68 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" + +#: taextras.py:69 +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" + +#: taextras.py:70 +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" + +#: taextras.py:71 +msgid "" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" + +#: taextras.py:73 +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" + +#: taextras.py:74 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" + +#: taextras.py:75 +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" + +#: taextras.py:77 +msgid "LED" +msgstr "" + +#: taextras.py:78 +msgid "button" +msgstr "" + +#: taextras.py:79 +msgid "grayscale" +msgstr "" + +#: taextras.py:80 +msgid "ambient light" +msgstr "" + +#: taextras.py:81 +msgid "temperature" +msgstr "" + +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "" + +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "" + +#: taextras.py:84 +msgid "magnetic induction" +msgstr "" + +#: taextras.py:85 +msgid "vibration" +msgstr "" + +#: taextras.py:86 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 "" + +#: taextras.py:87 +msgid "Butia Robot" +msgstr "" + +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" + +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" + +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" + +#: taextras.py:92 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" + +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" + +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "" + +#: taextras.py:99 +msgid "move the Butia robot forward" +msgstr "" + +#: taextras.py:100 +msgid "move the Butia robot forward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "" + +#: taextras.py:103 +msgid "turn the Butia robot at left" +msgstr "" + +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "" + +#: taextras.py:106 +msgid "move the Butia robot backward" +msgstr "" + +#: taextras.py:107 +msgid "move the Butia robot backward a predefined distance" +msgstr "" + +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "" + +#: taextras.py:110 +msgid "turn the Butia robot at right" +msgstr "" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" + +#: taextras.py:112 +msgid "turn the Butia robot x degrees" +msgstr "" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" + +#: taextras.py:115 +msgid "Butia" +msgstr "" + +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" + +#: taextras.py:120 +msgid "Error on initialization of the camera" +msgstr "" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" + +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" + +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" + +#: taextras.py:126 +msgid "FollowMe" +msgstr "" + +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" + +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" + +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" + +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" + +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" + +#: taextras.py:133 +msgid "follow" +msgstr "" + +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" + +#: taextras.py:135 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 "" + +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" + +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" + +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" + +#: taextras.py:139 +msgid "threshold" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" + +#: taextras.py:142 +msgid "camera mode" +msgstr "" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" + +#: taextras.py:145 +msgid "get brightness" +msgstr "" + +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" + +#: taextras.py:147 +msgid "average color" +msgstr "" + +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" + +#: taextras.py:149 +msgid "x position" +msgstr "" + +#: taextras.py:150 +msgid "return x position" +msgstr "" + +#: taextras.py:151 +msgid "y position" +msgstr "" + +#: taextras.py:152 +msgid "return y position" +msgstr "" + +#: taextras.py:153 +msgid "pixels" +msgstr "" + +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" + +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" + +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" + +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" + +#: taextras.py:161 +msgid "empty calibration" +msgstr "" + +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" + +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" + +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" + +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" + +#: taextras.py:170 +msgid "set the default speed for the movement commands" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" + +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" + +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" + +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" + +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" + +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" + +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#: taextras.py:187 +msgid "angle to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:189 +msgid "get the angle to the center of the dohyo" +msgstr "" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" + +#: taextras.py:193 +msgid "get the angle to the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" + +#: taextras.py:196 +msgid "get the x coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" + +#: taextras.py:199 +msgid "get the y coordinate of the SumBot" +msgstr "" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" + +#: taextras.py:202 +msgid "get the x coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" + +#: taextras.py:205 +msgid "get the y coordinate of the Enemy" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" + +#: taextras.py:208 +msgid "get the rotation of the Sumbot" +msgstr "" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" + +#: taextras.py:211 +msgid "get the rotation of the Enemy" +msgstr "" + +#: taextras.py:212 +msgid "distance to center" +msgstr "" + +#. TRANS: dohyo is the playing field +#: taextras.py:214 +msgid "get the distance to the center of the dohyo" +msgstr "" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" + +#: taextras.py:216 +msgid "get the distance to the Enemy" +msgstr "" + +#: taextras.py:217 +msgid "update information" +msgstr "" + +#: taextras.py:218 +msgid "update information from the server" +msgstr "" + +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "" + +#: taextras.py:224 +msgid "start polygon" +msgstr "" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "" + +#: taextras.py:227 +msgid "add point" +msgstr "" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "" + +#: taextras.py:230 +msgid "end polygon" +msgstr "" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "" + +#: taextras.py:235 +msgid "triangle" +msgstr "" + +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "" + +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "" + +#: taextras.py:240 +msgid "circle" +msgstr "" + +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "" + +#: taextras.py:242 +msgid "rectangle" +msgstr "" + +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "" + +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "" + +#: taextras.py:246 +msgid "reset" +msgstr "" + +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "" + +#: taextras.py:248 +msgid "motor" +msgstr "" + +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "" + +#: taextras.py:251 +msgid "speed" +msgstr "" + +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" + +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "" + +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "" + +#: taextras.py:256 +msgid "joint" +msgstr "" + +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "" + +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "" + +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "" + +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" + +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "" + +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" + +#: taextras.py:265 +msgid "Add a gear object to the project." +msgstr "" + +#: taextras.py:266 +msgid "density" +msgstr "" + +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "" + +#: taextras.py:269 +msgid "friction" +msgstr "" + +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "" + +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "" + +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "" + +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +msgid "Palette of WeDo blocks" +msgstr "" + +#: taextras.py:285 +msgid "WeDo" +msgstr "" + +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" + +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" + +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" + +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" + +#: taextras.py:294 +msgid "Motor A" +msgstr "" + +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" + +#: taextras.py:296 +msgid "Motor B" +msgstr "" + +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" + +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" + +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" + +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" + +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" + +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" + +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" + +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" + +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" + +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "" + +#: taextras.py:318 +msgid "light" +msgstr "" + +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "" + +#: taextras.py:320 +msgid "grey" +msgstr "" + +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" + +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" + +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" + +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" + +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "" + +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" + +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" + +#: taextras.py:329 +msgid "NXT not found" +msgstr "" + +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" + +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" + +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" + +#: taextras.py:333 +msgid "NXT" +msgstr "" + +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" + +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" + +#: taextras.py:336 +msgid "brick name" +msgstr "" + +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" + +#: taextras.py:338 +msgid "play tone" +msgstr "" + +#: taextras.py:339 +msgid "frequency" +msgstr "" + +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "" + +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" + +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" +msgstr "" + +#: taextras.py:344 +msgid "port" +msgstr "" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +msgid "rotations" +msgstr "" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" + +#: taextras.py:350 +msgid "steering" +msgstr "" + +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" + +#: taextras.py:352 +msgid "PORT A" +msgstr "" + +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" + +#: taextras.py:354 +msgid "PORT B" +msgstr "" + +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" + +#: taextras.py:356 +msgid "PORT C" +msgstr "" + +#: taextras.py:357 +msgid "PORT C of the brick" +msgstr "" + +#: taextras.py:358 +msgid "start motor" +msgstr "" + +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" + +#: taextras.py:360 +msgid "brake motor" +msgstr "" + +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" + +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" + +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" + +#: taextras.py:365 +msgid "motor position" +msgstr "" + +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" + +#: taextras.py:367 +msgid "PORT 1" +msgstr "" + +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" + +#: taextras.py:369 +msgid "read" +msgstr "" + +#: taextras.py:370 +msgid "sensor" +msgstr "" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" + +#: taextras.py:372 +msgid "PORT 2" +msgstr "" + +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" + +#: taextras.py:374 +msgid "light sensor" +msgstr "" + +#: taextras.py:375 +msgid "grey sensor" +msgstr "" + +#: taextras.py:376 +msgid "PORT 3" +msgstr "" + +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" + +#: taextras.py:378 +msgid "touch sensor" +msgstr "" + +#: taextras.py:379 +msgid "distance sensor" +msgstr "" + +#: taextras.py:380 +msgid "PORT 4" +msgstr "" + +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" + +#: taextras.py:382 +msgid "sound sensor" +msgstr "" + +#: taextras.py:383 +msgid "color sensor" +msgstr "" + +#. 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:386 +msgid "set light" +msgstr "" + +#: taextras.py:387 +msgid "Set color sensor light." +msgstr "" + +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" + +#: taextras.py:390 +msgid "Get battery level of the brick" +msgstr "" + +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" +msgstr "" + +#: taextras.py:396 +msgid "LOW" +msgstr "" + +#: taextras.py:397 +msgid "INPUT" +msgstr "" + +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" + +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" + +#: taextras.py:401 +msgid "SERVO" +msgstr "" + +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "" + +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "" + +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "" + +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "" + +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" + +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" + +#: taextras.py:408 +msgid "Arduino" +msgstr "" + +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" + +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" + +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" + +#: taextras.py:412 +msgid "Arduino name" +msgstr "" + +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" + +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" + +#: taextras.py:418 +msgid "mode" +msgstr "" + +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" + +#: taextras.py:420 +msgid "analog write" +msgstr "" + +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "" + +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" + +#: taextras.py:423 +msgid "analog read" +msgstr "" + +#: taextras.py:424 +msgid "" +"Read value from analog port. Value may be between 0 and 1023. Use Vref to " +"determine voltage. For USB, volt=((read)*5)/1024) approximately." +msgstr "" + +#: taextras.py:426 +msgid "digital write" +msgstr "" + +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +msgid "Palette of Expeyes blocks" +msgstr "" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" + +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" + +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" + +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" + +#: taextras.py:465 +msgid "capture" +msgstr "" + +#: taextras.py:466 +msgid "input" +msgstr "" + +#: taextras.py:467 +msgid "samples" +msgstr "" + +#: taextras.py:468 +msgid "interval" +msgstr "" + +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" + +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" + +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" + +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" + +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" + +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" + +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" + +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" + +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" + +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" + +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" + +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#. TRANS: "name" option from activity.info file msgid "TurtleBlocks" msgstr "" @@ -96,14 +1576,6 @@ msgstr "" msgid "set xy" msgstr "" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "" - -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "" - #: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 msgid "" "moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." @@ -159,12 +1631,6 @@ msgstr "" msgid "fill screen" msgstr "" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "" - #: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 #: TurtleArt/tabasics.py:358 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 @@ -624,10 +2090,6 @@ msgstr "" msgid "box" msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "" - #: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 #: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 #: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 @@ -1104,11 +2566,6 @@ msgstr "" msgid "push acceleration in x, y, z to heap" msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "" - #: plugins/audio_sensors/audio_sensors.py:84 #: plugins/audio_sensors/audio_sensors.py:99 msgid "raw microphone input signal" @@ -1135,13 +2592,6 @@ msgstr "" msgid "microphone input pitch" msgstr "" -#: 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 "" - #: plugins/audio_sensors/audio_sensors.py:152 #: plugins/audio_sensors/audio_sensors.py:166 #: plugins/audio_sensors/audio_sensors.py:180 @@ -1168,15 +2618,6 @@ msgstr "" msgid "Palette of media objects" msgstr "" -#: 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 "" - #: plugins/camera_sensor/camera_sensor.py:82 #: plugins/camera_sensor/camera_sensor.py:130 msgid "light level detected by camera" @@ -1442,10 +2883,6 @@ msgstr "" msgid "returns the color that the turtle \"sees\"" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "" @@ -1694,10 +3131,6 @@ msgstr "" msgid "ycor of bottom of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 msgid "the canvas width" msgstr "" @@ -1710,10 +3143,6 @@ msgstr "" msgid "ycor of top of screen" msgstr "" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "" - #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 msgid "the canvas height" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 735b3ce..15bbbc9 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -1,13 +1,54 @@ +# #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-15 00:34-0500\n" +"PO-Revision-Date: 2013-02-22 05:06+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.5\n" +"#-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-02-15 00:34-0500\n" +"PO-Revision-Date: 2013-02-22 05:06+0200\n" +"Last-Translator: Chris \n" +"Language-Team: LANGUAGE \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.5\n" +"#-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1111 +63,2201 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -msgid "TurtleBlocks" -msgstr "海龟积木" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" -msgstr "一个受Logo启发连接可视化编程块并画有彩色图片的海龟" +msgid "turtleart-extras (master)" +msgstr "海龟绘图附加组件(主)" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "海龟指令模板" +#: taextras.py:37 +msgid "Turtle Blocks" +msgstr "海龟方块" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "前进" +#: taextras.py:38 TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "海龟绘画" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "向前移动海龟" +#: taextras.py:42 +msgid "Turtle Art Mini" +msgstr "迷你海龟绘图" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "后退" +#: taextras.py:46 +msgid "Turtle Confusion" +msgstr "海龟谜题" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "向后移动海龟" +#: taextras.py:47 taextras.py:52 +msgid "Select a challenge" +msgstr "选择一个挑战" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "清屏" +#: taextras.py:51 +msgid "Amazonas Tortuga" +msgstr "亚马逊托尔图加" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "清空屏幕并重置海龟" +#: taextras.py:58 +msgid "Palette of Mexican pesos" +msgstr "墨西哥比索模板" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "左边" +#: taextras.py:59 +msgid "Palette of Colombian pesos" +msgstr "哥伦比亚比索模板" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "逆时针转动海龟(角度)" +#: taextras.py:60 +msgid "Palette of Rwandan francs" +msgstr "卢旺达法郎模板" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "右边" +#: taextras.py:61 +msgid "Palette of US dollars" +msgstr "美元模板" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "顺时针转动海龟(角度)" +#: taextras.py:62 +msgid "Palette of Australian dollars" +msgstr "澳元模板" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "走弧形" +#: taextras.py:63 +msgid "Palette of Paraguayan Guaranies" +msgstr "巴拉圭瓜拉尼模板" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "角度" +#: taextras.py:64 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "秘鲁新索尔的模板" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "半径" +#: taextras.py:65 +msgid "Palette of Uruguayan Pesos" +msgstr "乌拉圭比索模板" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "延弧形移动海龟" +#. TRANS: Butia is a Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:71 +msgid "TurtleBots" +msgstr "海龟机器人" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "设置 坐标" +#. TRANS: summary of TurtleBots activity +#: taextras.py:73 +msgid "TurtleBlocks with Butia, Lego NxT, WeDo, Arduino, FollowMe plugins" +msgstr "海龟方块含有Butia, Lego NxT, WeDo, Arduino, FollowMe插件" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "横" +#: taextras.py:74 +msgid "ERROR: The speed must be a value between 0 and 1023" +msgstr "错误:速度必须是0到1023之间的值" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "纵" +#: taextras.py:75 +msgid "ERROR: The pin must be between 1 and 8" +msgstr "错误:该引脚必须在1和8之间" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 -msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "移动海龟到座标(x,y);(0,0)是屏幕中心。" +#: taextras.py:76 +msgid "ERROR: The value must be 0 or 1, LOW or HIGH" +msgstr "错误:该值必须为0或1,“低”或“高" -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "设置朝向" +#: taextras.py:77 +msgid "ERROR: The mode must be INPUT or OUTPUT." +msgstr "错误:该模式必须是输入或输出。" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "设置海龟朝向(0表示朝向屏幕上方)" +#: taextras.py:78 +msgid "Turn LED on and off: 0 is off; 1 is on" +msgstr "开关LED:0为关;1为开" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "横坐标" +#: taextras.py:79 +msgid "returns the gray level" +msgstr "返回灰度等级" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "包含海龟当前位置的X座标值(可以用来替换数字块)" +#: taextras.py:80 +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "当按钮按下返回1,否则为0" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "纵坐标" +#: taextras.py:81 +msgid "returns the light level" +msgstr "返回灯光等级" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "包含海龟当前位置的Y座标值(可以用来替换数字块)" +#: taextras.py:82 +msgid "returns the temperature" +msgstr "返回温度" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "朝向" +#: taextras.py:83 +msgid "returns the distance from the object in front of the sensor" +msgstr "返回物体和传感器的距离" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "包含海龟当前的朝向的角度值(可以用来替换数字块)" +#: taextras.py:84 +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "当传感器检测到磁场返回1,否则为0" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "画笔指令模板" +#: taextras.py:85 +msgid "returns the value of the resistance" +msgstr "返回电阻值" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "涂满全屏" +#: taextras.py:86 +msgid "returns the value of the voltage" +msgstr "返回电压值" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "颜色" +#: taextras.py:87 +msgid "gpio" +msgstr "gpio" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "深度" +#: taextras.py:88 +msgid "LED" +msgstr "指示灯" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "以(颜色,阴影)填充背景" +#: taextras.py:89 +msgid "button" +msgstr "按钮" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +#: taextras.py:90 taextras.py:358 msgid "gray" -msgstr "灰度" - -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "设置颜色" - -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "设置海龟绘制的线条的颜色" - -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "设置深度" +msgstr "灰色" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "设置海龟绘制的线条的深度" +#: taextras.py:91 taextras.py:356 +msgid "light" +msgstr "灯光" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "设置灰度" - -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "设置海龟绘制的线条的灰度" - -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "包含当前画笔的颜色(可以用来替换数字块)" - -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "设置当前画笔的深度" - -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "包含当前的灰度值(可以用来替换数字块)" - -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "抬笔" - -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "海龟将不会在移动时绘图。" +#: taextras.py:92 +msgid "temperature" +msgstr "温度" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "落笔" +#: taextras.py:93 taextras.py:330 +msgid "distance" +msgstr "距离" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "海龟将在移动时绘图。" +#: taextras.py:94 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 "电阻" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "设置笔的粗细" +#: taextras.py:95 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 "电压" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "设置海龟绘制的线条的宽度" +#: taextras.py:96 +msgid "Butia Robot" +msgstr "布迪机器人" + +#: taextras.py:97 +msgid "refresh Butia" +msgstr "刷新布迪" + +#: taextras.py:98 +msgid "refresh the state of the Butia palette and blocks" +msgstr "刷新布迪模板和拼块的状态" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:100 +msgid "battery charge Butia" +msgstr "布迪充电" + +#: taextras.py:101 +msgid "returns the battery charge as a number between 0 and 255" +msgstr "返回电池充电度(0到255之间)" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:103 +msgid "speed Butia" +msgstr "布迪加速" + +#: taextras.py:104 +msgid "set the speed of the Butia motors" +msgstr "设置布迪的马达速度" + +#: taextras.py:105 +msgid "move Butia" +msgstr "移动布迪" + +#: taextras.py:106 TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "左边" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "开始填充" +#: taextras.py:107 TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "右边" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "开始填充多边形的绘制(和完成填充一起使用)" +#: taextras.py:108 +msgid "moves the Butia motors at the specified speed" +msgstr "以指定速度移动布迪电机" + +#: taextras.py:109 +msgid "stop Butia" +msgstr "停止布迪" + +#: taextras.py:110 +msgid "stop the Butia robot" +msgstr "停止布迪机器人" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:112 +msgid "forward Butia" +msgstr "布迪前进" + +#: taextras.py:113 +msgid "move the Butia robot forward" +msgstr "向前移动布迪机器人" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:115 +msgid "left Butia" +msgstr "布迪左转" + +#: taextras.py:116 +msgid "turn the Butia robot at left" +msgstr "向左转动布迪机器人" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:118 +msgid "right Butia" +msgstr "布迪右转" + +#: taextras.py:119 +msgid "turn the Butia robot at right" +msgstr "向右转动布迪机器人" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:121 +msgid "backward Butia" +msgstr "布迪后退" + +#: taextras.py:122 +msgid "move the Butia robot backward" +msgstr "先后移动布迪机器人" + +#: taextras.py:123 +msgid "Butia Robot extra blocks" +msgstr "布迪机器人额外模块" + +#: taextras.py:124 +msgid "hack pin mode" +msgstr "破解引脚模式" + +#: taextras.py:125 taextras.py:293 taextras.py:455 +msgid "pin" +msgstr "引脚" + +#: taextras.py:126 taextras.py:456 +msgid "mode" +msgstr "模式" + +#: taextras.py:127 +msgid "Select the pin function (INPUT, OUTPUT)." +msgstr "选择引脚功能(输入,输出)。" + +#: taextras.py:128 +msgid "write hack pin Butia" +msgstr "写入破解引脚布迪" + +#: taextras.py:129 taextras.py:459 TurtleArt/tabasics.py:928 +#: TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "值" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "完成填充" +#: taextras.py:130 +msgid "set a hack pin to 0 or 1" +msgstr "设置破解引脚到0或1" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "完成填充多边形的绘制(和开始填充一起使用)" +#: taextras.py:131 +msgid "read hack pin Butia" +msgstr "读取破解引脚布迪" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "笔的粗细" +#: taextras.py:132 +msgid "read the value of a hack pin" +msgstr "读取一个破解引脚的值" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "包含当前画笔的大小(可以用来替换数字块)" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:133 taextras.py:433 +msgid "HIGH" +msgstr "高" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "画笔颜色模板" +#: taextras.py:134 taextras.py:468 +msgid "Set HIGH value for digital port." +msgstr "设置数字端口为高值。" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "红色" +#: taextras.py:135 taextras.py:435 +msgid "INPUT" +msgstr "输入" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "橙黄色" +#: taextras.py:136 +msgid "Configure hack port for digital input." +msgstr "为数字输入配置破解端口。" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "黄色" +#: taextras.py:137 taextras.py:434 +msgid "LOW" +msgstr "低" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "绿色" +#: taextras.py:138 taextras.py:471 +msgid "Set LOW value for digital port." +msgstr "设置数字端口为低值。" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "青色" +#: taextras.py:139 taextras.py:436 +msgid "OUTPUT" +msgstr "输出" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "蓝色" +#: taextras.py:140 +msgid "Configure hack port for digital output." +msgstr "为数字输出配置破解端口。" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "紫色" +#: taextras.py:141 +msgid "Butia" +msgstr "布迪" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "白色" +#: taextras.py:142 +#, python-format +msgid "ERROR: The pin %s must be in OUTPUT mode." +msgstr "错误:引脚 %s 必须在输出模式。" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "黑色" +#: taextras.py:143 +#, python-format +msgid "ERROR: The pin %s must be in INPUT mode." +msgstr "错误:引脚 %s 必须在输入模式。" + +#: taextras.py:147 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "导入Pygame出错。该插件需要Pygame 1.9" + +#: taextras.py:148 +msgid "Error on initialization of the camera" +msgstr "摄像头初始化出错" + +#: taextras.py:149 +msgid "No camera was found" +msgstr "没有找到摄像头" + +#: taextras.py:150 +msgid "Error stopping camera" +msgstr "停止摄像头出错" + +#: taextras.py:151 +msgid "Error starting camera" +msgstr "启动摄像头出错" + +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:153 +msgid "Error in get mask" +msgstr "获取面罩出错" + +#: taextras.py:154 +msgid "FollowMe" +msgstr "跟我来" + +#: taextras.py:155 +msgid "refresh FollowMe" +msgstr "刷新 FollowMe" + +#: taextras.py:156 +msgid "Search for a connected camera." +msgstr "搜寻一个已连接的相机。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:158 +msgid "calibration" +msgstr "校准" + +#: taextras.py:159 +msgid "store a personalized calibration" +msgstr "存储个性化的校准" + +#: taextras.py:160 +msgid "return a personalized calibration" +msgstr "返回个性化校准" + +#: taextras.py:161 +msgid "follow" +msgstr "跟随" + +#: taextras.py:162 +msgid "follow a color or calibration" +msgstr "跟随颜色或校准" + +#: taextras.py:163 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 "亮度" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "设置文字颜色" +#: taextras.py:164 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "设置摄像头亮度为0到255之间的值。" + +#: taextras.py:165 +msgid "minimum pixels" +msgstr "最小值像素" + +#: taextras.py:166 +msgid "set the minimal number of pixels to follow" +msgstr "设置要跟随的最小像素数目" + +#: taextras.py:167 +msgid "threshold" +msgstr "阀门" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:169 +msgid "set a threshold for a RGB color" +msgstr "为RGB颜色设置一个阀门" + +#: taextras.py:170 +msgid "camera mode" +msgstr "摄像头模式" + +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:172 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "设置摄像头的颜色模式:RGB,YUV或HSV" + +#: taextras.py:173 +msgid "get brightness" +msgstr "获得亮度" + +#: taextras.py:174 +msgid "get the brightness of the ambient light" +msgstr "获得环境光的亮度" + +#: taextras.py:175 +msgid "average color" +msgstr "平均颜色" + +#: taextras.py:176 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "如果设置为0,在校准过程中颜色平均为关,其他值则为开" + +#: taextras.py:178 +msgid "x position" +msgstr "x 位置" + +#: taextras.py:179 +msgid "return x position" +msgstr "返回 x 位置" + +#: taextras.py:180 +msgid "y position" +msgstr "y 位置" + +#: taextras.py:181 +msgid "return y position" +msgstr "返回 y 位置" + +#: taextras.py:182 +msgid "pixels" +msgstr "像素" + +#: taextras.py:183 +msgid "return the number of pixels of the biggest blob" +msgstr "返回最大块的像素数目" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:185 +msgid "set the color mode of the camera to RGB" +msgstr "设置摄像头的颜色模式为RGB" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:187 +msgid "set the color mode of the camera to YUV" +msgstr "设置摄像头的颜色模式为YUV" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:189 +msgid "set the color mode of the camera to HSV" +msgstr "设置摄像头的颜色模式为HSV" + +#: taextras.py:190 +msgid "empty calibration" +msgstr "空校准" + +#: taextras.py:191 +msgid "error in string conversion" +msgstr "字符串转换错误" + +#. TRANS: Pattern detection is a plugin that allow detect signals +#. with the camera +#: taextras.py:197 +msgid "Pattern detection" +msgstr "模式检测" + +#: taextras.py:198 +msgid "Seeing signal" +msgstr "发现信号" + +#: taextras.py:199 +msgid "Returns True if the signal is in front of the camera" +msgstr "如果信号在摄像头前面返回True" + +#: taextras.py:200 +msgid "Distance to signal" +msgstr "信号的距离" + +#: taextras.py:201 +msgid "Returns the distance of the signal to the camera in millimeters" +msgstr "返回距摄像头的毫米单位的信号距离" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:206 +msgid "SumBot" +msgstr "桑博" + +#: taextras.py:207 +msgid "speed SumBot" +msgstr "加速桑博" + +#: taextras.py:208 +msgid "submit the speed to the SumBot" +msgstr "提交桑博的速度" + +#: taextras.py:209 +msgid "set the default speed for the movement commands" +msgstr "设置移动命令的默认速度" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:211 +msgid "forward SumBot" +msgstr "向前桑博" + +#: taextras.py:212 +msgid "move SumBot forward" +msgstr "移动桑博向前" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:214 +msgid "backward SumBot" +msgstr "向后桑博" + +#: taextras.py:215 +msgid "move SumBot backward" +msgstr "移动桑博向后" + +#: taextras.py:216 +msgid "stop SumBot" +msgstr "停止桑博" + +#: taextras.py:217 +msgid "stop the SumBot" +msgstr "让桑博停下来" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:219 +msgid "left SumBot" +msgstr "左转桑博" + +#: taextras.py:220 +msgid "turn left the SumBot" +msgstr "让桑博向左转" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:222 +msgid "right SumBot" +msgstr "右转桑博" + +#: taextras.py:223 +msgid "turn right the SumBot" +msgstr "让桑博向右转" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.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:226 +msgid "angle to center" +msgstr "与中心的角度" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:228 +msgid "get the angle to the center of the dohyo" +msgstr "得到相对圆环中心的角度" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:231 +msgid "angle to Enemy" +msgstr "与敌人的角度" + +#: taextras.py:232 +msgid "get the angle to the Enemy" +msgstr "得到相对敌人的角度" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:234 +msgid "x coor. SumBot" +msgstr "桑博x坐标" + +#: taextras.py:235 +msgid "get the x coordinate of the SumBot" +msgstr "得到桑博的x坐标" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:237 +msgid "y coor. SumBot" +msgstr "桑博y坐标" + +#: taextras.py:238 +msgid "get the y coordinate of the SumBot" +msgstr "得到桑博的y坐标" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:240 +msgid "x coor. Enemy" +msgstr "敌人x坐标" + +#: taextras.py:241 +msgid "get the x coordinate of the Enemy" +msgstr "得到敌人的x坐标" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:243 +msgid "y coor. Enemy" +msgstr "敌人y坐标" + +#: taextras.py:244 +msgid "get the y coordinate of the Enemy" +msgstr "得到敌人的y坐标" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:246 +msgid "rotation SumBot" +msgstr "转动桑博" + +#: taextras.py:247 +msgid "get the rotation of the Sumbot" +msgstr "得到桑博的转动" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:249 +msgid "rotation Enemy" +msgstr "转动敌人" + +#: taextras.py:250 +msgid "get the rotation of the Enemy" +msgstr "得到敌人的转动" + +#: taextras.py:251 +msgid "distance to center" +msgstr "与中心的距离" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:253 +msgid "get the distance to the center of the dohyo" +msgstr "得到与圆环中心的距离" + +#: taextras.py:254 +msgid "distance to Enemy" +msgstr "与敌人的距离" + +#: taextras.py:255 +msgid "get the distance to the Enemy" +msgstr "得到与敌人的距离" + +#: taextras.py:256 +msgid "update information" +msgstr "更新信息" + +#: taextras.py:257 +msgid "update information from the server" +msgstr "从服务器更新信息" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:262 +msgid "Palette of physics blocks" +msgstr "物理块模板" + +#: taextras.py:263 +msgid "start polygon" +msgstr "定义多边形" + +#: taextras.py:264 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "根据当前海龟xy方向的位置开始定义新的多边形。" + +#: taextras.py:266 +msgid "add point" +msgstr "添加点" + +#: taextras.py:267 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "根据当前海龟xy方向的位置添加新的点到当前的多边形。" + +#: taextras.py:269 +msgid "end polygon" +msgstr "完成多边形" + +#: taextras.py:270 +msgid "Define a new polygon." +msgstr "定义一个新的多边形。" + +#: taextras.py:271 +msgid "end filled polygon" +msgstr "结束填充多边形的绘制" + +#: taextras.py:272 +msgid "Not a simple polygon" +msgstr "不是一个简单多边形" + +#: taextras.py:273 +msgid "Define a new filled polygon." +msgstr "定义一个新的填充多边形。" + +#: taextras.py:274 +msgid "triangle" +msgstr "三角形" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:276 +msgid "base" +msgstr "基地" + +#: taextras.py:277 taextras.py:283 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "高度" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "设置海龟绘制文字的颜色" +#: taextras.py:278 +msgid "Add a triangle object to the project." +msgstr "添加一个三角形对象到项目。" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "设置文字大小" +#: taextras.py:279 +msgid "circle" +msgstr "圆形" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "设置海龟绘制的文字的大小" +#: taextras.py:280 +msgid "Add a circle object to the project." +msgstr "添加一个圆形对象到项目。" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "数值运算模板" +#: taextras.py:281 +msgid "rectangle" +msgstr "长方形" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "加" +#: taextras.py:282 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "宽度" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "将两个字符数值型输入相加" +#: taextras.py:284 +msgid "Add a rectangle object to the project." +msgstr "添加一个长方形对象到项目。" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "减" +#: taextras.py:285 +msgid "reset" +msgstr "重置" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "将顶部输入减去底部输入" +#: taextras.py:286 +msgid "Reset the project; clear the object list." +msgstr "重置项目;清除对象列表。" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "乘" +#: taextras.py:287 +msgid "motor" +msgstr "电机" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "将两个数值型输入相乘" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:289 +msgid "torque" +msgstr "转矩" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "除" +#: taextras.py:290 +msgid "speed" +msgstr "速度" -#: TurtleArt/tabasics.py:604 +#: taextras.py:291 msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "将顶部输入(分子)除以底部输入(分母)" - -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "自身" - -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "用来拉长积木块的“自身”操作符" - -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "同余" - -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "取模(余数)操作符" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "电机转矩和速度范围是从0(关)到正数,电机放置在最近被创建的对象上。" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "√" +#: taextras.py:294 +msgid "Pin an object down so that it cannot fall." +msgstr "用图钉固定一个对象,防止掉落。" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "平方根" +#: taextras.py:295 +msgid "joint" +msgstr "联合" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "计算平方根" +#: taextras.py:296 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "横" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "随机值" +#: taextras.py:297 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "纵" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "最小值" +#: taextras.py:298 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "把两个对象连接到一起(在点x,y处最近创建的对象)。" + +#: taextras.py:300 +msgid "save as Physics activity" +msgstr "保存为“物理”活动" + +#: taextras.py:301 +msgid "Save the project to the Journal as a Physics activity." +msgstr "当作一个物理活动保存该项目到日志。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:303 +msgid "gear" +msgstr "齿轮" + +#: taextras.py:304 +msgid "Add a gear object to the project." +msgstr "添加一个齿轮对象到项目。" + +#: taextras.py:305 +msgid "density" +msgstr "密度" + +#: taextras.py:306 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "设置对象的密度属性(密度可以是任何正数)。" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "最大值" +#: taextras.py:308 +msgid "friction" +msgstr "摩擦" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "返回最小值(顶部)和最大值(底部)之间的随机数" +#: taextras.py:309 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "设置对象的摩擦系数(值从0到1,0无摩擦,1强摩擦)。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:312 +msgid "bounciness" +msgstr "弹力" + +#: taextras.py:313 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "设置对象的弹性系数(值从0到1,0无弹性,1强弹性)。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:316 +msgid "dynamic" +msgstr "动态" + +#: taextras.py:317 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "动态值为1时对象可以移动;为0时位置是固定的。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:323 +msgid "Palette of WeDo blocks" +msgstr "乐高WeDo模板" + +#: taextras.py:324 +msgid "WeDo" +msgstr "乐高WeDo" + +#: taextras.py:325 +msgid "set current WeDo device" +msgstr "设置当前的乐高WeDo设备" + +#: taextras.py:326 +msgid "number of WeDo devices" +msgstr "乐高WeDo设备的数量" + +#: taextras.py:327 +msgid "tilt" +msgstr "斜度" + +#: taextras.py:328 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" +"倾斜传感器输出:(-1 ==没有倾斜,0 ==向前倾斜,3 ==向后倾斜,1 ==向左倾斜,2 " +"==向左倾斜)" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:332 +msgid "distance sensor output" +msgstr "距离传感器输出" + +#: taextras.py:333 +msgid "Motor A" +msgstr "电机 A" + +#: taextras.py:334 +msgid "returns the current value of Motor A" +msgstr "返回电机A的当前值" + +#: taextras.py:335 +msgid "Motor B" +msgstr "电机B" + +#: taextras.py:336 +msgid "returns the current value of Motor B" +msgstr "返回电机B的当前值" + +#: taextras.py:337 +msgid "set the value for Motor A" +msgstr "设置电机A的值" + +#: taextras.py:338 +msgid "set the value for Motor B" +msgstr "设置电机B的值" + +#: taextras.py:339 +msgid "WeDo is unavailable" +msgstr "乐高WeDo不可用" + +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:341 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "乐高WeDo %d 不可用; 缺省为1" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "数字" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:344 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "%(device)s 不可用于乐高 WeDo %(wedo_number)d" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:349 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "乐高NXT马达部件模板" + +#: taextras.py:350 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "乐高NXT传感器部件模板" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:352 +msgid "touch" +msgstr "触摸" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:354 +msgid "ultrasonic" +msgstr "超声波" + +#: taextras.py:355 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "颜色" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "在数学运算符中作为数值型输入" +#: taextras.py:357 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "声音" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "大于" +#. TRANS: The brick is the NXT controller +#: taextras.py:360 +msgid "Please check the connection with the brick" +msgstr "请检查该块的连接" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "逻辑“大于”运算符" +#: taextras.py:361 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "无效的端口'%s'。端口必须是:A,B或C" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "小于" +#: taextras.py:362 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "无效的端口'%s'。端口必须是:1,2,3或4" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "逻辑“小于”运算符" +#: taextras.py:363 +msgid "The value of power must be between -127 to 127" +msgstr "功率值必须位于-127到127之间" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "等于" +#: taextras.py:364 +#, python-format +msgid "The parameter must be a integer, not '%s'" +msgstr "该参数必须是一个整数,而不是 '%s'" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "逻辑“等于”运算符" +#: taextras.py:365 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "发生了一个错误:检查所有连接​​,并尝试重新连接" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "非" +#: taextras.py:366 +#, python-format +msgid "NXT found %s bricks" +msgstr "NXT找到 %s 块" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "逻辑“非”运算符" +#: taextras.py:367 +msgid "NXT not found" +msgstr "没找到 NXT" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "与" +#: taextras.py:368 +#, python-format +msgid "Brick number %s was not found" +msgstr "没有找到块 %s" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "逻辑“与”运算符" +#: taextras.py:369 +msgid "refresh NXT" +msgstr "刷新 NXT" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "或" +#: taextras.py:370 +msgid "Search for a connected NXT brick." +msgstr "搜索已连接的NXT积木。" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "逻辑“或”运算符" +#: taextras.py:371 +msgid "NXT" +msgstr "NXT" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "流程控制模板" +#: taextras.py:372 +msgid "set current NXT device" +msgstr "设置当前的NXT设备" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "等待" +#: taextras.py:373 +msgid "number of NXT devices" +msgstr "NXT设备的数量" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "暂停程序执行指定秒数" +#: taextras.py:374 +msgid "brick name" +msgstr "块名称" -# Here, 'forever' means 'forever repeat'. -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "永远执行" +#: taextras.py:375 +msgid "Get the name of a brick." +msgstr "得到块的名称" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "永远执行的循环" +#: taextras.py:376 +msgid "play tone" +msgstr "播放音调" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "重复" +#: taextras.py:377 +msgid "frequency" +msgstr "频率" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "循环指定次数" +#: taextras.py:378 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "时间" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "如果" +#: taextras.py:379 +msgid "Play a tone at frequency for time." +msgstr "以时间频率播放音调。" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "那么" +#. TRANS: turn is the action +#: taextras.py:381 +msgid "" +"turn motor\n" +"\n" +msgstr "" +"转动电机\n" +"\n" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "如果 那么" +#: taextras.py:382 +msgid "port" +msgstr "端口" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "“如果-那么”运算符,会用到数值模板中的布尔运算符" +#: taextras.py:383 +msgid "power" +msgstr "电源" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "否则" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:385 +msgid "rotations" +msgstr "旋转" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "如果 那么 或者" +#: taextras.py:386 +msgid "turn a motor" +msgstr "转动电机" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "“如果-那么-或者”运算符,会用到数值模板中的布尔运算符" +#: taextras.py:387 +msgid "" +"synchronize\n" +"\n" +"motors" +msgstr "" +"同步\n" +"\n" +"电机" + +#: taextras.py:388 +msgid "steering" +msgstr "转向" + +#: taextras.py:389 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "同步连接在端口B和端口C的两个电机" + +#: taextras.py:390 +msgid "PORT A" +msgstr "端口 A" + +#: taextras.py:391 +msgid "PORT A of the brick" +msgstr "积木的端口 A" + +#: taextras.py:392 +msgid "PORT B" +msgstr "端口 B" + +#: taextras.py:393 +msgid "PORT B of the brick" +msgstr "积木的端口 B" + +#: taextras.py:394 +msgid "PORT C" +msgstr "端口 C" + +#: taextras.py:395 +msgid "PORT C of the brick" +msgstr "积木的端口 C" + +#: taextras.py:396 +msgid "start motor" +msgstr "启动电机" + +#: taextras.py:397 +msgid "Run a motor forever." +msgstr "持续运行电机。" + +#: taextras.py:398 +msgid "brake motor" +msgstr "制动电机" + +#: taextras.py:399 +msgid "Stop a specified motor." +msgstr "停止指定的电机。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:401 +msgid "reset motor" +msgstr "复位电机" + +#: taextras.py:402 +msgid "Reset the motor counter." +msgstr "复位电机计数器。" + +#: taextras.py:403 +msgid "motor position" +msgstr "电机位置" + +#: taextras.py:404 +msgid "Get the motor position." +msgstr "得到电机位置。" + +#: taextras.py:405 +msgid "PORT 1" +msgstr "端口 1" + +#: taextras.py:406 +msgid "PORT 1 of the brick" +msgstr "积木的端口 1" + +#: taextras.py:407 +msgid "read" +msgstr "读取" + +#: taextras.py:408 +msgid "sensor" +msgstr "传感器" + +#: taextras.py:409 +msgid "Read sensor output." +msgstr "读取传感器输出。" + +#: taextras.py:410 +msgid "PORT 2" +msgstr "端口 2" + +#: taextras.py:411 +msgid "PORT 2 of the brick" +msgstr "积木的端口 2" + +#: taextras.py:412 +msgid "light sensor" +msgstr "灯光传感器" + +#: taextras.py:413 +msgid "gray sensor" +msgstr "灰色传感器" + +#: taextras.py:414 +msgid "PORT 3" +msgstr "端口 3" + +#: taextras.py:415 +msgid "PORT 3 of the brick" +msgstr "积木的端口 3" + +#: taextras.py:416 +msgid "touch sensor" +msgstr "触控传感器" + +#: taextras.py:417 +msgid "distance sensor" +msgstr "距离传感器" + +#: taextras.py:418 +msgid "PORT 4" +msgstr "端口 4" + +#: taextras.py:419 +msgid "PORT 4 of the brick" +msgstr "积木的端口 4" + +#: taextras.py:420 +msgid "sound sensor" +msgstr "声音传感器" + +#: taextras.py:421 +msgid "color sensor" +msgstr "颜色传感器" + +#. #-#-#-#-# zh_CN.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) +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.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:424 +msgid "set light" +msgstr "设置灯" + +#: taextras.py:425 +msgid "Set color sensor light." +msgstr "设置颜色感应灯。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:427 +msgid "battery level" +msgstr "电池电量" + +#: taextras.py:428 +msgid "Get battery level of the brick" +msgstr "得到块的电池电量" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: PWM is pulse-width modulation +#: taextras.py:438 +msgid "PWM" +msgstr "调速" + +#: taextras.py:439 +msgid "SERVO" +msgstr "伺服" + +#: taextras.py:440 +msgid "ERROR: Check the Arduino and the number of port." +msgstr "错误:请检查的Arduino和端口号。" + +#: taextras.py:441 +msgid "ERROR: Value must be a number from 0 to 255." +msgstr "错误:数值必须从0到255。" + +#: taextras.py:442 +msgid "ERROR: Value must be either HIGH or LOW." +msgstr "错误:值必须是高或低。" + +#: taextras.py:443 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." +msgstr "错误:模式必须是输入,输出,调速或伺服。" + +#: taextras.py:444 +msgid "refresh Arduino" +msgstr "刷新Arduino" + +#: taextras.py:445 +msgid "Search for connected Arduinos." +msgstr "搜索已连接的Arduino。" + +#: taextras.py:446 +msgid "Arduino" +msgstr "Arduino" + +#: taextras.py:447 +msgid "set current Arduino board" +msgstr "设置当前的Arduino板" + +#: taextras.py:448 +msgid "number of Arduinos" +msgstr "Arduino 的数量" + +#: taextras.py:449 +msgid "number of Arduino boards" +msgstr "Arduino 板的数量" + +#: taextras.py:450 +msgid "Arduino name" +msgstr "Arduino 名称" + +#: taextras.py:451 +msgid "Get the name of an Arduino." +msgstr "得到一个 Arduino 的名称。" + +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.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:454 +msgid "pin mode" +msgstr "引脚模式" + +#: taextras.py:457 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "选择引脚功能(输入,输出,调速,伺服)。" + +#: taextras.py:458 +msgid "analog write" +msgstr "模拟写" + +#: taextras.py:460 +msgid "Write analog value in specified port." +msgstr "写模拟值到指定的端口。" + +#: taextras.py:461 +msgid "analog read" +msgstr "模拟读" + +#: taextras.py:462 +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 "" +"从模拟端口读值。值可能是0到1023之间。使用Vref来确定电压。对于USB,电压大约等" +"于 ((read)*5)/1024。" + +#: taextras.py:464 +msgid "digital write" +msgstr "数字写" + +#: taextras.py:465 +msgid "Write digital value to specified port." +msgstr "写数字值到指定的端口。" + +#: taextras.py:466 +msgid "digital read" +msgstr "数字读" + +#: taextras.py:467 +msgid "Read value from digital port." +msgstr "从数字端口读取值。" + +#: taextras.py:469 +msgid "Configure Arduino port for digital input." +msgstr "配置用于数字输入的Arduino端口。" + +#: taextras.py:470 +msgid "Configure Arduino port to drive a servo." +msgstr "配置用于驱动伺服电机的Arduino端口。" + +#: taextras.py:472 +msgid "Configure Arduino port for digital output." +msgstr "配置用于数字输出的Arduino端口。" + +#: taextras.py:473 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "配置用于调速(脉宽调制)的Arduino端口" + +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:478 +msgid "Palette of Expeyes blocks" +msgstr "Expeyes 块模板" + +#. TRANS: Programmable voltage output +#: taextras.py:480 +msgid "set PVS" +msgstr "设置 PVS" + +#: taextras.py:481 +msgid "set programmable voltage output" +msgstr "设置可编程电压输出" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:483 +msgid "set SQR1 voltage" +msgstr "设置 SQR1 电压" + +#: taextras.py:484 +msgid "set square wave 1 voltage output" +msgstr "设置方波1电压输出" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:486 +msgid "set SQR2 voltage" +msgstr "设置 SQR2 电压" + +#: taextras.py:487 +msgid "set square wave 2 voltage output" +msgstr "设置方波2电压输出" + +#. TRANS: Digital output level +#: taextras.py:489 +msgid "set OD1" +msgstr "设置 OD1" + +#: taextras.py:490 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "设置数字输出电平 (OD1) 高 (0) 或低 (1)" + +#. TRANS: Input 1 voltage level +#: taextras.py:492 +msgid "IN1 level" +msgstr "IN1 电平" + +#: taextras.py:493 +msgid "" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "如果 IN1 电平>2.5伏返回1,如果<=2.5伏返回0" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "水平空白" +#. TRANS: Input 2 voltage level +#: taextras.py:496 +msgid "IN2 level" +msgstr "IN2 电平" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "将块堆向右推" +#: taextras.py:497 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "如果 IN2 电平>2.5伏返回1,如果 <=2.5伏返回0" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "竖直空白" +#. TRANS: Resistive sensor voltage level +#: taextras.py:500 +msgid "SEN level" +msgstr "SEN 电平" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "将积木堆向下推" +#: taextras.py:501 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "如果电阻式传感器(SEN)电压电平>2.5伏返回1,如果<=2.5伏返回0" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "停止动作" +#: taextras.py:503 +msgid "capture" +msgstr "捕获" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "停止当前动作" +#: taextras.py:504 +msgid "input" +msgstr "输入" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "可变块模板" +#: taextras.py:505 +msgid "samples" +msgstr "采样" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "开始" +#: taextras.py:506 +msgid "interval" +msgstr "间隔" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "关联动作到工具栏中的运行按钮" +#. TRANS: MS is microseconds +#: taextras.py:508 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "从输入捕获时间间隔(MS)的多个样本,结果放入 FIFO" + +#. TRANS: Analog input 1 voltage level +#: taextras.py:511 +msgid "A1" +msgstr "A1" + +#: taextras.py:512 +msgid "read analog input 1 voltage" +msgstr "读取模拟输入1的电压" + +#. TRANS: Analog input 2 voltage level +#: taextras.py:514 +msgid "A2" +msgstr "A2" + +#: taextras.py:515 +msgid "read analog input 2 voltage" +msgstr "读取模拟输入2的电压" + +#. TRANS: Read input 1 voltage +#: taextras.py:517 +msgid "IN1" +msgstr "IN1" + +#: taextras.py:518 +msgid "read input 1 voltage" +msgstr "读取输入1的电压" + +#. TRANS: Read input 2 voltage +#: taextras.py:520 +msgid "IN2" +msgstr "IN2" + +#: taextras.py:521 +msgid "read input 2 voltage" +msgstr "读取输入2的电压" + +#. TRANS: Read analog sensor input voltage +#: taextras.py:523 +msgid "SEN" +msgstr "SEN" + +#: taextras.py:524 +msgid "read analog sensor input voltage" +msgstr "读取模拟传感器输入电压" + +#. TRANS: Read square wave 1 input voltage +#: taextras.py:526 +msgid "SQR1" +msgstr "SQR1" + +#: taextras.py:527 +msgid "read square wave 1 voltage" +msgstr "读取方波1电压" + +#. TRANS: Read square wave 2 input voltage +#: taextras.py:529 +msgid "SQR2" +msgstr "SQR2" + +#: taextras.py:530 +msgid "read square wave 2 voltage" +msgstr "读取方波2电压" + +#. TRANS: Read programmable voltage +#: taextras.py:532 +msgid "PVS" +msgstr "PVS" + +#: taextras.py:533 +msgid "read programmable voltage" +msgstr "读取可编程电压" + +#: taextras.py:534 +msgid "Expeyes device not found" +msgstr "未找到Expeyes设备" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "文本" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "恢复播放视频或音频" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "字符串值" +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "标题" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "动作" +#: 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 "相机的平均色彩RGB值已压入堆栈" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "可命名动作堆的顶部" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "黄色" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "执行可命名动作堆" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "显示极坐标" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "保存到盒子1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "清空FILO(先进后出堆)" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "保存数值到变量1" +#: 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 "相机输出" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "保存到盒子2" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "把沿x,y,z方向加速度放入堆中" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "保存数值到变量2" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "“如果-那么”运算符,会用到数值模板中的布尔运算符" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "盒子1" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "将块堆向右推" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "变量1(数值)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar日志中的多媒体文件" #: TurtleArt/tabasics.py:919 msgid "box 2" msgstr "盒子2" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "变量2(数值)" - -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "放入" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "盒子1" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "盒子" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "单步" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "值" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "将两个数值型输入相乘" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "我的盒子" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "显示/隐藏块" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "保存数值到命名的变量" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "隐藏模板" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "命名的变量(数值)" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "伙伴" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "动作1" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "我的海龟绘图会话" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "动作堆1的顶部" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 +msgid "Sugar Journal video object" +msgstr "Sugar日志中的视频文件" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "动作2" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "青色" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "动作堆2的顶部" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "一个受Logo启发连接可视化编程块并画有彩色图片的海龟" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "执行动作堆1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "屏幕右方的X座标" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "执行动作堆2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "额外选项模板" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "回收站" +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "载入示例" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "清空回收站" +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "将所有积木块移入回收站" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "永久性地删除回收站中的项" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "列表" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "全部还原" +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "配置不可写的目录:%s" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "还原回收站中的所有积木块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "恢复媒体" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "全部清除" +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "朝向" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "将所有积木块移入回收站" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "分享积木块被禁用" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" -msgstr "分享选中积木块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "以SVG格式保存海龟图形到Sugar日志中" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "标题" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 +msgid "draws text or show media from the Journal" +msgstr "绘制日志中的文本或多媒体" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "停止" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "显示积木块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "视频" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "隐藏积木块" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "蓝色" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "没有输出到" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "显示直角坐标" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "我不知道怎样" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "无选项的动作:" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "不喜欢" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "将积木堆向下推" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "作为输入" +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "取模(余数)操作符" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "显示下一个模板" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "底部Y坐标" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "改变积木块模板的方向" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 +msgid "save SVG" +msgstr "保存SVG" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "载入..." +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "执行日志中tamyblock.py模块中的代码" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "保存..." +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "落笔" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "点击打开" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "等待" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "方向" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "盒子" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "下一个" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "上传失败!" #: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 #: TurtleArt/tawindow.py:1490 msgid "shift" msgstr "移动" -#: TurtleArt/tawindow.py:1256 -msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" -msgstr "在海龟方块中要让修改立即生效,请按“停止”按钮" - -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" -msgstr "选择要分享的积木块" - -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "海龟绘画" - -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "图片" - -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "另存为Logo" - -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "另存为图片" - -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "屏幕截图" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "执行可命名动作堆" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "保存屏幕截图" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "动作" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" -msgstr "关闭悬停帮助" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "“执行-直到-真”操作符,会用到数值模板中的布尔运算符" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" -msgstr "开启悬停帮助" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "用法是" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "显示模板" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "变量2(数值)" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "隐藏模板" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "除" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "缩小坐标轴比例" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "图片名称" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "增大坐标轴比例" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "当" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "编辑" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "画布宽度" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "视图" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +msgid "empty heap?" +msgstr "堆空的吗?" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "项目" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "命名的变量(数值)" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "保存/读取" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "下一个" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "复制" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "如果 那么" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "粘贴" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "设置笔的粗细" -#: TurtleArtActivity.py:591 -msgid "Restore blocks from trash" -msgstr "还原回收站中的所有拼块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "演示模板:选择日志中的物品(无描述)" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "全屏" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "直到" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "直角坐标" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "停止媒体" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "极坐标" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "开启悬停帮助" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "公制坐标" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "永久性地删除回收站中的项" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "增大积木块" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "翻转" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "缩小积木块" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "动作堆1的顶部" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "载入示例" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "一个可编程积木块:用于加入单变量的高级数学等式,例如sin(x)" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "清屏" +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "流程控制模板" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "运行" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "折叠积木堆的顶部" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "单步" +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "“如果-那么-或者”运算符,会用到数值模板中的布尔运算符" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "帮助" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 +msgid "returns mouse y coordinate" +msgstr "返回鼠标位置的Y坐标" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "停止" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "设置当前画笔的深度" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "加载作品" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "正弦波" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" -msgstr "加载插件" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "登录失败" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "载入Python积木块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "左侧X坐标" -#: TurtleArtActivity.py:766 -msgid "Palettes" -msgstr "调色板" +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "设置朝向" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" -msgstr "分享积木块被禁用" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 +msgid "RGB color under the turtle is pushed to the stack" +msgstr "海龟所在位置的颜色RGB值将被压入堆栈" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "隐藏积木块使画布整洁一些" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" #: TurtleArtActivity.py:890 msgid "r" msgstr "r" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" - #: TurtleArtActivity.py:895 msgid "s" msgstr "s" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." -msgstr "插件不能安装。" - -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." -msgstr "使用该插件,请重新启动龟背艺术。" - -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." -msgstr "插件 %s 已经被安装。" - -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" -msgstr "想重新 %s 吗?" - -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "我的海龟绘图会话" - -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "启用协作" - -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "活动" - -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "伙伴" - -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "分享" - -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "设置" - -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "邻居" - -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "昵称" - -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "帐号ID" - -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "服务器" +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "端口" +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "密码" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "Python chr 操作符" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "注册" +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "水平空白" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "颜色" +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "公制坐标" -#: 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 "上传" +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "字符串值" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" -msgstr "发布到 Facebook 墙" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "描述" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "上传到网站" +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "我不知道怎样" -#: gnome_plugins/uploader_plugin.py:90 -msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "你必须在 http://turtleartsite.sugarlabs.org 中注册一个帐号才能上传你的作品。" +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "设置文字大小" #: gnome_plugins/uploader_plugin.py:99 msgid "Username:" msgstr "用户名:" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "密码:" - -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "标题:" - -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "描述:" - -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "提交到网站" +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "开始填充多边形的绘制(和完成填充一起使用)" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "取消" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "演示模板:选择四件日志中的物品" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "登录失败" +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "视图" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "上传失败!" +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "设置海龟绘制的线条的灰度" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "传感器模板" +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "密码:" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "加速度" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 +msgid "turtle sees" +msgstr "海龟看到" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "把沿x,y,z方向加速度放入堆中" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "停止动作" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "声音" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "绿色" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "麦克风原始输入信号" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "深度" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "音量" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "以(颜色,阴影)填充背景" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "麦克风输入音量" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "保存图片" #: plugins/audio_sensors/audio_sensors.py:119 #: plugins/audio_sensors/audio_sensors.py:127 @@ -1134,422 +2265,250 @@ msgstr "麦克风输入音量" msgid "pitch" msgstr "强度" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "麦克风输入音高" - -#: 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 "电阻" - -#: 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 "麦克风输入电阻" - -#: 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 "电压" - -#: 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 "麦克风输入电压" - -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "多媒体模板" - -#: 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 "亮度" - -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "相机侦测到的光照水平" - -#: 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 "相机的平均色彩RGB值已压入堆栈" - -#: 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 "相机输出" - -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "光线感应器侦测到的光照水平" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "从RFID设备中读取值" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "当" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "“当-为真时-执行”操作符,会用到数值模板中的布尔运算符" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "直到" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "“执行-直到-真”操作符,会用到数值模板中的布尔运算符" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "顶部" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "折叠积木堆的顶部" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "返回1如果鼠标被按下" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "日志" +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "增大坐标轴比例" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar日志中的多媒体文件" +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "抬笔" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "音频" +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "橙黄色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar日志中的音频文件" +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "暂停程序执行指定秒数" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "视频" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 +msgid "pushes value onto FILO (first-in last-out heap)" +msgstr "将值压入FILO(先进后出堆)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 -msgid "Sugar Journal video object" -msgstr "Sugar日志中的视频文件" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "全部清除" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "描述" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "那么" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar日志描述字段" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "注册" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "显示" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "非" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:226 -msgid "draws text or show media from the Journal" -msgstr "绘制日志中的文本或多媒体" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "如果 那么 或者" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "对齐显示" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "停止当前动作" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "设置比例" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "顺时针转动海龟(角度)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "设置多媒体的显示比例" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "包含当前的灰度值(可以用来替换数字块)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "保存图片" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "屏幕左方的X座标" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "图片名称" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "复位块大小" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "保存图片到Sugar日志中" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "海龟" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 -msgid "save SVG" -msgstr "保存SVG" +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "显示下一个模板" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "以SVG格式保存海龟图形到Sugar日志中" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "隐藏积木块" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "比例" +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "相机侦测到的光照水平" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "包含当前的比例" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "Python int 操作符" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "等待多媒体" +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "逻辑“小于”运算符" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "等待当前的视频或音频结束" +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "还原回收站中的所有积木块" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "停止媒体" +#: turtleblocks.py:356 +msgid "Save" +msgstr "保存" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "停止视频或音频" +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "保存到盒子1" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "暂停媒体" +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "保存到盒子2" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "暂停视频或音频" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "隐藏Sugar工具栏" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "恢复媒体" +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "包含海龟当前位置的X座标值(可以用来替换数字块)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "恢复播放视频或音频" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 +msgid "print" +msgstr "打印" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "朗读" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "返回鼠标位置的X坐标" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "你好" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "红色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "朗读文本" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "另存为Logo" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "正弦波" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "设置海龟绘制的线条的颜色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "波幅" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "设置文字颜色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "持续时间" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "音量" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "播放一个指定频率、波幅和持续时间(秒)的正弦波" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "启用协作" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "鼠标按下" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "传感器模板" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "返回1如果鼠标被按下" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "加载插件" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 msgid "returns True if mouse button is pressed" msgstr "返回True如果鼠标被按下" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "鼠标X坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "返回鼠标位置的X坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "鼠标Y坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 -msgid "returns mouse y coordinate" -msgstr "返回鼠标位置的Y坐标" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "数字" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 msgid "query keyboard" msgstr "查询键盘" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "查询键盘输入(结果保存在“键盘”积木块中)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "顶部" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "键盘" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "提交到网站" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -msgid "holds results of query-keyboard block as ASCII" -msgstr "QWERTY-键盘积木块的结果保持为ASCII" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "直角坐标" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "读取像素" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "昵称" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 -msgid "RGB color under the turtle is pushed to the stack" -msgstr "海龟所在位置的颜色RGB值将被压入堆栈" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "设置比例" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 -msgid "turtle sees" -msgstr "海龟看到" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "分享选中积木块" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "返回海龟“看到”的颜色" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "白色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "时间" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "关联动作到工具栏中的运行按钮" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 msgid "elapsed time (in seconds) since program started" msgstr "程序启动后已经过的时间(秒)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "额外选项模板" - -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "压入" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 -msgid "pushes value onto FILO (first-in last-out heap)" -msgstr "将值压入FILO(先进后出堆)" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "显示堆" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "显示FILO(先进后出堆)中的值" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "清空堆" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "清空FILO(先进后出堆)" - -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "弹出" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "从FILO(先进后出堆)中弹出值" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -msgid "empty heap?" -msgstr "堆空的吗?" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "在堆为空时返回“真”" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "注释" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "在你的代码中加入注释" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 -msgid "print" -msgstr "打印" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "波幅" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "在位于屏幕底部的状态积木块中打印值" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "取消" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "Python chr 操作符" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "画布高度" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "Python int 操作符" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "以 2x1 方式演示" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "减" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "一个可编程积木块:用于加入单变量的高级数学等式,例如sin(x)" +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "与" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "一个可编程积木块:用于加入多变量的高级数学等式,例如sqrt(x*x+y*y)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "折叠积木堆的顶部" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "一个可编程积木块:用于加入多变量的高级数学等式,例如sin(x+y+z)" +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "作为输入" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:622 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:638 @@ -1557,56 +2516,26 @@ msgstr "一个可编程积木块:用于加入多变量的高级数学等式, msgid "Python block" msgstr "Python积木块" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "执行日志中tamyblock.py模块中的代码" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "直角坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "显示直角坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "极坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "显示极坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "海龟" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "选择由哪个海龟执行命令" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "等待多媒体" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "海龟外壳" +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "加速度" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "替海龟穿上一个自定义的“外壳”" +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "包含当前画笔的大小(可以用来替换数字块)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "折叠积木堆的顶部" +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "设置颜色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "载入" +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "最小值" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1614,70 +2543,68 @@ msgstr "载入" msgid "loads a block" msgstr "载入一个积木块" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -msgid "setxy" -msgstr "设置坐标xy" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "画笔指令模板" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "模块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "显示FILO(先进后出堆)中的值" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "选择一个模块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "“当-为真时-执行”操作符,会用到数值模板中的布尔运算符" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "演示模板" +#: turtleblocks.py:363 +msgid "File" +msgstr "文件" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "隐藏积木块" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "逻辑“非”运算符" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "隐藏积木块使画布整洁一些" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "屏幕下方的Y座标" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "显示积木块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "演示模板:选择日志中的物品(有描述)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "恢复隐藏的积木块" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "数值运算模板" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "隐藏Sugar工具栏" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "乘" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "列表" +# Here, 'forever' means 'forever repeat'. +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "永远执行" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "演示项目列表" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "插件 %s 已经被安装。" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "演示模板:项目列表" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "设置海龟绘制的线条的深度" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "演示模板:选择日志中的物品(无描述)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "朗读文本" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "演示模板:选择日志中的物品(有描述)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "屏幕截图" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "演示模板:选择四件日志中的物品" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "清屏" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1686,987 +2613,1053 @@ msgstr "演示模板:选择四件日志中的物品" msgid "presentation template: select two Journal objects" msgstr "演示模板:选择两件日志中的物品" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "屏幕左方的X座标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "底部" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "屏幕下方的Y座标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "宽度" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "画布宽度" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "屏幕右方的X座标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "屏幕上方的Y座标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "高度" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "画布高度" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "标题X坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "标题Y坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "左侧X坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "顶部Y坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 -msgid "right x" -msgstr "右侧X坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "底部Y坐标" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "以 1x1 方式演示" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "以 2x1 方式演示" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "以 1x2 方式演示" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 -msgid "presentation 2x2" -msgstr "以 2x2 方式演示" - -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "请安装的说话活动,然后再试一次。" - -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "西班牙语" - -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "英语" - -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "很抱歉,我不明白你问的是什么。" - -#: pysamples/brain.py:100 -msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "很抱歉,没有空余内存来加载我的大脑。请关闭其他活动,并再试一次。" - -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "把目标RGB值放入堆中" - -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "停止" - -#: pysamples/grecord.py:217 -msgid "play" -msgstr "播放" - -#: pysamples/grecord.py:219 -msgid "save" -msgstr "保存" - -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "其他" - -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "翻转" - -#: pysamples/uturn.py:26 -msgid "make a uturn" -msgstr "做一个翻转" - -#: turtleblocks.py:86 -msgid "usage is" -msgstr "用法是" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "增大积木块" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "无选项的动作:" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "全屏" #: turtleblocks.py:255 msgid "File not found" msgstr "文件未找到" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "配置不可写的目录:%s" - -#: turtleblocks.py:354 -msgid "New" -msgstr "新建" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "显示" -#: turtleblocks.py:355 -msgid "Open" -msgstr "打开" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "文本" -#: turtleblocks.py:356 -msgid "Save" -msgstr "保存" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "随机值" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "另存为" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "逻辑“大于”运算符" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "退出" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "逆时针转动海龟(角度)" -#: turtleblocks.py:363 -msgid "File" -msgstr "文件" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "黑色" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "重新调整坐标" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "计算平方根" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "复位块大小" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "包含海龟当前位置的Y座标值(可以用来替换数字块)" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "显示/隐藏块" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "鼠标X坐标" -#: turtleblocks.py:396 -msgid "Tools" -msgstr "工具" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "鼠标Y坐标" -#: turtleblocks.py:402 -msgid "Debug" -msgstr "调试" +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "停止" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "海龟" +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "大于" -#: turtleblocks.py:407 -msgid "About..." -msgstr "关于..." +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "横坐标" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "你有尚未保存的工作。想退出前保存吗?" +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "帮助" #: turtleblocks.py:448 msgid "Save project?" msgstr "保存项目?" -#~ msgid "Turtle Art Mini" -#~ msgstr "迷你海龟绘图" - -#~ msgid "Turtle Confusion" -#~ msgstr "海龟谜题" - -#~ msgid "Select a challenge" -#~ msgstr "选择一个挑战" - -#~ msgid "Palette of Mexican pesos" -#~ msgstr "墨西哥比索模板" - -#~ msgid "Palette of Colombian pesos" -#~ msgstr "哥伦比亚比索模板" - -#~ msgid "Palette of Rwandan francs" -#~ msgstr "卢旺达法郎模板" - -#~ msgid "Palette of US dollars" -#~ msgstr "美元模板" - -#~ msgid "Palette of Australian dollars" -#~ msgstr "澳元模板" - -#~ msgid "Palette of Paraguayan Guaranies" -#~ msgstr "巴拉圭瓜拉尼模板" - -#~ msgid "Palette of Peruvian Nuevo Soles" -#~ msgstr "秘鲁新索尔的模板" - -#~ msgid "Palette of Uruguayan Pesos" -#~ msgstr "乌拉圭比索模板" - -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "调整指示灯的光强度(0到255之间)" - -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "返回对象灰度(0到1023之间)" - -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "当按钮按下返回1,否则为0" - -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "返回环境光亮度(0到1023之间)" - -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "返回环境温度(0到255之间)" - -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "返回传感器前物体的距离(0到255之间)" - -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "返回传感器方位角(0或者1)" - -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "当传感器检测到磁场返回1,否则为0" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "选择由哪个海龟执行命令" -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "从0切换到1,频率取决于振动" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 +msgid "right x" +msgstr "右侧X坐标" -#~ msgid "LED" -#~ msgstr "指示灯" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "设置海龟绘制文字的颜色" -#~ msgid "button" -#~ msgstr "按钮" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "光线感应器侦测到的光照水平" -#~ msgid "grayscale" -#~ msgstr "灰度" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "插件不能安装。" -#~ msgid "ambient light" -#~ msgstr "环境光" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "键盘" -#~ msgid "temperature" -#~ msgstr "温度" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "走弧形" -#~ msgid "distance" -#~ msgstr "距离" +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "半径" -#~ msgid "tilt" -#~ msgstr "斜度" +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "极坐标" -#~ msgid "magnetic induction" -#~ msgstr "磁场感应" +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "设置深度" -#~ msgid "vibration" -#~ msgstr "振动" +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "逻辑“与”运算符" -#~ msgid "Butia Robot" -#~ msgstr "布迪机器人" +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"你必须在 http://turtleartsite.sugarlabs.org 中注册一个帐号才能上传你的作品。" -#~ msgid "refresh Butia" -#~ msgstr "刷新布迪" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "模块" -#~ msgid "refresh the state of the Butia palette and blocks" -#~ msgstr "刷新布迪模板和拼块的状态" +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "运行" -#~ msgid "battery charge Butia" -#~ msgstr "布迪充电" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "显示堆" -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "返回电池充电度(0到255之间)" +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "设置海龟朝向(0表示朝向屏幕上方)" -#~ msgid "speed Butia" -#~ msgstr "布迪加速" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "选择一个模块" -#~ msgid "forward Butia" -#~ msgstr "布迪前进" +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "麦克风输入音量" -#~ msgid "move the Butia robot forward" -#~ msgstr "向前移动布迪机器人" +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "标题:" -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "布迪机器人向前移动一个预先设定的距离" +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "多媒体模板" -#~ msgid "left Butia" -#~ msgstr "布迪左转" +#: TurtleArtActivity.py:591 +msgid "Restore blocks from trash" +msgstr "还原回收站中的所有拼块" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "向右转动布迪机器人" +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "可变块模板" -#~ msgid "backward Butia" -#~ msgstr "布迪后退" +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "在数学运算符中作为数值型输入" -#~ msgid "move the Butia robot backward" -#~ msgstr "先后移动布迪机器人" +#: 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 "上传" -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "布迪机器人向后移动一个预先设定的距离" +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "服务器" -#~ msgid "right Butia" -#~ msgstr "布迪右转" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 +msgid "presentation 2x2" +msgstr "以 2x2 方式演示" -#~ msgid "turn the Butia robot at right" -#~ msgstr "向右转动布迪机器人" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "变量1(数值)" -#~ msgid "turn Butia" -#~ msgstr "转动布迪" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "邻居" -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "将布迪机器人转动X角度" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "将两个字符数值型输入相加" -#~ msgid "stop Butia" -#~ msgstr "停止布迪" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "等于" -#~ msgid "stop the Butia robot" -#~ msgstr "停止布迪机器人" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "否则" -#~ msgid "Butia" -#~ msgstr "布迪" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "不喜欢" -#~ msgid "Error on initialization of the camera" -#~ msgstr "摄像头初始化出错" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "你有尚未保存的工作。想退出前保存吗?" -#, fuzzy -#~ msgid "No camera was found" -#~ msgstr "没有找到摄像头" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "恢复隐藏的积木块" -#~ msgid "Error stopping camera" -#~ msgstr "停止摄像头出错" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "载入" -#~ msgid "Error starting camera" -#~ msgstr "启动摄像头出错" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "停止视频或音频" -#~ msgid "FollowMe" -#~ msgstr "跟我来" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "海龟将不会在移动时绘图。" -#, fuzzy -#~ msgid "Search for a connected camera." -#~ msgstr "搜索已连接的NXT积木。" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "弹出" -#~ msgid "calibration" -#~ msgstr "校准" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "笔的粗细" -#, fuzzy -#~ msgid "store a personalized calibration" -#~ msgstr "存储个性化校准" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "海龟外壳" -#~ msgid "return a personalized calibration" -#~ msgstr "返回个性化校准" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "播放一个指定频率、波幅和持续时间(秒)的正弦波" -#~ msgid "follow" -#~ msgstr "跟随" +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "√" -#~ msgid "follow a color or calibration" -#~ msgstr "跟随颜色或校准" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "朗读" -#~ msgid "minimum pixels" -#~ msgstr "最小值像素" +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "从RFID设备中读取值" -#~ msgid "set the minimal number of pixels to follow" -#~ msgstr "设置要跟随的最小像素数目" +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "延弧形移动海龟" -#~ msgid "threshold" -#~ msgstr "阀门" +#: pysamples/uturn.py:26 +msgid "make a uturn" +msgstr "做一个翻转" -#~ msgid "set a threshold for a RGB color" -#~ msgstr "为RGB颜色设置一个阀门" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "逻辑“等于”运算符" -#~ msgid "camera mode" -#~ msgstr "摄像头模式" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "画笔颜色模板" -#, fuzzy -#~ msgid "set the color mode of the camera: RGB; YUV or HSV" -#~ msgstr "设置摄像头的颜色模式:RGB,YUV或HSV" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "暂停视频或音频" -#~ msgid "x position" -#~ msgstr "x 位置" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "保存数值到变量1" -#~ msgid "return x position" -#~ msgstr "返回 x 位置" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "保存数值到变量2" -#~ msgid "y position" -#~ msgstr "y 位置" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "替海龟穿上一个自定义的“外壳”" -#~ msgid "return y position" -#~ msgstr "返回 y 位置" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "鼠标按下" -#~ msgid "pixels" -#~ msgstr "像素" +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "向后移动海龟" -#~ msgid "return the number of pixels of the biggest blob" -#~ msgstr "返回最大块的像素数目" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "屏幕上方的Y座标" -#~ msgid "set the color mode of the camera to RGB" -#~ msgstr "设置摄像头的颜色模式为RGB" +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "显示积木块" -#~ msgid "set the color mode of the camera to YUV" -#~ msgstr "设置摄像头的颜色模式为YUV" +#: pysamples/grecord.py:217 +msgid "play" +msgstr "播放" -#~ msgid "set the color mode of the camera to HSV" -#~ msgstr "设置摄像头的颜色模式为HSV" +#: pysamples/grecord.py:219 +msgid "save" +msgstr "保存" -#~ msgid "empty calibration" -#~ msgstr "空校准" +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "颜色" -#~ msgid "error in string conversion" -#~ msgstr "字符串转换错误" +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "设置海龟绘制的线条的宽度" -#~ msgid "SumBot" -#~ msgstr "桑博" +#: turtleblocks.py:355 +msgid "Open" +msgstr "打开" -#~ msgid "speed SumBot" -#~ msgstr "加速桑博" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "方向" -#~ msgid "submit the speed to the SumBot" -#~ msgstr "提交桑博的速度" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "纵坐标" -#~ msgid "set the default speed for the movement commands" -#~ msgstr "设置移动命令的默认速度" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "一个可编程积木块:用于加入多变量的高级数学等式,例如sqrt(x*x+y*y)" -#~ msgid "forward SumBot" -#~ msgstr "向前桑博" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "如果" -#~ msgid "move SumBot forward" -#~ msgstr "移动桑博向前" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "移动海龟到座标(x,y);(0,0)是屏幕中心。" -#~ msgid "backward SumBot" -#~ msgstr "向后桑博" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#~ msgid "move SumBot backward" -#~ msgstr "移动桑博向后" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "停止" -#~ msgid "stop SumBot" -#~ msgstr "停止桑博" +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "动作2" -#~ msgid "stop the SumBot" -#~ msgstr "让桑博停下来" +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "动作1" -#~ msgid "left SumBot" -#~ msgstr "左转桑博" +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "完成填充" -#~ msgid "turn left the SumBot" -#~ msgstr "让桑博向左转" +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "复制" -#~ msgid "right SumBot" -#~ msgstr "右转桑博" +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "粘贴" -#~ msgid "turn right the SumBot" -#~ msgstr "让桑博向右转" +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "没有输出到" -#~ msgid "angle to center" -#~ msgstr "与中心的角度" +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "活动" -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "得到相对圆环中心的角度" +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "上传到网站" -#~ msgid "angle to Enemy" -#~ msgstr "与敌人的角度" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "清空堆" -#~ msgid "get the angle to the Enemy" -#~ msgstr "得到相对敌人的角度" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "从FILO(先进后出堆)中弹出值" -#~ msgid "x coor. SumBot" -#~ msgstr "桑博x坐标" +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "清屏" -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "得到桑博的x坐标" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "演示模板" -#~ msgid "y coor. SumBot" -#~ msgstr "桑博y坐标" +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "角度" -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "得到桑博的y坐标" +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "自身" -#~ msgid "x coor. Enemy" -#~ msgstr "敌人x坐标" +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "保存/读取" -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "得到敌人的x坐标" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "顶部Y坐标" -#~ msgid "y coor. Enemy" -#~ msgstr "敌人y坐标" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "音频" -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "得到敌人的y坐标" +#: turtleblocks.py:396 +msgid "Tools" +msgstr "工具" -#~ msgid "rotation SumBot" -#~ msgstr "转动桑博" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "端口" -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "得到桑博的转动" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "注释" -#~ msgid "rotation Enemy" -#~ msgstr "转动敌人" +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "将顶部输入减去底部输入" -#~ msgid "get the rotation of the Enemy" -#~ msgstr "得到敌人的转动" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "暂停媒体" -#~ msgid "distance to center" -#~ msgstr "与中心的距离" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "把目标RGB值放入堆中" -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "得到与圆环中心的距离" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "查询键盘输入(结果保存在“键盘”积木块中)" -#~ msgid "distance to Enemy" -#~ msgstr "与敌人的距离" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "直角坐标" -#~ msgid "get the distance to the Enemy" -#~ msgstr "得到与敌人的距离" +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "清空屏幕并重置海龟" -#~ msgid "update information" -#~ msgstr "更新信息" +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "麦克风原始输入信号" -#~ msgid "update information from the server" -#~ msgstr "从服务器更新信息" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "返回海龟“看到”的颜色" -#~ msgid "Palette of physics blocks" -#~ msgstr "物理块模板" +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "执行动作堆1" -#~ msgid "start polygon" -#~ msgstr "定义多边形" +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "海龟指令模板" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "根据当前海龟xy方向的位置开始定义新的多边形。" +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "永远执行的循环" -#~ msgid "add point" -#~ msgstr "添加点" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "对齐显示" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "根据当前海龟xy方向的位置添加新的点到当前的多边形。" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "想重新 %s 吗?" -#~ msgid "end polygon" -#~ msgstr "完成多边形" +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "加载作品" -#~ msgid "Define a new polygon." -#~ msgstr "定义一个新的多边形。" +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "项目" -#~ msgid "end filled polygon" -#~ msgstr "结束填充多边形的绘制" +#: turtleblocks.py:402 +msgid "Debug" +msgstr "调试" -#~ msgid "Not a simple polygon" -#~ msgstr "不是一个简单多边形" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "关闭悬停帮助" -#~ msgid "Define a new filled polygon." -#~ msgstr "定义一个新的填充多边形。" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "同余" -#~ msgid "triangle" -#~ msgstr "三角形" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "密码" -#~ msgid "base" -#~ msgstr "基地" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "竖直空白" -#~ msgid "Add a triangle object to the project." -#~ msgstr "添加一个三角形对象到项目。" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "使用该插件,请重新启动龟背艺术。" -#~ msgid "circle" -#~ msgstr "圆形" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "完成填充多边形的绘制(和开始填充一起使用)" -#~ msgid "Add a circle object to the project." -#~ msgstr "添加一个圆形对象到项目。" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "分享" -#~ msgid "rectangle" -#~ msgstr "长方形" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "小于" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "添加一个长方形对象到项目。" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "平方根" -#~ msgid "reset" -#~ msgstr "重置" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "重新调整坐标" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "重置项目;清除对象列表。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "显示积木块" -#~ msgid "motor" -#~ msgstr "电机" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "退出" -#~ msgid "torque" -#~ msgstr "转矩" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar日志描述字段" -#~ msgid "speed" -#~ msgstr "速度" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "设置灰度" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "电机转矩和速度范围是从0(关)到正数,电机放置在最近被创建的对象上。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "演示项目列表" -#~ msgid "pin" -#~ msgstr "图钉" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "持续时间" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "用图钉固定一个对象,防止掉落。" +#: turtleblocks.py:354 +msgid "New" +msgstr "新建" -#~ msgid "joint" -#~ msgstr "联合" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "在你的代码中加入注释" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "把两个对象连接到一起(在点x,y处最近创建的对象)。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "读取像素" -#~ msgid "save as Physics activity" -#~ msgstr "保存为“物理”活动" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "比例" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "当作一个物理活动保存该项目到日志。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "底部" -#~ msgid "gear" -#~ msgstr "齿轮" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "紫色" -#~ msgid "Add a gear object to the project." -#~ msgstr "添加一个齿轮对象到项目。" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "缩小坐标轴比例" -#~ msgid "density" -#~ msgstr "密度" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "点击打开" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "设置对象的密度属性(密度可以是任何正数)。" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "麦克风输入音高" -#~ msgid "friction" -#~ msgstr "摩擦" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "设置" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "设置对象的摩擦系数(值从0到1,0无摩擦,1强摩擦)。" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "描述:" -#~ msgid "bounciness" -#~ msgstr "弹力" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "日志" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "设置对象的弹性系数(值从0到1,0无弹性,1强弹性)。" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "清空回收站" -#~ msgid "dynamic" -#~ msgstr "动态" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "海龟将在移动时绘图。" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "动态值为1时对象可以移动;为0时位置是固定的。" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "载入..." -#~ msgid "Palette of WeDo blocks" -#~ msgstr "乐高WeDo模板" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar日志中的音频文件" -#~ msgid "" -#~ "tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " -#~ "tilt left, 2 == tilt right)" -#~ msgstr "倾斜传感器输出:(-1 ==没有倾斜,0 ==向前倾斜,3 ==向后倾斜,1 ==向左倾斜,2 ==向左倾斜)" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "停止" -#~ msgid "distance sensor output" -#~ msgstr "距离传感器输出" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "海龟" -#~ msgid "Motor A" -#~ msgstr "电机 A" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "改变积木块模板的方向" -#~ msgid "returns the current value of Motor A" -#~ msgstr "返回电机A的当前值" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "放入" -#~ msgid "Motor B" -#~ msgstr "电机B" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "隐藏积木块" -#~ msgid "returns the current value of Motor B" -#~ msgstr "返回电机B的当前值" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "载入Python积木块" -#~ msgid "set the value for Motor A" -#~ msgstr "设置电机A的值" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "加" -#~ msgid "set the value for Motor B" -#~ msgstr "设置电机B的值" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "或" -#~ msgid "Palette of LEGO NXT blocks of motors" -#~ msgstr "乐高NXT马达部件模板" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "演示模板:项目列表" -#~ msgid "Palette of LEGO NXT blocks of sensors" -#~ msgstr "乐高NXT传感器部件模板" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "用来拉长积木块的“自身”操作符" -#~ msgid "touch" -#~ msgstr "触摸" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "缩小积木块" -#~ msgid "ultrasonic" -#~ msgstr "超声波" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "设置海龟绘制的文字的大小" -#~ msgid "light" -#~ msgstr "灯光" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "包含海龟当前的朝向的角度值(可以用来替换数字块)" -#, fuzzy -#~ msgid "grey" -#~ msgstr "灰度" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "图片" -#, fuzzy -#~ msgid "Please check the connection with the brick" -#~ msgstr "请检查与积木的连接。" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "返回最小值(顶部)和最大值(底部)之间的随机数" -#, fuzzy -#~ msgid "The value of power must be between -127 to 127" -#~ msgstr "功率值必须在-127到127之间。" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "包含当前画笔的颜色(可以用来替换数字块)" -#, fuzzy -#~ msgid "An error has occurred: check all connections and try to reconnect" -#~ msgstr "发生了一个错误:请检查所有连接并试图重新连接。" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "显示模板" -#~ msgid "NXT not found" -#~ msgstr "没找到 NXT" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "保存图片到Sugar日志中" -#~ msgid "refresh NXT" -#~ msgstr "刷新 NXT" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "保存屏幕截图" -#~ msgid "Search for a connected NXT brick." -#~ msgstr "搜索已连接的NXT积木。" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "开始" -#~ msgid "play tone" -#~ msgstr "播放音调" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "在堆为空时返回“真”" -#~ msgid "frequency" -#~ msgstr "频率" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "向前移动海龟" -#~ msgid "Play a tone at frequency for time." -#~ msgstr "以时间频率播放音调。" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "前进" -#~ msgid "port" -#~ msgstr "端口" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "我的盒子" -#~ msgid "power" -#~ msgstr "电源" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "帐号ID" -#~ msgid "rotations" -#~ msgstr "旋转" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "选择要分享的积木块" -#~ msgid "turn a motor" -#~ msgstr "转动电机" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "后退" -#, fuzzy -#~ msgid "" -#~ "synchronize\n" -#~ "\n" -#~ "motors" -#~ msgstr "同步两个电机" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "设置多媒体的显示比例" -#~ msgid "synchronize two motors connected in PORT B and PORT C" -#~ msgstr "同步连接在端口B和端口C的两个电机" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "包含当前的比例" -#~ msgid "PORT A" -#~ msgstr "端口 A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "以 1x1 方式演示" -#~ msgid "PORT A of the brick" -#~ msgstr "积木的端口 A" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "以 1x2 方式演示" -#~ msgid "PORT B" -#~ msgstr "端口 B" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "可命名动作堆的顶部" -#~ msgid "PORT B of the brick" -#~ msgstr "积木的端口 B" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "保存数值到命名的变量" -#~ msgid "PORT C" -#~ msgstr "端口 C" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "逻辑“或”运算符" -#~ msgid "PORT C of the brick" -#~ msgstr "积木的端口 C" +#: 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 "麦克风输入电压" -#~ msgid "start motor" -#~ msgstr "启动电机" +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "循环指定次数" -#~ msgid "Run a motor forever." -#~ msgstr "持续运行电机。" +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "保存..." -#~ msgid "brake motor" -#~ msgstr "制动电机" +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "执行动作堆2" -#~ msgid "Stop a specified motor." -#~ msgstr "停止指定的电机。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 +msgid "setxy" +msgstr "设置坐标xy" -#~ msgid "reset motor" -#~ msgstr "复位电机" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "标题Y坐标" -#~ msgid "Reset the motor counter." -#~ msgstr "复位电机计数器。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "标题X坐标" -#~ msgid "motor position" -#~ msgstr "电机位置" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "涂满全屏" -#~ msgid "Get the motor position." -#~ msgstr "得到电机位置。" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "其他" -#~ msgid "PORT 1" -#~ msgstr "端口 1" +#: turtleblocks.py:357 +msgid "Save as" +msgstr "另存为" -#~ msgid "PORT 1 of the brick" -#~ msgstr "积木的端口 1" +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "设置 坐标" -#~ msgid "read" -#~ msgstr "读取" +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "回收站" -#~ msgid "sensor" -#~ msgstr "传感器" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "极坐标" -#~ msgid "Read sensor output." -#~ msgstr "读取传感器输出。" +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "重复" -#~ msgid "PORT 2" -#~ msgstr "端口 2" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "等待当前的视频或音频结束" -#~ msgid "PORT 2 of the brick" -#~ msgstr "积木的端口 2" +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "另存为图片" -#~ msgid "light sensor" -#~ msgstr "灯光传感器" +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "编辑" -#~ msgid "PORT 3" -#~ msgstr "端口 3" +#: 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 "麦克风输入电阻" -#~ msgid "PORT 3 of the brick" -#~ msgstr "积木的端口 3" +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "动作堆2的顶部" -#~ msgid "touch sensor" -#~ msgstr "触控传感器" +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "将顶部输入(分子)除以底部输入(分母)" -#~ msgid "distance sensor" -#~ msgstr "距离传感器" +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "最大值" -#~ msgid "PORT 4" -#~ msgstr "端口 4" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "在位于屏幕底部的状态积木块中打印值" -#~ msgid "PORT 4 of the brick" -#~ msgstr "积木的端口 4" +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "开始填充" -#~ msgid "sound sensor" -#~ msgstr "声音传感器" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 +msgid "holds results of query-keyboard block as ASCII" +msgstr "QWERTY-键盘积木块的结果保持为ASCII" -#~ msgid "color sensor" -#~ msgstr "颜色传感器" +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_CN.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "压入" -#~ msgid "set light" -#~ msgstr "设置灯" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "一个可编程积木块:用于加入多变量的高级数学等式,例如sin(x+y+z)" -#~ msgid "Set color sensor light." -#~ msgstr "设置颜色感应灯。" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "全部还原" -#~ msgid "battery level" -#~ msgstr "电池电量" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "你好" -#, fuzzy -#~ msgid "Get battery level of the brick" -#~ msgstr "获取板子的电池电量。" +#. TRANS: "name" option from activity.info file +msgid "TurtleBlocks" +msgstr "海龟积木" -#~ msgid "HIGH" -#~ msgstr "高" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "在海龟方块中要让修改立即生效,请按“停止”按钮" -#~ msgid "LOW" -#~ msgstr "低" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "调色板" -#~ msgid "INPUT" -#~ msgstr "输入" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "发布到 Facebook 墙" -#~ msgid "OUTPUT" -#~ msgstr "输出" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "请安装的说话活动,然后再试一次。" -#~ msgid "PWM" -#~ msgstr "调速" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "西班牙语" -#~ msgid "SERVO" -#~ msgstr "伺服" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "英语" -#~ msgid "ERROR: Check the Arduino and the number of port." -#~ msgstr "错误:请检查的Arduino和端口号。" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "很抱歉,我不明白你问的是什么。" -#~ msgid "ERROR: Value must be a number from 0 to 255." -#~ msgstr "错误:数值必须从0到255。" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "很抱歉,没有空余内存来加载我的大脑。请关闭其他活动,并再试一次。" -#~ msgid "ERROR: Value must be either HIGH or LOW." -#~ msgstr "错误:值必须是高或低。" +#: turtleblocks.py:407 +msgid "About..." +msgstr "关于..." -#~ msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." -#~ msgstr "错误:模式必须是输入,输出,调速或伺服。" +#~ msgid "adjust LED intensity between 0 and 255" +#~ msgstr "调整指示灯的光强度(0到255之间)" -#~ msgid "pin mode" -#~ msgstr "引脚模式" +#~ msgid "returns the ambient light level" +#~ msgstr "返回环境光等级" -#~ msgid "mode" -#~ msgstr "模式" +#~ msgid "returns the ambient temperature" +#~ msgstr "返回环境温度" -#~ msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." -#~ msgstr "选择引脚功能(输入,输出,调速,伺服)。" +#~ msgid "returns 0 or 1 depending on the sensor inclination" +#~ msgstr "返回传感器方位角(0或者1)" -#~ msgid "analog write" -#~ msgstr "模拟写" +#~ msgid "switches from 0 to 1, the frequency depends on the vibration" +#~ msgstr "从0切换到1,频率取决于振动" -#~ msgid "Write analog value in specified port." -#~ msgstr "写模拟值到指定的端口。" +#~ msgid "grayscale" +#~ msgstr "灰度" -#~ msgid "analog read" -#~ msgstr "模拟读" +#~ msgid "ambient light" +#~ msgstr "环境光" #~ 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 "从模拟端口读值。值可能是0到1023之间。使用Vref来确定电压。对于USB,电压大约等于 ((read)*5)/1024。" +#~ "TurtleBlocks with some robot plugins: Butia, Lego NxT, WeDo, FollowMe" +#~ msgstr "海龟积木支持一些机器人插件:Butia, Lego NxT, WeDo, FollowMe" -#~ msgid "digital write" -#~ msgstr "数字写" +#~ msgid "magnetic induction" +#~ msgstr "磁场感应" -#~ msgid "Write digital value to specified port." -#~ msgstr "写数字值到指定的端口。" +#~ msgid "vibration" +#~ msgstr "振动" -#~ msgid "digital read" -#~ msgstr "数字读" +#~ msgid "move the Butia robot forward a predefined distance" +#~ msgstr "布迪机器人向前移动一个预先设定的距离" -#~ msgid "Read value from digital port." -#~ msgstr "从数字端口读取值。" +#~ msgid "move the Butia robot backward a predefined distance" +#~ msgstr "布迪机器人向后移动一个预先设定的距离" -#~ msgid "Set HIGH value for digital port." -#~ msgstr "设置数字端口为高值。" +#~ msgid "turn Butia" +#~ msgstr "转动布迪" -#~ msgid "Configure Arduino port for digital input." -#~ msgstr "配置用于数字输入的Arduino端口。" +#~ msgid "turn the Butia robot x degrees" +#~ msgstr "将布迪机器人转动X角度" -#~ msgid "Configure Arduino port to drive a servo." -#~ msgstr "配置用于驱动伺服电机的Arduino端口。" +#~ msgid "moves the Butia at specify speed motors" +#~ msgstr "电机用指定速度移动布迪" -#~ msgid "Set LOW value for digital port." -#~ msgstr "设置数字端口为低值。" +#~ msgid "returns the object gray level as a number between 0 and 1023" +#~ msgstr "返回对象灰度(0到1023之间)" -#~ msgid "Configure Arduino port for digital output." -#~ msgstr "配置用于数字输出的Arduino端口。" +#~ msgid "returns the ambient light level as a number between 0 and 1023" +#~ msgstr "返回环境光亮度(0到1023之间)" -#~ msgid "Configure Arduino port for PWM (pulse-width modulation)." -#~ msgstr "配置用于调速(脉宽调制)的Arduino端口" +#~ msgid "returns the ambient temperature as a number between 0 and 255" +#~ msgstr "返回环境温度(0到255之间)" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "乐高WeDo模板" +#~ msgid "" +#~ "returns the distance from the object in front of the sensor as a number " +#~ "between 0 and 255" +#~ msgstr "返回传感器前物体的距离(0到255之间)" #, fuzzy -#~ msgid "samples" -#~ msgstr "例子" +#~ msgid "grey" +#~ msgstr "灰度" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "通过传递参数设置布迪的电机速度(0到1023之间)" #~ msgid "turn the Butia robot to the left" diff --git a/po/zh_TW.po b/po/zh_TW.po index 0fbd415..128694c 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,13 +1,50 @@ +# #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +# #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. +# #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +#, fuzzy msgid "" msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-02 00:32-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.7.0\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-02-24 00:31-0500\n" @@ -22,1177 +59,1764 @@ msgstr "" "X-Generator: Pootle 2.0.5\n" #. TRANS: "name" option from activity.info file -#, fuzzy -msgid "TurtleBlocks" -msgstr "小烏龜區塊" - #. TRANS: "summary" option from activity.info file #. TRANS: "description" option from activity.info file -msgid "" -"A Logo-inspired turtle that draws colorful pictures with snap-together " -"visual programming blocks" +msgid "turtleart-extras (master)" msgstr "" -#: TurtleArt/tabasics.py:123 -msgid "Palette of turtle commands" -msgstr "小烏龜指令調色盤" +#: taextras.py:36 +msgid "Turtle Art Mini" +msgstr "迷你小海龜" -#: TurtleArt/tabasics.py:128 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 -msgid "forward" -msgstr "前進" +#: taextras.py:40 +msgid "Turtle Confusion" +msgstr "小海龜謎題" -#: TurtleArt/tabasics.py:132 -msgid "moves turtle forward" -msgstr "讓小烏龜往前" +#: taextras.py:41 taextras.py:46 +msgid "Select a challenge" +msgstr "選擇挑戰" -#: TurtleArt/tabasics.py:139 -msgid "back" -msgstr "後退" +#: taextras.py:45 +msgid "Amazonas Tortuga" +msgstr "" -#: TurtleArt/tabasics.py:143 -msgid "moves turtle backward" -msgstr "讓小烏龜倒車" +#: taextras.py:52 +msgid "Palette of Mexican pesos" +msgstr "墨西哥披索色盤" -#: TurtleArt/tabasics.py:151 -msgid "clean" -msgstr "清除畫面" +#: taextras.py:53 +msgid "Palette of Colombian pesos" +msgstr "哥倫比亞披索色盤" -#: TurtleArt/tabasics.py:154 -msgid "clears the screen and reset the turtle" -msgstr "清除螢幕並重置小烏龜" +#: taextras.py:54 +msgid "Palette of Rwandan francs" +msgstr "盧安達法郎色盤" -#: TurtleArt/tabasics.py:162 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 -msgid "left" -msgstr "左轉" +#: taextras.py:55 +msgid "Palette of US dollars" +msgstr "" -#: TurtleArt/tabasics.py:166 -msgid "turns turtle counterclockwise (angle in degrees)" -msgstr "將小烏龜逆時針轉向(輸入角度)" +#: taextras.py:56 +msgid "Palette of Australian dollars" +msgstr "" -#: TurtleArt/tabasics.py:174 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 -msgid "right" -msgstr "右轉" +#: taextras.py:57 +msgid "Palette of Paraguayan Guaranies" +msgstr "" -#: TurtleArt/tabasics.py:178 -msgid "turns turtle clockwise (angle in degrees)" -msgstr "讓小烏龜順時針轉彎(輸入角度)" +#: taextras.py:58 +msgid "Palette of Peruvian Nuevo Soles" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "arc" -msgstr "弧度" +#: taextras.py:59 +msgid "Palette of Uruguayan Pesos" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "angle" -msgstr "角度" +#. TRANS: Butia is the Arduino Robot Project from Uruguay +#. (http://www.fing.edu.uy/inco/proyectos/butia/) +#: taextras.py:65 +msgid "TurtleBots" +msgstr "" -#: TurtleArt/tabasics.py:186 -msgid "radius" -msgstr "半徑" +#: taextras.py:66 +#, fuzzy +msgid "adjust LED intensity between 0 and 255" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"調整 LED 亮度值介於 0 到 255。" -#: TurtleArt/tabasics.py:190 -msgid "moves turtle along an arc" -msgstr "讓小烏龜跟著弧形移動" +#: taextras.py:67 +#, fuzzy +msgid "returns the object gray level as a number between 0 and 1023" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"傳回環境亮度值介於 0 到 1023。" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "set xy" -msgstr "指定座標" +#: taextras.py:68 +#, fuzzy +msgid "returns 1 when the button is press and 0 otherwise" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"當按鈕被按下時傳回 1,否則傳回 0。" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "x" -msgstr "X座標" +#: taextras.py:69 +#, fuzzy +msgid "returns the ambient light level as a number between 0 and 1023" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"傳回環境亮度值介於 0 到 1023。" -#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 -msgid "y" -msgstr "Y座標" +#: taextras.py:70 +#, fuzzy +msgid "returns the ambient temperature as a number between 0 and 255" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"傳回環境溫度值介於 0 到 255。" -#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +#: taextras.py:71 +#, fuzzy msgid "" -"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." -msgstr "把小烏龜移動到座標(x,y),(0,0)是螢幕中心點" +"returns the distance from the object in front of the sensor as a number " +"between 0 and 255" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"傳回感應器前方物體的距離值介於 0 到 255。" -# -#: TurtleArt/tabasics.py:213 -msgid "set heading" -msgstr "設定標頭" +#: taextras.py:73 +#, fuzzy +msgid "returns 0 or 1 depending on the sensor inclination" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"傳回 0 或 1 取決於感應器是否傾斜。" -#: TurtleArt/tabasics.py:217 -msgid "sets the heading of the turtle (0 is towards the top of the screen.)" -msgstr "設定小烏龜的方向(0是正對螢幕上方)" +#: taextras.py:74 +#, fuzzy +msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"當感應器偵測到磁場時傳回 1,否則傳回 0。" -#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 -msgid "xcor" -msgstr "X座標" +#: taextras.py:75 +#, fuzzy +msgid "switches from 0 to 1, the frequency depends on the vibration" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"由 0 切換到 1,頻率取決於震動。" + +#: taextras.py:76 +msgid "returns the value of the resistance" +msgstr "" -#: TurtleArt/tabasics.py:226 -msgid "" -"holds current x-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "保持小烏龜現在的x座標值(可以用來代替數字區塊)" +#: taextras.py:77 +msgid "LED" +msgstr "LED" -#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 -#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 -msgid "ycor" -msgstr "Y座標" +#: taextras.py:78 +msgid "button" +msgstr "" -#: TurtleArt/tabasics.py:237 -msgid "" -"holds current y-coordinate value of the turtle (can be used in place of a " -"number block)" -msgstr "保持小烏龜目前的y座標值(可以用來代替數字區塊)" +#: taextras.py:79 +msgid "grayscale" +msgstr "灰階" -#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 -#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 -msgid "heading" -msgstr "方向" +#: taextras.py:80 +msgid "ambient light" +msgstr "環境光" -#: TurtleArt/tabasics.py:248 -msgid "" -"holds current heading value of the turtle (can be used in place of a number " -"block)" -msgstr "保持小烏龜目前的方向(可以用來代替數字區塊)" +#: taextras.py:81 +msgid "temperature" +msgstr "溫度" -#: TurtleArt/tabasics.py:282 -msgid "Palette of pen commands" -msgstr "色筆指令盤" +#: taextras.py:82 taextras.py:291 +msgid "distance" +msgstr "距離" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -msgid "fill screen" -msgstr "全螢幕" +#: taextras.py:83 taextras.py:288 +msgid "tilt" +msgstr "傾斜" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 -#: TurtleArt/tabasics.py:348 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 -msgid "color" -msgstr "顏色" +#: taextras.py:84 +msgid "magnetic induction" +msgstr "磁力感應" -#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 -#: TurtleArt/tabasics.py:358 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 -msgid "shade" -msgstr "形狀" +#: taextras.py:85 +msgid "vibration" +msgstr "震動" -#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 -msgid "fills the background with (color, shade)" -msgstr "以(顏色或陰影)填滿背景" +#: taextras.py:86 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 "電阻" -#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 -msgid "gray" -msgstr "灰色" +#: taextras.py:87 +msgid "Butia Robot" +msgstr "棕櫚機器人" -#: TurtleArt/tabasics.py:313 -msgid "set color" -msgstr "設定線條顏色" +#: taextras.py:88 +msgid "refresh Butia" +msgstr "" -#: TurtleArt/tabasics.py:317 -msgid "sets color of the line drawn by the turtle" -msgstr "設定小烏龜畫線的顏色" +#: taextras.py:89 +msgid "refresh the state of the Butia palette and blocks" +msgstr "" -#: TurtleArt/tabasics.py:325 -msgid "set shade" -msgstr "設定填滿顏色" +#. TRANS: This string is shorthand for "battery charge of Butia" +#: taextras.py:91 +msgid "battery charge Butia" +msgstr "" -#: TurtleArt/tabasics.py:329 -msgid "sets shade of the line drawn by the turtle" -msgstr "設定小烏龜畫線的陰影" +#: taextras.py:92 +#, fuzzy +msgid "returns the battery charge as a number between 0 and 255" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"傳回電池電量值由 0 到 255。" + +#. TRANS: This string is shorthand for "speed of Butia" +#: taextras.py:94 +msgid "speed Butia" +msgstr "" -#: TurtleArt/tabasics.py:337 -msgid "set gray" -msgstr "設定為灰色" +#: taextras.py:95 +msgid "set the speed of the Butia motors" +msgstr "" -#: TurtleArt/tabasics.py:340 -msgid "sets gray level of the line drawn by the turtle" -msgstr "設定小烏龜所畫線條的灰階值" +#: taextras.py:96 +msgid "the speed must be a value between 0 and 1023" +msgstr "" -#: TurtleArt/tabasics.py:349 -msgid "holds current pen color (can be used in place of a number block)" -msgstr "保持現有畫筆顏色(可替換數值區塊)" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia forward" +#: taextras.py:98 +msgid "forward Butia" +msgstr "棕櫚往前移" -#: TurtleArt/tabasics.py:359 -msgid "holds current pen shade" -msgstr "沿用目前色筆深度" +#: taextras.py:99 +#, fuzzy +msgid "move the Butia robot forward" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"棕櫚機器人往前移動。" -#: TurtleArt/tabasics.py:368 -msgid "holds current gray level (can be used in place of a number block)" -msgstr "維持目前的灰階度(可以用來代替數字區塊)" +#: taextras.py:100 +#, fuzzy +msgid "move the Butia robot forward a predefined distance" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"棕櫚機器人往前移動一定的距離。" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia left" +#: taextras.py:102 +msgid "left Butia" +msgstr "棕櫚左移" + +#: taextras.py:103 +#, fuzzy +msgid "turn the Butia robot at left" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"棕櫚機器人轉 x 度。" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "move Butia backward" +#: taextras.py:105 +msgid "backward Butia" +msgstr "棕櫚往後移" + +#: taextras.py:106 +#, fuzzy +msgid "move the Butia robot backward" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"棕櫚機器人往後移動。" -#: TurtleArt/tabasics.py:376 -msgid "pen up" -msgstr "提筆" +#: taextras.py:107 +#, fuzzy +msgid "move the Butia robot backward a predefined distance" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"棕櫚機器人往後移動一定的距離。" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: This string is shorthand for "turn Butia right" +#: taextras.py:109 +msgid "right Butia" +msgstr "棕櫚右移" + +#: taextras.py:110 +#, fuzzy +msgid "turn the Butia robot at right" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"棕櫚機器人轉 x 度。" + +#: taextras.py:111 +msgid "turn Butia" +msgstr "" -#: TurtleArt/tabasics.py:379 -msgid "Turtle will not draw when moved." -msgstr "移動中的小烏龜並不會畫圖" +#: taextras.py:112 +#, fuzzy +msgid "turn the Butia robot x degrees" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"棕櫚機器人轉 x 度。" + +#: taextras.py:113 +msgid "stop Butia" +msgstr "停止棕櫚" + +#: taextras.py:114 +msgid "stop the Butia robot" +msgstr "" -#: TurtleArt/tabasics.py:385 -msgid "pen down" -msgstr "落筆" +#: taextras.py:115 +msgid "Butia" +msgstr "棕櫚" -#: TurtleArt/tabasics.py:388 -msgid "Turtle will draw when moved." -msgstr "小烏龜會畫下移動的軌跡" +#: taextras.py:119 +msgid "Error importing Pygame. This plugin require Pygame 1.9" +msgstr "" -#: TurtleArt/tabasics.py:394 -msgid "set pen size" -msgstr "設定畫筆大小" +#: taextras.py:120 +#, fuzzy +msgid "Error on initialization of the camera" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"初始化攝影機時發生錯誤。" + +#: taextras.py:121 +msgid "No camera was found" +msgstr "" -#: TurtleArt/tabasics.py:398 -msgid "sets size of the line drawn by the turtle" -msgstr "設定小烏龜畫線的寬度" +#: taextras.py:122 +msgid "Error stopping camera" +msgstr "" -#: TurtleArt/tabasics.py:408 -msgid "start fill" -msgstr "開始填滿" +#: taextras.py:123 +msgid "Error starting camera" +msgstr "" -#: TurtleArt/tabasics.py:410 -msgid "starts filled polygon (used with end fill block)" -msgstr "開始填滿多邊形(用最後填滿的區塊)" +#. TRANS: The "mask" is used to restrict processing to a region in the image +#: taextras.py:125 +msgid "Error in get mask" +msgstr "" -#: TurtleArt/tabasics.py:417 -msgid "end fill" -msgstr "停止填滿" +#: taextras.py:126 +msgid "FollowMe" +msgstr "跟我來" -#: TurtleArt/tabasics.py:419 -msgid "completes filled polygon (used with start fill block)" -msgstr "完全填滿的多邊形(用開始的填滿區塊)" +#: taextras.py:127 +msgid "refresh FollowMe" +msgstr "" -#: TurtleArt/tabasics.py:426 -msgid "pen size" -msgstr "畫筆大小" +#: taextras.py:128 +msgid "Search for a connected camera." +msgstr "" -#: TurtleArt/tabasics.py:427 -msgid "holds current pen size (can be used in place of a number block)" -msgstr "保持目前色筆大小(可以用來代替數字區塊)" +#. TRANS: the calibration is used to match an RGB color to a target +#: taextras.py:130 +msgid "calibration" +msgstr "" -#: TurtleArt/tabasics.py:441 -msgid "Palette of pen colors" -msgstr "色筆調色盤" +#: taextras.py:131 +msgid "store a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:443 -msgid "red" -msgstr "紅色" +#: taextras.py:132 +msgid "return a personalized calibration" +msgstr "" -#: TurtleArt/tabasics.py:444 -msgid "orange" -msgstr "橘色" +#: taextras.py:133 +msgid "follow" +msgstr "" -#: TurtleArt/tabasics.py:446 -msgid "yellow" -msgstr "黃色" +#: taextras.py:134 +msgid "follow a color or calibration" +msgstr "" -#: TurtleArt/tabasics.py:448 -msgid "green" -msgstr "綠色" +#: taextras.py:135 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 "亮度" -#: TurtleArt/tabasics.py:449 -msgid "cyan" -msgstr "青綠色" +#: taextras.py:136 +msgid "set the camera brightness as a value between 0 to 255." +msgstr "" -#: TurtleArt/tabasics.py:450 -msgid "blue" -msgstr "藍色" +#: taextras.py:137 +msgid "minimum pixels" +msgstr "" -#: TurtleArt/tabasics.py:451 -msgid "purple" -msgstr "紫色" +#: taextras.py:138 +msgid "set the minimal number of pixels to follow" +msgstr "" -#: TurtleArt/tabasics.py:453 -msgid "white" -msgstr "白色" +#: taextras.py:139 +msgid "threshold" +msgstr "" -#: TurtleArt/tabasics.py:454 -msgid "black" -msgstr "黑色" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:141 +msgid "set a threshold for a RGB color" +msgstr "" -#: TurtleArt/tabasics.py:460 -msgid "set text color" -msgstr "設定文字顏色" +#: taextras.py:142 +msgid "camera mode" +msgstr "" -#: TurtleArt/tabasics.py:463 -msgid "sets color of text drawn by the turtle" -msgstr "設定小烏龜寫字的顏色" +#. TRANS: RGB, YUV, and HSV are color spaces +#: taextras.py:144 +msgid "set the color mode of the camera: RGB; YUV or HSV" +msgstr "" -#: TurtleArt/tabasics.py:471 -msgid "set text size" -msgstr "設定文字大小" +#: taextras.py:145 +msgid "get brightness" +msgstr "" -#: TurtleArt/tabasics.py:474 -msgid "sets size of text drawn by the turtle" -msgstr "設定小烏龜寫字的大小" +#: taextras.py:146 +msgid "get the brightness of the ambient light" +msgstr "" -#: TurtleArt/tabasics.py:557 -msgid "Palette of numeric operators" -msgstr "數值運算子調色盤" +#: taextras.py:147 +msgid "average color" +msgstr "" -#: TurtleArt/tabasics.py:563 -msgid "plus" -msgstr "加" +#: taextras.py:148 +msgid "" +"if set to 0 then color averaging is off during calibration; for other values " +"it is on" +msgstr "" -#: TurtleArt/tabasics.py:567 -msgid "adds two alphanumeric inputs" -msgstr "增加兩個字母與數字並用的輸入值" +#: taextras.py:149 +msgid "x position" +msgstr "x 位置" -#: TurtleArt/tabasics.py:575 -msgid "minus" -msgstr "減" +#: taextras.py:150 +msgid "return x position" +msgstr "傳回 x 位置" -#: TurtleArt/tabasics.py:578 -msgid "subtracts bottom numeric input from top numeric input" -msgstr "將頂端輸入數值減去底端輸入數值" +#: taextras.py:151 +msgid "y position" +msgstr "y 位置" -#: TurtleArt/tabasics.py:589 -msgid "multiply" -msgstr "相乘" +#: taextras.py:152 +msgid "return y position" +msgstr "傳回 y 位置" -#: TurtleArt/tabasics.py:592 -msgid "multiplies two numeric inputs" -msgstr "兩個數相乘" +#: taextras.py:153 +msgid "pixels" +msgstr "" -#: TurtleArt/tabasics.py:601 -msgid "divide" -msgstr "除" +#: taextras.py:154 +msgid "return the number of pixels of the biggest blob" +msgstr "" -#: TurtleArt/tabasics.py:604 -msgid "" -"divides top numeric input (numerator) by bottom numeric input (denominator)" -msgstr "用底端輸入的數值(分母)來除上端輸入的數值(分子)" +#. TRANS: RGB color space (red, green, blue) +#: taextras.py:156 +msgid "set the color mode of the camera to RGB" +msgstr "" -#: TurtleArt/tabasics.py:614 -msgid "identity" -msgstr "辨識" +#. TRANS: YUV color space (luminance, chrominance) +#: taextras.py:158 +msgid "set the color mode of the camera to YUV" +msgstr "" -#: TurtleArt/tabasics.py:616 -msgid "identity operator used for extending blocks" -msgstr "用延伸區塊辨認運算子" +#. TRANS: HSV color space (hue, saturation, value) +#: taextras.py:160 +msgid "set the color mode of the camera to HSV" +msgstr "" -#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 -msgid "mod" -msgstr "模數" +#: taextras.py:161 +msgid "empty calibration" +msgstr "" -#: TurtleArt/tabasics.py:628 -msgid "modular (remainder) operator" -msgstr "模組(剩餘)運算子" +#: taextras.py:162 +msgid "error in string conversion" +msgstr "" -#: TurtleArt/tabasics.py:635 -msgid "√" -msgstr "根號" +#. TRANS: SumBot is a robot programmed for "Sumo wrestling" +#: taextras.py:167 +msgid "SumBot" +msgstr "" -#: TurtleArt/tabasics.py:636 -msgid "square root" -msgstr "平方根" +#: taextras.py:168 +msgid "speed SumBot" +msgstr "" -#: TurtleArt/tabasics.py:639 -msgid "calculates square root" -msgstr "計算平方根" +#: taextras.py:169 +msgid "submit the speed to the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "random" -msgstr "亂數" +#: taextras.py:170 +#, fuzzy +msgid "set the default speed for the movement commands" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"設定預設移動指令的速度。" + +#. TRANS: This string is shorthand for "move SumBot forward" +#: taextras.py:172 +msgid "forward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "min" -msgstr "最小" +#: taextras.py:173 +msgid "move SumBot forward" +msgstr "" -#: TurtleArt/tabasics.py:646 -msgid "max" -msgstr "最大" +#. TRANS: This string is shorthand for "move SumBot backward" +#: taextras.py:175 +msgid "backward SumBot" +msgstr "" -#: TurtleArt/tabasics.py:650 -msgid "returns random number between minimum (top) and maximum (bottom) values" -msgstr "回傳最小與最大值之間的隨機數值" +#: taextras.py:176 +msgid "move SumBot backward" +msgstr "" -#: TurtleArt/tabasics.py:662 -msgid "number" -msgstr "數字" +#: taextras.py:177 +msgid "stop SumBot" +msgstr "" -#: TurtleArt/tabasics.py:663 -msgid "used as numeric input in mathematic operators" -msgstr "在數值運算子中使用數字輸入" +#: taextras.py:178 +msgid "stop the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:671 -msgid "greater than" -msgstr "大於" +#. TRANS: This string is shorthand for "turn SumBot left" +#: taextras.py:180 +msgid "left SumBot" +msgstr "" -#: TurtleArt/tabasics.py:674 -msgid "logical greater-than operator" -msgstr "「大於」的邏輯運算子" +#: taextras.py:181 +msgid "turn left the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:683 -msgid "less than" -msgstr "小於" +#. TRANS: This string is shorthand for "move SumBot right" +#: taextras.py:183 +msgid "right SumBot" +msgstr "" -#: TurtleArt/tabasics.py:687 -msgid "logical less-than operator" -msgstr "「小於」的邏輯運算子" +#: taextras.py:184 +msgid "turn right the SumBot" +msgstr "" -#: TurtleArt/tabasics.py:695 -msgid "equal" -msgstr "等於" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the center of the playing field +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.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:187 +msgid "angle to center" +msgstr "距中心角度" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:189 +#, fuzzy +msgid "get the angle to the center of the dohyo" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得距道場中心的角度" + +#. TRANS: The angle to the center is the angle SumBot must turn to +#. face the Enemy (opponent) +#: taextras.py:192 +msgid "angle to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:699 -msgid "logical equal-to operator" -msgstr "「等於」邏輯運算子" +#: taextras.py:193 +#, fuzzy +msgid "get the angle to the Enemy" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得距對手的距離" + +#. TRANS: This string is shorthand for "x coordinate of SumBot" +#: taextras.py:195 +msgid "x coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:705 -msgid "not" -msgstr "否" +#: taextras.py:196 +#, fuzzy +msgid "get the x coordinate of the SumBot" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得機器人的 x 座標" + +#. TRANS: This string is shorthand for "y coordinate of SumBot" +#: taextras.py:198 +msgid "y coor. SumBot" +msgstr "" -#: TurtleArt/tabasics.py:708 -msgid "logical NOT operator" -msgstr "NOT 邏輯運算子" +#: taextras.py:199 +#, fuzzy +msgid "get the y coordinate of the SumBot" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得機器人的 y 座標" + +#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy" +#: taextras.py:201 +msgid "x coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 -msgid "and" -msgstr "且" +#: taextras.py:202 +#, fuzzy +msgid "get the x coordinate of the Enemy" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得機器人的 x 座標" + +#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy" +#: taextras.py:204 +msgid "y coor. Enemy" +msgstr "" -#: TurtleArt/tabasics.py:718 -msgid "logical AND operator" -msgstr "AND 邏輯演算子" +#: taextras.py:205 +#, fuzzy +msgid "get the y coordinate of the Enemy" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得機器人的 y 座標" + +#. TRANS: This string is shorthand for "rotation of SumBot" +#: taextras.py:207 +msgid "rotation SumBot" +msgstr "" -#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 -msgid "or" -msgstr "或" +#: taextras.py:208 +#, fuzzy +msgid "get the rotation of the Sumbot" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得對手的旋轉值" + +#. TRANS: This string is shorthand for "rotation of SumBot's enemy" +#: taextras.py:210 +msgid "rotation Enemy" +msgstr "" -#: TurtleArt/tabasics.py:729 -msgid "logical OR operator" -msgstr "OR 邏輯運算子" +#: taextras.py:211 +#, fuzzy +msgid "get the rotation of the Enemy" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得對手的旋轉值" + +#: taextras.py:212 +msgid "distance to center" +msgstr "離中心的距離" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dohyo is the playing field +#: taextras.py:214 +#, fuzzy +msgid "get the distance to the center of the dohyo" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得距道場中心的距離" + +#: taextras.py:215 +msgid "distance to Enemy" +msgstr "" -#: TurtleArt/tabasics.py:738 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 -msgid "Palette of flow operators" -msgstr "調色板上的流程運算子" +#: taextras.py:216 +#, fuzzy +msgid "get the distance to the Enemy" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"取得距對手的距離" -#: TurtleArt/tabasics.py:743 -msgid "wait" -msgstr "等待" +#: taextras.py:217 +msgid "update information" +msgstr "更新訊息" -#: TurtleArt/tabasics.py:747 -msgid "pauses program execution a specified number of seconds" -msgstr "暫停程式執行指定的秒數" +#: taextras.py:218 +#, fuzzy +msgid "update information from the server" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"自伺服器更新訊息" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: Please use similar terms to those used in the Physics Activity +#: taextras.py:223 +msgid "Palette of physics blocks" +msgstr "物件區塊的顏色" + +#: taextras.py:224 +msgid "start polygon" +msgstr "開始畫多邊形" + +#: taextras.py:225 +msgid "Begin defining a new polygon based on the current Turtle xy position." +msgstr "由目前小海龜的位置,開始定義一個新的多邊形。" + +#: taextras.py:227 +msgid "add point" +msgstr "新增頂點" + +#: taextras.py:228 +msgid "" +"Add a new point to the current polygon based on the current Turtle xy " +"position." +msgstr "由目前小海龜的位置,在目前的多邊形上新增頂點。" + +#: taextras.py:230 +msgid "end polygon" +msgstr "結束多邊形" + +#: taextras.py:231 +msgid "Define a new polygon." +msgstr "定義一個新的多邊形。" + +#: taextras.py:232 +msgid "end filled polygon" +msgstr "結束填充多邊形" + +#: taextras.py:233 +msgid "Not a simple polygon" +msgstr "不是一個簡單的多邊形" + +#: taextras.py:234 +msgid "Define a new filled polygon." +msgstr "定義一個新的填充多邊形。" + +#: taextras.py:235 +msgid "triangle" +msgstr "三角形" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: base of a triangle +#: taextras.py:237 +msgid "base" +msgstr "基底" + +#: taextras.py:238 taextras.py:244 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 +msgid "height" +msgstr "高度" -#: TurtleArt/tabasics.py:754 -msgid "forever" -msgstr "持續執行" +#: taextras.py:239 +msgid "Add a triangle object to the project." +msgstr "專案中新增一個三角形物件。" -#: TurtleArt/tabasics.py:758 -msgid "loops forever" -msgstr "永遠迴圈" +#: taextras.py:240 +msgid "circle" +msgstr "圓形" -#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 -msgid "repeat" -msgstr "重複" +#: taextras.py:241 +msgid "Add a circle object to the project." +msgstr "專案中新增一個圓形物件。" -#: TurtleArt/tabasics.py:770 -msgid "loops specified number of times" -msgstr "指定次數的迴圈" +#: taextras.py:242 +msgid "rectangle" +msgstr "長方形" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "if" -msgstr "若" +#: taextras.py:243 plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 +msgid "width" +msgstr "寬度" -#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 -msgid "then" -msgstr "則" +#: taextras.py:245 +msgid "Add a rectangle object to the project." +msgstr "專案中新增一個長方形物件。" -#: TurtleArt/tabasics.py:779 -msgid "if then" -msgstr "若....則....." +#: taextras.py:246 +msgid "reset" +msgstr "重置" -#: TurtleArt/tabasics.py:781 -msgid "if-then operator that uses boolean operators from Numbers palette" -msgstr "從數字調色盤使用布林運算的 if - then 運算子" +#: taextras.py:247 +msgid "Reset the project; clear the object list." +msgstr "重置專案,清除物件清單。" -#: TurtleArt/tabasics.py:789 -msgid "else" -msgstr "否則" +#: taextras.py:248 +msgid "motor" +msgstr "發動機" -#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 -msgid "if then else" -msgstr "若....則.....否則" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: torque as in engine torque +#: taextras.py:250 +msgid "torque" +msgstr "扭力" -#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 -msgid "if-then-else operator that uses boolean operators from Numbers palette" -msgstr "從數字調色盤的布林運算子使用「若-則-否則」運算子" +#: taextras.py:251 +msgid "speed" +msgstr "速度" -#: TurtleArt/tabasics.py:811 -msgid "horizontal space" -msgstr "水平空間" +#: taextras.py:252 +msgid "" +"Motor torque and speed range from 0 (off) to positive numbers; motor is " +"placed on the most recent object created." +msgstr "" +"發動機的扭力與速度值,由 0 (關閉)到一個正數,發動機放在最後建立的物件上。" -#: TurtleArt/tabasics.py:812 -msgid "jogs stack right" -msgstr "右方的緩慢堆疊" +#: taextras.py:254 taextras.py:417 +msgid "pin" +msgstr "釘梢" -#: TurtleArt/tabasics.py:819 -msgid "vertical space" -msgstr "垂直空間" +#: taextras.py:255 +msgid "Pin an object down so that it cannot fall." +msgstr "固定一個物件使其不掉落。" -#: TurtleArt/tabasics.py:820 -msgid "jogs stack down" -msgstr "緩慢堆疊當機" +#: taextras.py:256 +msgid "joint" +msgstr "關節" -#: TurtleArt/tabasics.py:826 -msgid "stop action" -msgstr "停止動作" +#: taextras.py:257 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "x" +msgstr "X座標" -#: TurtleArt/tabasics.py:829 -msgid "stops current action" -msgstr "停止目前活動" +#: taextras.py:258 TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "y" +msgstr "Y座標" -#: TurtleArt/tabasics.py:838 -msgid "Palette of variable blocks" -msgstr "變數區塊調色盤" +#: taextras.py:259 +msgid "" +"Join two objects together (the most recent object created and the object at " +"point x, y)." +msgstr "用來連接兩個物件(上一個建立的物件與位於x, y位置的另一個物件)" -#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 -msgid "start" -msgstr "啟動" +#: taextras.py:261 +msgid "save as Physics activity" +msgstr "" -#: TurtleArt/tabasics.py:846 -msgid "connects action to toolbar run buttons" -msgstr "執行工具列上的按鈕以連結行動" +#: taextras.py:262 +msgid "Save the project to the Journal as a Physics activity." +msgstr "保存專案到日誌上成為物理活動" -#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 -#: TurtleArt/tabasics.py:855 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 -msgid "text" -msgstr "文字" +#. TRANS: Here, gear means a toothed wheel, as in a clock-works +#: taextras.py:264 +msgid "gear" +msgstr "" -#: TurtleArt/tabasics.py:856 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 -msgid "string value" -msgstr "字串值" +#: taextras.py:265 +#, fuzzy +msgid "Add a gear object to the project." +msgstr "專案中新增一個圓形物件。" -#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 -#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 -#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 -#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 -#: TurtleArt/tawindow.py:4125 -msgid "action" -msgstr "動作" +#: taextras.py:266 +msgid "density" +msgstr "密度" -#: TurtleArt/tabasics.py:865 -msgid "top of nameable action stack" -msgstr "可命名的動作堆疊上方" +#: taextras.py:267 +msgid "" +"Set the density property for objects (density can be any positive number)." +msgstr "訂定物件的密度值 (任意正數)。" -#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 -msgid "invokes named action stack" -msgstr "援用已命名的主動堆疊" +#: taextras.py:269 +msgid "friction" +msgstr "摩擦係數" -#: TurtleArt/tabasics.py:883 -msgid "store in box 1" -msgstr "放入方塊一" +#: taextras.py:270 +msgid "" +"Set the friction property for objects (value from 0 to 1, where 0 turns " +"friction off and 1 is strong friction)." +msgstr "訂定物件的摩擦係數 (介於0無摩擦到1最大)。" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: bounciness is coefficient of restitution +#: taextras.py:273 +msgid "bounciness" +msgstr "彈性係數" + +#: taextras.py:274 +msgid "" +"Set the bounciness property for objects (a value from 0 to 1, where 0 means " +"no bounce and 1 is very bouncy)." +msgstr "訂定物件的彈性係數 (介於0無彈性到1最大)。" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: dynamic here means moving vs in a fixed position +#: taextras.py:277 +msgid "dynamic" +msgstr "可動性" + +#: taextras.py:278 +msgid "" +"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." +msgstr "當可動性 = 1 時物件可以移動,可動性 = 0 時物件是固定的。" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: WeDo is a robotics product of the LEGO company +#: taextras.py:284 +#, fuzzy +msgid "Palette of WeDo blocks" +msgstr "偵測器區塊的顏色" -#: TurtleArt/tabasics.py:888 -msgid "stores numeric value in Variable 1" -msgstr "在變數 1 中儲存數值" +#: taextras.py:285 +msgid "WeDo" +msgstr "" -#: TurtleArt/tabasics.py:896 -msgid "store in box 2" -msgstr "放入方塊二" +#: taextras.py:286 +msgid "set current WeDo device" +msgstr "" -#: TurtleArt/tabasics.py:901 -msgid "stores numeric value in Variable 2" -msgstr "在變數 2 中儲存數值" +#: taextras.py:287 +msgid "number of WeDo devices" +msgstr "" -#: TurtleArt/tabasics.py:909 -msgid "box 1" -msgstr "方塊一" +#: taextras.py:289 +msgid "" +"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == " +"tilt left, 2 == tilt right)" +msgstr "" -#: TurtleArt/tabasics.py:912 -msgid "Variable 1 (numeric value)" -msgstr "變數 1 (數值)" +#. TRANS: This string is shorthand for "output of the distance sensor" +#: taextras.py:293 +msgid "distance sensor output" +msgstr "" -#: TurtleArt/tabasics.py:919 -msgid "box 2" -msgstr "方塊二" +#: taextras.py:294 +msgid "Motor A" +msgstr "" -#: TurtleArt/tabasics.py:922 -msgid "Variable 2 (numeric value)" -msgstr "變數2(數值)" +#: taextras.py:295 +msgid "returns the current value of Motor A" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "store in" -msgstr "放入" +#: taextras.py:296 +msgid "Motor B" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 -msgid "box" -msgstr "方塊" +#: taextras.py:297 +msgid "returns the current value of Motor B" +msgstr "" -#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 -msgid "value" -msgstr "值" +#: taextras.py:298 +msgid "set the value for Motor A" +msgstr "" -#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 -#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 -#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 -#: TurtleArt/tawindow.py:4180 -msgid "my box" -msgstr "我的箱子" +#: taextras.py:299 +msgid "set the value for Motor B" +msgstr "" -#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 -msgid "stores numeric value in named variable" -msgstr "在已命名的變數中儲存數值" +#: taextras.py:300 +msgid "WeDo is unavailable" +msgstr "" -#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 -msgid "named variable (numeric value)" -msgstr "命名前的變數(數值)" +#. TRANS: e.g., Wedo 2 is unavailable, defaulting to 1 +#: taextras.py:302 +#, python-format +msgid "WeDo %d is unavailable; defaulting to 1" +msgstr "" -#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 -msgid "action 1" -msgstr "動作1" +#. TRANS: %(device)s and %(wedo_number)d are substitution strings; +#. please leave untranslated +#: taextras.py:305 +#, python-format +msgid "%(device)s is unavailable on WeDo %(wedo_number)d" +msgstr "" -#: TurtleArt/tabasics.py:958 -msgid "top of Action 1 stack" -msgstr "行動1堆疊的上方" +#. TRANS: Lego NXT is a robotics product of the LEGO company +#: taextras.py:311 +msgid "Palette of LEGO NXT blocks of motors" +msgstr "" -#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 -msgid "action 2" -msgstr "動作2" +#: taextras.py:312 +msgid "Palette of LEGO NXT blocks of sensors" +msgstr "" -#: TurtleArt/tabasics.py:967 -msgid "top of Action 2 stack" -msgstr "動作2堆疊的上方" +#. TRANS: touch sensor (implemented as a button) +#: taextras.py:314 +msgid "touch" +msgstr "" -#: TurtleArt/tabasics.py:977 -msgid "invokes Action 1 stack" -msgstr "提取行動1的堆疊" +#. TRANS: distance sensor (implemented using ultrasonics) +#: taextras.py:316 +msgid "ultrasonic" +msgstr "" -#: TurtleArt/tabasics.py:987 -msgid "invokes Action 2 stack" -msgstr "掉用行動2的堆疊" +#: taextras.py:317 TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +#: TurtleArt/tabasics.py:348 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1158 +msgid "color" +msgstr "顏色" -#: TurtleArt/tabasics.py:995 -msgid "trash" -msgstr "垃圾" +#: taextras.py:318 +#, fuzzy +msgid "light" +msgstr "右轉" -#: TurtleArt/tabasics.py:999 -msgid "empty trash" -msgstr "清空垃圾桶" +#: taextras.py:319 plugins/audio_sensors/audio_sensors.py:83 +#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 +msgid "sound" +msgstr "音效" -#: TurtleArt/tabasics.py:1000 -msgid "permanently deletes items in trash" -msgstr "永久清空垃圾桶中的檔案" +#: taextras.py:320 +#, fuzzy +msgid "grey" +msgstr "灰色" -#: TurtleArt/tabasics.py:1004 -msgid "restore all" -msgstr "回復全部" +#. TRANS: The brick is the NXT controller +#: taextras.py:322 +msgid "Please check the connection with the brick" +msgstr "" -#: TurtleArt/tabasics.py:1005 -msgid "restore all blocks from trash" -msgstr "從垃圾桶救回所有區塊" +#: taextras.py:323 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT A, B or C" +msgstr "" -#: TurtleArt/tabasics.py:1009 -msgid "clear all" -msgstr "清除全部" +#: taextras.py:324 +#, python-format +msgid "Invalid port '%s'. Port must be: PORT 1, 2, 3 or 4" +msgstr "" -#: TurtleArt/tabasics.py:1010 -msgid "move all blocks to trash" -msgstr "把所有區塊移動到垃圾桶" +#: taextras.py:325 +msgid "The value of power must be between -127 to 127" +msgstr "" -#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 -#: TurtleArtActivity.py:703 -msgid "Share selected blocks" +#: taextras.py:326 +#, python-format +msgid "The parameter must be a integer, not '%s'" msgstr "" -#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 -#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 -#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 -msgid "Title" -msgstr "標題" +#: taextras.py:327 +msgid "An error has occurred: check all connections and try to reconnect" +msgstr "" -#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 -msgid "Stop turtle" -msgstr "停止執行" +#: taextras.py:328 +#, python-format +msgid "NXT found %s bricks" +msgstr "" -#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 -msgid "Show blocks" -msgstr "顯示區塊" +#: taextras.py:329 +msgid "NXT not found" +msgstr "" -#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 -msgid "Hide blocks" -msgstr "隱藏區塊" +#: taextras.py:330 +#, python-format +msgid "Brick number %s was not found" +msgstr "" -#: TurtleArt/talogo.py:511 -msgid "did not output to" -msgstr "不要輸出到" +#: taextras.py:331 +msgid "refresh NXT" +msgstr "" -#: TurtleArt/talogo.py:570 -msgid "I don't know how to" -msgstr "我不清楚要怎麼做" +#: taextras.py:332 +msgid "Search for a connected NXT brick." +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "doesn't like" -msgstr "不像" +#: taextras.py:333 +msgid "NXT" +msgstr "" -#: TurtleArt/talogo.py:624 -msgid "as input" -msgstr "作為輸入" +#: taextras.py:334 +msgid "set current NXT device" +msgstr "" -#: TurtleArt/tapalette.py:97 -msgid "displays next palette" -msgstr "顯示下一個調色盤" +#: taextras.py:335 +msgid "number of NXT devices" +msgstr "" -#: TurtleArt/tapalette.py:98 -msgid "changes the orientation of the palette of blocks" -msgstr "改變區塊調色盤的方向" +#: taextras.py:336 +msgid "brick name" +msgstr "" -#: TurtleArt/tautils.py:196 -msgid "Load..." -msgstr "載入" +#: taextras.py:337 +msgid "Get the name of a brick." +msgstr "" -#: TurtleArt/tautils.py:206 -msgid "Save..." -msgstr "儲存" +#: taextras.py:338 +msgid "play tone" +msgstr "" -#: TurtleArt/tautils.py:483 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 -msgid "click to open" -msgstr "點選開啟" +#: taextras.py:339 +msgid "frequency" +msgstr "" -#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 -msgid "orientation" -msgstr "方向" +#: taextras.py:340 plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 +msgid "time" +msgstr "時間" -#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 -msgid "next" -msgstr "下一步" +#: taextras.py:341 +msgid "Play a tone at frequency for time." +msgstr "" -#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 -#: TurtleArt/tawindow.py:1490 -msgid "shift" +#. TRANS: turn is the action +#: taextras.py:343 +msgid "" +"turn motor\n" +"\n" msgstr "" -#: TurtleArt/tawindow.py:1256 +#: taextras.py:344 +#, fuzzy +msgid "port" +msgstr "連接埠" + +#: taextras.py:345 +msgid "power" +msgstr "" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: rotations is quantity of turns +#: taextras.py:347 +#, fuzzy +msgid "rotations" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"旋轉" + +#: taextras.py:348 +msgid "turn a motor" +msgstr "" + +#: taextras.py:349 msgid "" -"Please hit the Stop Button before making changes to your Turtle Blocks " -"program" +"synchronize\n" +"\n" +"motors" msgstr "" -#: TurtleArt/tawindow.py:1310 -msgid "Select blocks to share" +#: taextras.py:350 +msgid "steering" msgstr "" -#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 -msgid "Turtle Art" -msgstr "小海龜" +#: taextras.py:351 +msgid "synchronize two motors connected in PORT B and PORT C" +msgstr "" -#: TurtleArt/tawindow.py:3977 -msgid "image" -msgstr "圖片" +#: taextras.py:352 +msgid "PORT A" +msgstr "" -#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 -#: TurtleArtActivity.py:853 turtleblocks.py:360 -msgid "Save as Logo" -msgstr "另存為 Logo 檔" +#: taextras.py:353 +msgid "PORT A of the brick" +msgstr "" -#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 -#: TurtleArtActivity.py:850 turtleblocks.py:358 -msgid "Save as image" -msgstr "另存為圖片" +#: taextras.py:354 +msgid "PORT B" +msgstr "" -#: TurtleArtActivity.py:211 -msgid "snapshot" -msgstr "螢幕截圖" +#: taextras.py:355 +msgid "PORT B of the brick" +msgstr "" -#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 -#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 -msgid "Save snapshot" -msgstr "保存螢幕抓圖" +#: taextras.py:356 +msgid "PORT C" +msgstr "" -#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 -#: turtleblocks.py:378 -msgid "Turn off hover help" +#: taextras.py:357 +msgid "PORT C of the brick" msgstr "" -#: TurtleArtActivity.py:266 turtleblocks.py:380 -msgid "Turn on hover help" +#: taextras.py:358 +msgid "start motor" msgstr "" -#: TurtleArtActivity.py:274 turtleblocks.py:390 -msgid "Show palette" -msgstr "顯示調色盤" +#: taextras.py:359 +msgid "Run a motor forever." +msgstr "" -#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 -msgid "Hide palette" -msgstr "隱藏調色盤" +#: taextras.py:360 +msgid "brake motor" +msgstr "" -#: TurtleArtActivity.py:447 -msgid "Rescale coordinates down" -msgstr "縮小座標軸比例" +#: taextras.py:361 +msgid "Stop a specified motor." +msgstr "" -#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 -msgid "Rescale coordinates up" -msgstr "重新調整座標(上升)" +#. TRANS: reset is used to reset the counter associated with the motor +#: taextras.py:363 +msgid "reset motor" +msgstr "" -#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 -#: TurtleArtActivity.py:730 turtleblocks.py:387 -msgid "Edit" -msgstr "編輯" +#: taextras.py:364 +msgid "Reset the motor counter." +msgstr "" -#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 -#: TurtleArtActivity.py:747 turtleblocks.py:382 -msgid "View" -msgstr "檢視" +#: taextras.py:365 +msgid "motor position" +msgstr "" -#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 -msgid "Project" -msgstr "專案" +#: taextras.py:366 +msgid "Get the motor position." +msgstr "" -#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 -#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 -msgid "Save/Load" -msgstr "儲存/讀取" +#: taextras.py:367 +msgid "PORT 1" +msgstr "" -#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 -msgid "Copy" -msgstr "複製" +#: taextras.py:368 +msgid "PORT 1 of the brick" +msgstr "" -#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 -msgid "Paste" -msgstr "貼上" +#: taextras.py:369 +#, fuzzy +msgid "read" +msgstr "紅色" -#: TurtleArtActivity.py:591 +#: taextras.py:370 #, fuzzy -msgid "Restore blocks from trash" -msgstr "從垃圾桶救回所有區塊" +msgid "sensor" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"偵測器" + +#: taextras.py:371 +msgid "Read sensor output." +msgstr "" -#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 -msgid "Fullscreen" -msgstr "全螢幕" +#: taextras.py:372 +msgid "PORT 2" +msgstr "" -#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 -msgid "Cartesian coordinates" -msgstr "直角座標系" +#: taextras.py:373 +msgid "PORT 2 of the brick" +msgstr "" -#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 -msgid "Polar coordinates" -msgstr "極座標" +#: taextras.py:374 +msgid "light sensor" +msgstr "" -#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 -msgid "Metric coordinates" -msgstr "矩陣座標" +#: taextras.py:375 +msgid "grey sensor" +msgstr "" -#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 -msgid "Grow blocks" -msgstr "顯示區塊" +#: taextras.py:376 +msgid "PORT 3" +msgstr "" -#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 -msgid "Shrink blocks" -msgstr "縮小區塊" +#: taextras.py:377 +msgid "PORT 3 of the brick" +msgstr "" -#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 -#: TurtleArtActivity.py:832 -msgid "Load example" -msgstr "載入範例" +#: taextras.py:378 +msgid "touch sensor" +msgstr "" -#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 -msgid "Clean" -msgstr "清除畫面" +#: taextras.py:379 +msgid "distance sensor" +msgstr "" -#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 -msgid "Run" -msgstr "執行" +#: taextras.py:380 +msgid "PORT 4" +msgstr "" -#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 -msgid "Step" -msgstr "單步執行" +#: taextras.py:381 +msgid "PORT 4 of the brick" +msgstr "" -#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 -msgid "Help" -msgstr "幫助" +#: taextras.py:382 +msgid "sound sensor" +msgstr "" -#: TurtleArtActivity.py:688 turtleblocks.py:403 -msgid "Stop" -msgstr "停止" +#: taextras.py:383 +msgid "color sensor" +msgstr "" -#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 -msgid "Load project" -msgstr "載入專案" +#. 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:386 +msgid "set light" +msgstr "" -#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 -msgid "Load plugin" +#: taextras.py:387 +msgid "Set color sensor light." msgstr "" -#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 -msgid "Load Python block" -msgstr "載入Python區塊" +#. TRANS: the battery level is the charge level of the brick +#: taextras.py:389 +msgid "battery level" +msgstr "" -#: TurtleArtActivity.py:766 -msgid "Palettes" +#: taextras.py:390 +msgid "Get battery level of the brick" msgstr "" -#: TurtleArtActivity.py:810 -msgid "Sharing blocks disabled" +#. TRANS: Arduino plugin to control an Arduino board +#: taextras.py:395 +msgid "HIGH" msgstr "" -#: TurtleArtActivity.py:883 -msgid "p" -msgstr "p" +#: taextras.py:396 +msgid "LOW" +msgstr "" -#: TurtleArtActivity.py:888 -msgid "e" -msgstr "e" +#: taextras.py:397 +msgid "INPUT" +msgstr "" -#: TurtleArtActivity.py:890 -msgid "r" -msgstr "r" +#: taextras.py:398 +msgid "OUTPUT" +msgstr "" -#: TurtleArtActivity.py:892 -msgid "w" -msgstr "w" +#. TRANS: PWM is pulse-width modulation +#: taextras.py:400 +msgid "PWM" +msgstr "" -#: TurtleArtActivity.py:895 -msgid "s" -msgstr "s" +#: taextras.py:401 +msgid "SERVO" +msgstr "" -#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 -#: TurtleArtActivity.py:1121 -msgid "Plugin could not be installed." +#: taextras.py:402 +msgid "ERROR: Check the Arduino and the number of port." msgstr "" -#: TurtleArtActivity.py:1117 -msgid "Please restart Turtle Art in order to use the plugin." +#: taextras.py:403 +msgid "ERROR: Value must be a number from 0 to 255." msgstr "" -#: TurtleArtActivity.py:1135 -#, python-format -msgid "Plugin %s already installed." +#: taextras.py:404 +msgid "ERROR: Value must be either HIGH or LOW." msgstr "" -#: TurtleArtActivity.py:1136 -#, python-format -msgid "Do you want to reinstall %s?" +#: taextras.py:405 +msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO." msgstr "" -#: gnome_plugins/collaboration_plugin.py:67 -msgid "My Turtle Art session" -msgstr "我的小烏龜階段" +#: taextras.py:406 +msgid "refresh Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:115 -msgid "Enable collaboration" -msgstr "允許合作" +#: taextras.py:407 +msgid "Search for connected Arduinos." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:120 -msgid "Activities" -msgstr "活動" +#: taextras.py:408 +msgid "Arduino" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:125 -msgid "Buddies" -msgstr "好朋友" +#: taextras.py:409 +msgid "set current Arduino board" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:128 -msgid "Share" -msgstr "分享" +#: taextras.py:410 +msgid "number of Arduinos" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:129 -msgid "Configuration" -msgstr "設定" +#: taextras.py:411 +msgid "number of Arduino boards" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:132 -msgid "Neighborhood" -msgstr "我的鄰居" +#: taextras.py:412 +msgid "Arduino name" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:292 -msgid "Nickname" -msgstr "暱稱" +#: taextras.py:413 +msgid "Get the name of an Arduino." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:294 -msgid "Account ID" -msgstr "帳號ID" +#. TRANS: pin mode is used to specify the mode (INPUT, OUTPUT, etc) +#. in which an I/O pin is being used. +#: taextras.py:416 +msgid "pin mode" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:296 -msgid "Server" -msgstr "伺服器" +#: taextras.py:418 +#, fuzzy +msgid "mode" +msgstr "模數" -#: gnome_plugins/collaboration_plugin.py:298 -msgid "Port" -msgstr "連接埠" +#: taextras.py:419 +msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)." +msgstr "" -#: gnome_plugins/collaboration_plugin.py:300 -msgid "Password" -msgstr "密碼" +#: taextras.py:420 +msgid "analog write" +msgstr "" -#: gnome_plugins/collaboration_plugin.py:302 -msgid "Register" -msgstr "註冊" +#: taextras.py:421 TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "value" +msgstr "值" -#: gnome_plugins/collaboration_plugin.py:304 -msgid "Colors" -msgstr "顏色" +#: taextras.py:422 +msgid "Write analog value in specified port." +msgstr "" -#: 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 "上傳" +#: taextras.py:423 +msgid "analog read" +msgstr "" -#: gnome_plugins/fb_plugin.py:87 -msgid "Facebook wall post" +#: taextras.py:424 +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 "" -#: gnome_plugins/uploader_plugin.py:68 -msgid "Upload to Web" -msgstr "上傳到網站" +#: taextras.py:426 +msgid "digital write" +msgstr "" -#: gnome_plugins/uploader_plugin.py:90 +#: taextras.py:427 +msgid "Write digital value to specified port." +msgstr "" + +#: taextras.py:428 +msgid "digital read" +msgstr "" + +#: taextras.py:429 +msgid "Read value from digital port." +msgstr "" + +#: taextras.py:430 +msgid "Set HIGH value for digital port." +msgstr "" + +#: taextras.py:431 +msgid "Configure Arduino port for digital input." +msgstr "" + +#: taextras.py:432 +msgid "Configure Arduino port to drive a servo." +msgstr "" + +#: taextras.py:433 +msgid "Set LOW value for digital port." +msgstr "" + +#: taextras.py:434 +msgid "Configure Arduino port for digital output." +msgstr "" + +#: taextras.py:435 +msgid "Configure Arduino port for PWM (pulse-width modulation)." +msgstr "" + +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: plugin to control an ExpEyes device +#: taextras.py:440 +#, fuzzy +msgid "Palette of Expeyes blocks" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"物件區塊的顏色\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"物件區塊的顏色\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"偵測器區塊的顏色" + +#. TRANS: Programmable voltage output +#: taextras.py:442 +msgid "set PVS" +msgstr "" + +#: taextras.py:443 +msgid "set programmable voltage output" +msgstr "" + +#. TRANS: Square wave 1 voltage output +#: taextras.py:445 +msgid "set SQR1 voltage" +msgstr "" + +#: taextras.py:446 +msgid "set square wave 1 voltage output" +msgstr "" + +#. TRANS: Square wave 2 voltage output +#: taextras.py:448 +msgid "set SQR2 voltage" +msgstr "" + +#: taextras.py:449 +msgid "set square wave 2 voltage output" +msgstr "" + +#. TRANS: Digital output level +#: taextras.py:451 +msgid "set OD1" +msgstr "" + +#: taextras.py:452 +msgid "set digital output level (OD1) low (0) or high (1)" +msgstr "" + +#. TRANS: Input 1 voltage level +#: taextras.py:454 +msgid "IN1 level" +msgstr "" + +#: taextras.py:455 msgid "" -"You must have an account at http://turtleartsite.sugarlabs.org to upload " -"your project." -msgstr "你必須在 http://turtleartsite.sugarlabs.org 註冊一個帳號來上傳你的專案。" +"returns 1 if IN1 voltage level >2.5 volts, 0 if IN1 voltage level <= 2.5 " +"volts" +msgstr "" -#: gnome_plugins/uploader_plugin.py:99 -msgid "Username:" -msgstr "使用者名稱:" +#. TRANS: Input 2 voltage level +#: taextras.py:458 +msgid "IN2 level" +msgstr "" -#: gnome_plugins/uploader_plugin.py:109 -msgid "Password:" -msgstr "密碼:" +#: taextras.py:459 +msgid "" +"returns 1 if IN2 voltage level >2.5 volts, 0 if IN2 voltage level <= 2.5 " +"volts" +msgstr "" -#: gnome_plugins/uploader_plugin.py:120 -msgid "Title:" -msgstr "標題:" +#. TRANS: Resistive sensor voltage level +#: taextras.py:462 +msgid "SEN level" +msgstr "" -#: gnome_plugins/uploader_plugin.py:130 -msgid "Description:" -msgstr "描述:" +#: taextras.py:463 +msgid "" +"returns 1 if resistive sensor (SEN) voltage level > 2.5 volts, 0 if SEN " +"voltage level <= 2.5 volts" +msgstr "" -#: gnome_plugins/uploader_plugin.py:140 -msgid "Submit to Web" -msgstr "送出到網站" +#: taextras.py:465 +msgid "capture" +msgstr "" -#: gnome_plugins/uploader_plugin.py:144 -msgid "Cancel" -msgstr "取消" +#: taextras.py:466 +msgid "input" +msgstr "" -#: gnome_plugins/uploader_plugin.py:166 -msgid "Login failed" -msgstr "登入失敗" +#: taextras.py:467 +#, fuzzy +msgid "samples" +msgstr "" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"#-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-#\n" +"範例" + +#: taextras.py:468 +msgid "interval" +msgstr "" -#: gnome_plugins/uploader_plugin.py:203 -msgid "Failed to upload!" -msgstr "上傳失敗" +#. TRANS: MS is microseconds +#: taextras.py:470 +msgid "" +"capture multiple samples from input at interval (MS); results pushed to FIFO" +msgstr "" -#: 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:330 -msgid "Palette of sensor blocks" -msgstr "偵測器區塊的顏色" +#. TRANS: Analog input 1 voltage level +#: taextras.py:473 +msgid "A1" +msgstr "" -#: plugins/accelerometer/accelerometer.py:56 -#: plugins/accelerometer/accelerometer.py:63 -msgid "acceleration" -msgstr "加速度" +#: taextras.py:474 +msgid "read analog input 1 voltage" +msgstr "" -#: plugins/accelerometer/accelerometer.py:58 -#: plugins/accelerometer/accelerometer.py:65 -msgid "push acceleration in x, y, z to heap" -msgstr "將 x, y, z 加速度放入堆疊" +#. TRANS: Analog input 2 voltage level +#: taextras.py:476 +msgid "A2" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:83 -#: plugins/audio_sensors/audio_sensors.py:98 pysamples/grecord.py:205 -msgid "sound" -msgstr "音效" +#: taextras.py:477 +msgid "read analog input 2 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:84 -#: plugins/audio_sensors/audio_sensors.py:99 -msgid "raw microphone input signal" -msgstr "RAW格式麥克風輸入訊號" +#. TRANS: Read input 1 voltage +#: taextras.py:479 +msgid "IN1" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:90 -#: plugins/audio_sensors/audio_sensors.py:105 -msgid "loudness" -msgstr "音量" +#: taextras.py:480 +msgid "read input 1 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:91 -#: plugins/audio_sensors/audio_sensors.py:106 -msgid "microphone input volume" -msgstr "麥克風輸入音量" +#. TRANS: Read input 2 voltage +#: taextras.py:482 +msgid "IN2" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:119 -#: plugins/audio_sensors/audio_sensors.py:127 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "pitch" -msgstr "音高" +#: taextras.py:483 +msgid "read input 2 voltage" +msgstr "" -#: plugins/audio_sensors/audio_sensors.py:120 -#: plugins/audio_sensors/audio_sensors.py:128 -msgid "microphone input pitch" -msgstr "麥克風輸入音高" +#. TRANS: Read analog sensor input voltage +#: taextras.py:485 +msgid "SEN" +msgstr "" -#: 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 "電阻" +#: taextras.py:486 +msgid "read analog sensor input voltage" +msgstr "" -#: 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 "麥克風輸入抗阻" +#. TRANS: Read square wave 1 input voltage +#: taextras.py:488 +msgid "SQR1" +msgstr "" -#: 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 "電壓" +#: taextras.py:489 +msgid "read square wave 1 voltage" +msgstr "" -#: 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 "麥克風輸入電壓" +#. TRANS: Read square wave 2 input voltage +#: taextras.py:491 +msgid "SQR2" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:67 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 -msgid "Palette of media objects" -msgstr "媒體物件調色盤" +#: taextras.py:492 +msgid "read square wave 2 voltage" +msgstr "" -#: 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 "亮度" +#. TRANS: Read programmable voltage +#: taextras.py:494 +msgid "PVS" +msgstr "" -#: plugins/camera_sensor/camera_sensor.py:82 -#: plugins/camera_sensor/camera_sensor.py:130 -msgid "light level detected by camera" -msgstr "由攝影機偵測亮度" +#: taextras.py:495 +msgid "read programmable voltage" +msgstr "" + +#: taextras.py:496 +msgid "Expeyes device not found" +msgstr "" + +#: TurtleArt/taconstants.py:209 TurtleArt/taconstants.py:231 +#: TurtleArt/taconstants.py:252 TurtleArt/taconstants.py:294 +#: TurtleArt/taconstants.py:336 TurtleArt/taconstants.py:378 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:963 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:978 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:993 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1008 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1023 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1038 +msgid "Title" +msgstr "標題" #: 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 "攝影機的RGB平均色彩已經進入堆疊中" +#: TurtleArt/tabasics.py:446 +msgid "yellow" +msgstr "黃色" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 +msgid "displays polar coordinates" +msgstr "顯示極座標" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 +msgid "emptys FILO (first-in-last-out heap)" +msgstr "清除FILO(first-in-last-out heap)" + #: plugins/camera_sensor/camera_sensor.py:106 #: plugins/camera_sensor/camera_sensor.py:113 #: plugins/camera_sensor/camera_sensor.py:121 @@ -1201,83 +1825,97 @@ msgstr "攝影機的RGB平均色彩已經進入堆疊中" msgid "camera output" msgstr "攝影機輸出" -#: plugins/light_sensor/light_sensor.py:58 -#: plugins/light_sensor/light_sensor.py:65 -msgid "light level detected by light sensor" -msgstr "由光線感應器偵測亮度" - -#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 -msgid "RFID" -msgstr "RFID" - -#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 -msgid "read value from RFID device" -msgstr "從RFID設備讀取數值" +#: plugins/accelerometer/accelerometer.py:58 +#: plugins/accelerometer/accelerometer.py:65 +msgid "push acceleration in x, y, z to heap" +msgstr "將 x, y, z 加速度放入堆疊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 -msgid "while" -msgstr "同時間" +#: TurtleArt/tabasics.py:781 +msgid "if-then operator that uses boolean operators from Numbers palette" +msgstr "從數字調色盤使用布林運算的 if - then 運算子" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 -msgid "do-while-True operator that uses boolean operators from Numbers palette" -msgstr "從數值調色盤來的布林運算子使用do-while真值運算子" +#: TurtleArt/tabasics.py:812 +msgid "jogs stack right" +msgstr "右方的緩慢堆疊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 -msgid "until" -msgstr "直到" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 +msgid "Sugar Journal media object" +msgstr "Sugar日誌媒體物件" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 -msgid "do-until-True operator that uses boolean operators from Numbers palette" -msgstr "執行直到真值運算子使用數字調色盤上的布林運算子" +#: TurtleArt/tabasics.py:919 +msgid "box 2" +msgstr "方塊二" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 -msgid "top" -msgstr "頂端" +#: TurtleArt/tabasics.py:909 +msgid "box 1" +msgstr "方塊一" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 -msgid "top of a collapsible stack" -msgstr "毀損堆疊的頂端" +#: TurtleArtActivity.py:682 TurtleArtActivity.py:892 turtleblocks.py:401 +msgid "Step" +msgstr "單步執行" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 -msgid "journal" -msgstr "日誌" +#: TurtleArt/tabasics.py:592 +msgid "multiplies two numeric inputs" +msgstr "兩個數相乘" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:141 -msgid "Sugar Journal media object" -msgstr "Sugar日誌媒體物件" +#: turtleblocks.py:394 +msgid "Show/hide blocks" +msgstr "顯示/隱藏區塊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 -msgid "audio" -msgstr "音效" +#: TurtleArtActivity.py:280 TurtleArtActivity.py:882 turtleblocks.py:392 +msgid "Hide palette" +msgstr "隱藏調色盤" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 -msgid "Sugar Journal audio object" -msgstr "Sugar日誌聲音物件" +#: gnome_plugins/collaboration_plugin.py:125 +msgid "Buddies" +msgstr "好朋友" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 -msgid "video" -msgstr "影像" +#: gnome_plugins/collaboration_plugin.py:67 +msgid "My Turtle Art session" +msgstr "我的小烏龜階段" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:165 msgid "Sugar Journal video object" msgstr "Sugar日誌影像物件" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 -msgid "description" -msgstr "描述" +#: TurtleArt/tabasics.py:449 +msgid "cyan" +msgstr "青綠色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 -msgid "Sugar Journal description field" -msgstr "Sugar日誌描述區" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 +msgid "xcor of right of screen" +msgstr "螢幕右方的x座標" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 -msgid "show" -msgstr "顯示" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 +msgid "Palette of extra options" +msgstr "調色盤額外選項" + +#: TurtleArtActivity.py:630 TurtleArtActivity.py:647 TurtleArtActivity.py:686 +#: TurtleArtActivity.py:832 +msgid "Load example" +msgstr "載入範例" + +#: TurtleArt/tabasics.py:1010 +msgid "move all blocks to trash" +msgstr "把所有區塊移動到垃圾桶" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 +msgid "list" +msgstr "列表" + +#: turtleblocks.py:279 +#, python-format +msgid "Configuration directory not writable: %s" +msgstr "無法直接寫入設定到:%s" + +#: TurtleArt/tabasics.py:247 TurtleArt/tawindow.py:3863 +#: TurtleArt/tawindow.py:3869 TurtleArtActivity.py:605 +msgid "heading" +msgstr "方向" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 +msgid "saves turtle graphics as an SVG file in the Sugar Journal" +msgstr "在日誌中儲存小海龜圖片為svg格式" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:211 @@ -1285,333 +1923,552 @@ msgstr "顯示" msgid "draws text or show media from the Journal" msgstr "從日誌中繪製文字或顯示媒體" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 -msgid "show aligned" -msgstr "對齊" +#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100 +msgid "RFID" +msgstr "RFID" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 -msgid "set scale" -msgstr "設定比例" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163 +msgid "video" +msgstr "影像" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 -msgid "sets the scale of media" -msgstr "設定媒體的幅度" +#: TurtleArt/tabasics.py:450 +msgid "blue" +msgstr "藍色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 -msgid "save picture" -msgstr "儲存圖片" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 +msgid "displays Cartesian coordinates" +msgstr "顯示笛卡爾座標系" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 -msgid "picture name" -msgstr "圖片名稱" +#: turtleblocks.py:240 +msgid "No option action:" +msgstr "沒有選項的行動" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 -msgid "saves a picture to the Sugar Journal" -msgstr "儲存圖片到Sugar日誌中" +#: TurtleArt/tabasics.py:820 +msgid "jogs stack down" +msgstr "緩慢堆疊當機" + +#: TurtleArt/tabasics.py:628 +msgid "modular (remainder) operator" +msgstr "模組(剩餘)運算子" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 +msgid "bottom y" +msgstr "y軸底端" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256 msgid "save SVG" msgstr "存成svg圖檔" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259 -msgid "saves turtle graphics as an SVG file in the Sugar Journal" -msgstr "在日誌中儲存小海龜圖片為svg格式" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 +msgid "runs code found in the tamyblock.py module found in the Journal" +msgstr "從日誌中的tamyblock.py模組執行code" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 -msgid "scale" -msgstr "比例" +#: TurtleArt/tabasics.py:385 +msgid "pen down" +msgstr "落筆" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 -msgid "holds current scale value" -msgstr "保持目前的縮放值" +#: TurtleArt/tabasics.py:743 +msgid "wait" +msgstr "等待" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 -msgid "media wait" -msgstr "等待媒體" +#: TurtleArt/tabasics.py:928 TurtleArt/tabasics.py:942 +msgid "box" +msgstr "方塊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 -msgid "wait for current video or audio to complete" -msgstr "等待完成目前影像或聲音" +#: gnome_plugins/uploader_plugin.py:203 +msgid "Failed to upload!" +msgstr "上傳失敗" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 -msgid "media stop" -msgstr "" +#: TurtleArt/tabasics.py:876 TurtleArt/tawindow.py:4139 +msgid "invokes named action stack" +msgstr "援用已命名的主動堆疊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 -msgid "stop video or audio" -msgstr "" +#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:863 +#: TurtleArt/tabasics.py:871 TurtleArt/tabasics.py:875 +#: TurtleArt/tawindow.py:1292 TurtleArt/tawindow.py:1371 +#: TurtleArt/tawindow.py:1384 TurtleArt/tawindow.py:1854 +#: TurtleArt/tawindow.py:4125 +msgid "action" +msgstr "動作" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 -msgid "media pause" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:117 +msgid "do-until-True operator that uses boolean operators from Numbers palette" +msgstr "執行直到真值運算子使用數字調色盤上的布林運算子" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 -msgid "pause video or audio" -msgstr "" +#: turtleblocks.py:86 +msgid "usage is" +msgstr "使用量為" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 -msgid "media resume" -msgstr "" +#: TurtleArt/tabasics.py:922 +msgid "Variable 2 (numeric value)" +msgstr "變數2(數值)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 -msgid "resume playing video or audio" -msgstr "" +#: TurtleArt/tabasics.py:601 +msgid "divide" +msgstr "除" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 -msgid "speak" -msgstr "聽我說" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:247 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:258 +msgid "picture name" +msgstr "圖片名稱" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 -msgid "hello" -msgstr "您好" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:106 +msgid "while" +msgstr "同時間" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 -msgid "speaks text" -msgstr "說出文字" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 +msgid "the canvas width" +msgstr "畫面寬度" -#. TRANS: pitch, duration, amplitude -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 -msgid "sinewave" -msgstr "正弦波" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 +#, fuzzy +msgid "empty heap?" +msgstr "清除堆疊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "amplitude" -msgstr "" +#: TurtleArt/tabasics.py:948 TurtleArt/tawindow.py:4166 +msgid "named variable (numeric value)" +msgstr "命名前的變數(數值)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 -msgid "duration" -msgstr "時間長度" +#: TurtleArt/tawindow.py:1000 TurtleArt/tawindow.py:1470 +msgid "next" +msgstr "下一步" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 -msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" -msgstr "指定播放正弦波頻率、音量以及時間長度(秒)" +#: TurtleArt/tabasics.py:779 +msgid "if then" +msgstr "若....則....." -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 -msgid "button down" -msgstr "按下按鍵" +#: TurtleArt/tabasics.py:394 +msgid "set pen size" +msgstr "設定畫筆大小" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 -msgid "returns 1 if mouse button is pressed" -msgstr "當滑鼠按鍵按下時傳回 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 +msgid "presentation template: select Journal object (no description)" +msgstr "簡報模版:選擇日誌中的物件(無說明)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 -#, fuzzy -msgid "returns True if mouse button is pressed" -msgstr "當滑鼠按鍵按下時傳回 1" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:116 +msgid "until" +msgstr "直到" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 -msgid "mouse x" -msgstr "滑鼠座標 x" +#: TurtleArt/tabasics.py:1000 +msgid "permanently deletes items in trash" +msgstr "永久清空垃圾桶中的檔案" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 -msgid "returns mouse x coordinate" -msgstr "傳回滑鼠位置的 x 座標" +#: pysamples/uturn.py:24 +msgid "uturn" +msgstr "迴轉" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 -msgid "mouse y" -msgstr "滑鼠座標 y" +#: TurtleArt/tabasics.py:958 +msgid "top of Action 1 stack" +msgstr "行動1堆疊的上方" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 +msgid "" +"a programmable block: used to add advanced single-variable math equations, e." +"g., sin(x)" +msgstr "可執行區塊:用以增加進階的單一變項數學式(如:sin(x))" + +#: TurtleArt/tabasics.py:738 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98 +msgid "Palette of flow operators" +msgstr "調色板上的流程運算子" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 +msgid "top of a collapsed stack" +msgstr "崩潰堆疊的上方" + +#: TurtleArt/tabasics.py:794 TurtleArt/tabasics.py:802 +msgid "if-then-else operator that uses boolean operators from Numbers palette" +msgstr "從數字調色盤的布林運算子使用「若-則-否則」運算子" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 msgid "returns mouse y coordinate" msgstr "傳回滑鼠位置的 y 座標" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 -msgid "query keyboard" -msgstr "詢問鍵盤" +#: TurtleArt/tabasics.py:359 +msgid "holds current pen shade" +msgstr "沿用目前色筆深度" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 -msgid "query for keyboard input (results stored in keyboard block)" -msgstr "鍵盤輸入查詢(結果儲存在鍵盤區塊)" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pitch, duration, amplitude +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "sinewave" +msgstr "正弦波" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 -msgid "keyboard" -msgstr "鍵盤" +#: gnome_plugins/uploader_plugin.py:166 +msgid "Login failed" +msgstr "登入失敗" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 -#, fuzzy -msgid "holds results of query-keyboard block as ASCII" -msgstr "保持詢問鍵盤區塊的結果" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 +msgid "left x" +msgstr "x軸左側" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 -msgid "read pixel" -msgstr "讀取像素" +# +#: TurtleArt/tabasics.py:213 +msgid "set heading" +msgstr "設定標頭" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427 msgid "RGB color under the turtle is pushed to the stack" msgstr "小海龜下的RGB色系已經推入堆疊中" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 +msgid "declutters canvas by hiding blocks" +msgstr "用隱藏區塊來屠次表现油畫" + +#: TurtleArtActivity.py:892 +msgid "w" +msgstr "w" + +#: TurtleArtActivity.py:890 +msgid "r" +msgstr "r" + +#: TurtleArtActivity.py:895 +msgid "s" +msgstr "s" + +#: TurtleArtActivity.py:883 +msgid "p" +msgstr "p" + +#: TurtleArtActivity.py:888 +msgid "e" +msgstr "e" + +#: TurtleArt/tabasics.py:811 +msgid "horizontal space" +msgstr "水平空間" + +#: TurtleArtActivity.py:601 TurtleArtActivity.py:753 +msgid "Metric coordinates" +msgstr "矩陣座標" + +#: TurtleArt/tabasics.py:856 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:189 +msgid "string value" +msgstr "字串值" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175 +msgid "description" +msgstr "描述" + +#: TurtleArt/talogo.py:570 +msgid "I don't know how to" +msgstr "我不清楚要怎麼做" + +#: TurtleArt/tabasics.py:471 +msgid "set text size" +msgstr "設定文字大小" + +#: gnome_plugins/uploader_plugin.py:99 +msgid "Username:" +msgstr "使用者名稱:" + +#: TurtleArt/tabasics.py:410 +msgid "starts filled polygon (used with end fill block)" +msgstr "開始填滿多邊形(用最後填滿的區塊)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 +msgid "presentation template: select four Journal objects" +msgstr "外觀模版:選擇四個日誌中的物件" + +#: TurtleArtActivity.py:546 TurtleArtActivity.py:575 TurtleArtActivity.py:678 +#: TurtleArtActivity.py:747 turtleblocks.py:382 +msgid "View" +msgstr "檢視" + +#: TurtleArt/tabasics.py:340 +msgid "sets gray level of the line drawn by the turtle" +msgstr "設定小烏龜所畫線條的灰階值" + +#: gnome_plugins/uploader_plugin.py:109 +msgid "Password:" +msgstr "密碼:" + #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:435 msgid "turtle sees" msgstr "小烏龜的視野" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 -msgid "returns the color that the turtle \"sees\"" -msgstr "回傳小烏龜看到的顏色" +#: TurtleArt/tabasics.py:826 +msgid "stop action" +msgstr "停止動作" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:445 -msgid "time" -msgstr "時間" +#: TurtleArt/tabasics.py:448 +msgid "green" +msgstr "綠色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 -msgid "elapsed time (in seconds) since program started" -msgstr "程式啟動後所經過的時間(秒)" +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:299 +#: TurtleArt/tabasics.py:358 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1154 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1159 +msgid "shade" +msgstr "形狀" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457 -msgid "Palette of extra options" -msgstr "調色盤額外選項" +#: TurtleArt/tabasics.py:291 TurtleArt/tabasics.py:303 +msgid "fills the background with (color, shade)" +msgstr "以(顏色或陰影)填滿背景" -#. TRANS: push adds a new item to the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 -msgid "push" -msgstr "存入堆疊" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245 +msgid "save picture" +msgstr "儲存圖片" + +#: plugins/audio_sensors/audio_sensors.py:119 +#: plugins/audio_sensors/audio_sensors.py:127 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:316 +msgid "pitch" +msgstr "音高" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:340 +msgid "returns 1 if mouse button is pressed" +msgstr "當滑鼠按鍵按下時傳回 1" + +#: TurtleArtActivity.py:451 TurtleArtActivity.py:608 TurtleArtActivity.py:755 +msgid "Rescale coordinates up" +msgstr "重新調整座標(上升)" + +#: TurtleArt/tabasics.py:376 +msgid "pen up" +msgstr "提筆" + +#: TurtleArt/tabasics.py:444 +msgid "orange" +msgstr "橘色" + +#: TurtleArt/tabasics.py:747 +msgid "pauses program execution a specified number of seconds" +msgstr "暫停程式執行指定的秒數" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:467 msgid "pushes value onto FILO (first-in last-out heap)" msgstr "把數值推向FILO(first-in-hand heap)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 -msgid "show heap" -msgstr "顯示堆疊" +#: TurtleArt/tabasics.py:1009 +msgid "clear all" +msgstr "清除全部" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 -msgid "shows values in FILO (first-in last-out heap)" -msgstr "在FILO中顯示數值" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "then" +msgstr "則" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 -msgid "empty heap" -msgstr "清除堆疊" +#: gnome_plugins/collaboration_plugin.py:302 +msgid "Register" +msgstr "註冊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:493 -msgid "emptys FILO (first-in-last-out heap)" -msgstr "清除FILO(first-in-last-out heap)" +#: TurtleArt/tabasics.py:705 +msgid "not" +msgstr "否" -#. TRANS: pop removes a new item from the program stack -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 -msgid "pop" -msgstr "取出堆疊" +#: TurtleArt/tabasics.py:793 TurtleArt/tabasics.py:801 +msgid "if then else" +msgstr "若....則.....否則" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 -msgid "pops value off FILO (first-in last-out heap)" -msgstr "跳出FILO關閉值" +#: TurtleArt/tabasics.py:829 +msgid "stops current action" +msgstr "停止目前活動" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:529 -#, fuzzy -msgid "empty heap?" -msgstr "清除堆疊" +#: TurtleArt/tabasics.py:178 +msgid "turns turtle clockwise (angle in degrees)" +msgstr "讓小烏龜順時針轉彎(輸入角度)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 -msgid "returns True if heap is empty" -msgstr "" +#: TurtleArt/tabasics.py:368 +msgid "holds current gray level (can be used in place of a number block)" +msgstr "維持目前的灰階度(可以用來代替數字區塊)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 -msgid "comment" -msgstr "註記" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 +msgid "xcor of left of screen" +msgstr "視窗左邊的x座標" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 -msgid "places a comment in your code" -msgstr "在程式碼中做註記" +#: turtleblocks.py:376 +msgid "Reset block size" +msgstr "重設區塊大小" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 +msgid "turtle" +msgstr "小烏龜" + +#: TurtleArt/tapalette.py:97 +msgid "displays next palette" +msgstr "顯示下一個調色盤" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 +msgid "hide blocks" +msgstr "隱藏區塊" + +#: plugins/camera_sensor/camera_sensor.py:82 +#: plugins/camera_sensor/camera_sensor.py:130 +msgid "light level detected by camera" +msgstr "由攝影機偵測亮度" + +#: TurtleArt/tabasics.py:687 +msgid "logical less-than operator" +msgstr "「小於」的邏輯運算子" + +#: TurtleArt/tabasics.py:1005 +msgid "restore all blocks from trash" +msgstr "從垃圾桶救回所有區塊" + +#: turtleblocks.py:356 +msgid "Save" +msgstr "儲存" + +#: TurtleArt/tabasics.py:883 +msgid "store in box 1" +msgstr "放入方塊一" + +#: TurtleArt/tabasics.py:896 +msgid "store in box 2" +msgstr "放入方塊二" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 +msgid "hides the Sugar toolbars" +msgstr "隱藏sugar工具列" + +#: TurtleArt/tabasics.py:226 +msgid "" +"holds current x-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "保持小烏龜現在的x座標值(可以用來代替數字區塊)" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549 msgid "print" msgstr "顯示" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 -msgid "prints value in status block at bottom of the screen" -msgstr "列印螢幕下方堆疊區塊的值" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361 +msgid "returns mouse x coordinate" +msgstr "傳回滑鼠位置的 x 座標" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 -msgid "Python chr operator" -msgstr "" +#: TurtleArtActivity.py:166 TurtleArtActivity.py:709 TurtleArtActivity.py:823 +#: TurtleArtActivity.py:853 turtleblocks.py:360 +msgid "Save as Logo" +msgstr "另存為 Logo 檔" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 -msgid "Python int operator" -msgstr "" +#: TurtleArt/tabasics.py:317 +msgid "sets color of the line drawn by the turtle" +msgstr "設定小烏龜畫線的顏色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 -msgid "Python" -msgstr "Python" +#: TurtleArt/tabasics.py:460 +msgid "set text color" +msgstr "設定文字顏色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583 -msgid "" -"a programmable block: used to add advanced single-variable math equations, e." -"g., sin(x)" -msgstr "可執行區塊:用以增加進階的單一變項數學式(如:sin(x))" +#: plugins/audio_sensors/audio_sensors.py:90 +#: plugins/audio_sensors/audio_sensors.py:105 +msgid "loudness" +msgstr "音量" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sqrt(x*x+y*y)" -msgstr "可執行區塊:用以添加進階多變數數學方程式(如:sqrt(X^X+Y^Y)" +#: gnome_plugins/collaboration_plugin.py:115 +msgid "Enable collaboration" +msgstr "允許合作" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 -msgid "" -"a programmable block: used to add advanced multi-variable math equations, e." -"g., sin(x+y+z)" -msgstr "可執行區塊:用以添加進階多變數數學式(如:sin(x+y+z))" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:351 +#, fuzzy +msgid "returns True if mouse button is pressed" +msgstr "當滑鼠按鍵按下時傳回 1" -#: 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:653 -msgid "Python block" -msgstr "Python區塊" +#: TurtleArt/tabasics.py:662 +msgid "number" +msgstr "數字" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:640 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:656 -msgid "runs code found in the tamyblock.py module found in the Journal" -msgstr "從日誌中的tamyblock.py模組執行code" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:379 +msgid "query keyboard" +msgstr "詢問鍵盤" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 -msgid "Cartesian" -msgstr "笛卡爾" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:886 +msgid "top" +msgstr "頂端" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:671 -msgid "displays Cartesian coordinates" -msgstr "顯示笛卡爾座標系" +#: gnome_plugins/uploader_plugin.py:140 +msgid "Submit to Web" +msgstr "送出到網站" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 -msgid "polar" -msgstr "極" +#: TurtleArtActivity.py:596 TurtleArtActivity.py:749 turtleblocks.py:366 +msgid "Cartesian coordinates" +msgstr "直角座標系" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:679 -msgid "displays polar coordinates" -msgstr "顯示極座標" +#: gnome_plugins/collaboration_plugin.py:292 +msgid "Nickname" +msgstr "暱稱" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:685 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:756 -msgid "turtle" -msgstr "小烏龜" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234 +msgid "set scale" +msgstr "設定比例" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 -msgid "chooses which turtle to command" -msgstr "選擇要控制的小烏龜" +#: TurtleArt/tabasics.py:453 +msgid "white" +msgstr "白色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 -msgid "turtle shell" -msgstr "龜殼" +#: TurtleArt/tabasics.py:846 +msgid "connects action to toolbar run buttons" +msgstr "執行工具列上的按鈕以連結行動" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 -msgid "put a custom 'shell' on the turtle" -msgstr "替小烏龜穿上自製的龜殼" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:448 +msgid "elapsed time (in seconds) since program started" +msgstr "程式啟動後所經過的時間(秒)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:716 -msgid "top of a collapsed stack" -msgstr "崩潰堆疊的上方" +#: gnome_plugins/uploader_plugin.py:144 +msgid "Cancel" +msgstr "取消" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 -msgid "load" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 +msgid "the canvas height" +msgstr "畫布高度" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 +msgid "presentation 2x1" +msgstr "以2x1方式展示" + +#: TurtleArt/tabasics.py:575 +msgid "minus" +msgstr "減" + +#: TurtleArt/tabasics.py:714 TurtleArt/tabasics.py:717 +msgid "and" +msgstr "且" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126 +msgid "top of a collapsible stack" +msgstr "毀損堆疊的頂端" + +#: TurtleArt/talogo.py:624 +msgid "as input" +msgstr "作為輸入" + +#: 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:653 +msgid "Python block" +msgstr "Python區塊" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:275 +msgid "media wait" +msgstr "等待媒體" + +#: plugins/accelerometer/accelerometer.py:56 +#: plugins/accelerometer/accelerometer.py:63 +msgid "acceleration" +msgstr "加速度" + +#: TurtleArt/tabasics.py:427 +msgid "holds current pen size (can be used in place of a number block)" +msgstr "保持目前色筆大小(可以用來代替數字區塊)" + +#: TurtleArt/tabasics.py:313 +msgid "set color" +msgstr "設定線條顏色" + +#: TurtleArt/tabasics.py:646 +msgid "min" +msgstr "最小" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:735 @@ -1620,71 +2477,62 @@ msgstr "" msgid "loads a block" msgstr "載入我的區塊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 -#, fuzzy -msgid "setxy" -msgstr "指定座標" - -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 -msgid "palette" -msgstr "" +#: TurtleArt/tabasics.py:282 +msgid "Palette of pen commands" +msgstr "色筆指令盤" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 -msgid "selects a palette" -msgstr "" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:480 +msgid "shows values in FILO (first-in last-out heap)" +msgstr "在FILO中顯示數值" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 -msgid "Palette of presentation templates" -msgstr "展示模版調色盤" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:107 +msgid "do-while-True operator that uses boolean operators from Numbers palette" +msgstr "從數值調色盤來的布林運算子使用do-while真值運算子" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:772 -msgid "hide blocks" -msgstr "隱藏區塊" +#: turtleblocks.py:363 +msgid "File" +msgstr "檔案" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774 -msgid "declutters canvas by hiding blocks" -msgstr "用隱藏區塊來屠次表现油畫" +#: TurtleArt/tabasics.py:708 +msgid "logical NOT operator" +msgstr "NOT 邏輯運算子" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 -msgid "show blocks" -msgstr "顯示區塊" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 +msgid "ycor of bottom of screen" +msgstr "螢幕下方的y座標" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 -msgid "restores hidden blocks" -msgstr "回復隱藏區塊" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 +msgid "presentation template: select Journal object (with description)" +msgstr "展示模版:選擇日誌中的物件(有描述)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:791 -msgid "hides the Sugar toolbars" -msgstr "隱藏sugar工具列" +#: TurtleArt/tabasics.py:557 +msgid "Palette of numeric operators" +msgstr "數值運算子調色盤" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:800 -msgid "list" -msgstr "列表" +#: TurtleArt/tabasics.py:589 +msgid "multiply" +msgstr "相乘" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 -msgid "presentation bulleted list" -msgstr "列點展示" +#: TurtleArt/tabasics.py:754 +msgid "forever" +msgstr "持續執行" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 -msgid "presentation template: list of bullets" -msgstr "展示模版:列點" +#: TurtleArt/tabasics.py:329 +msgid "sets shade of the line drawn by the turtle" +msgstr "設定小烏龜畫線的陰影" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:819 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:981 -msgid "presentation template: select Journal object (no description)" -msgstr "簡報模版:選擇日誌中的物件(無說明)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:308 +msgid "speaks text" +msgstr "說出文字" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:966 -msgid "presentation template: select Journal object (with description)" -msgstr "展示模版:選擇日誌中的物件(有描述)" +#: TurtleArtActivity.py:211 +msgid "snapshot" +msgstr "螢幕截圖" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:833 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1026 -msgid "presentation template: select four Journal objects" -msgstr "外觀模版:選擇四個日誌中的物件" +#: TurtleArt/tabasics.py:151 +msgid "clean" +msgstr "清除畫面" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840 #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847 @@ -1693,588 +2541,1090 @@ msgstr "外觀模版:選擇四個日誌中的物件" msgid "presentation template: select two Journal objects" msgstr "展示模版:選擇兩個日誌中的物件" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:857 -msgid "xcor of left of screen" -msgstr "視窗左邊的x座標" +#: TurtleArtActivity.py:611 TurtleArtActivity.py:757 turtleblocks.py:372 +msgid "Grow blocks" +msgstr "顯示區塊" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 -msgid "bottom" -msgstr "底端" +#: TurtleArtActivity.py:594 TurtleArtActivity.py:748 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789 +msgid "Fullscreen" +msgstr "全螢幕" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:865 -msgid "ycor of bottom of screen" -msgstr "螢幕下方的y座標" +#: turtleblocks.py:255 +msgid "File not found" +msgstr "找不到檔案" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870 -msgid "width" -msgstr "寬度" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222 +msgid "show" +msgstr "顯示" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873 -msgid "the canvas width" -msgstr "畫面寬度" +#: TurtleArt/tabasics.py:853 TurtleArt/tabasics.py:854 +#: TurtleArt/tabasics.py:855 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:186 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:187 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:188 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:223 +msgid "text" +msgstr "文字" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:881 -msgid "xcor of right of screen" -msgstr "螢幕右方的x座標" +#: TurtleArt/tabasics.py:646 +msgid "random" +msgstr "亂數" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 -msgid "ycor of top of screen" -msgstr "螢幕上方的y座標" +#: TurtleArt/tabasics.py:674 +msgid "logical greater-than operator" +msgstr "「大於」的邏輯運算子" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:894 -msgid "height" -msgstr "高度" +#: TurtleArt/tabasics.py:166 +msgid "turns turtle counterclockwise (angle in degrees)" +msgstr "將小烏龜逆時針轉向(輸入角度)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897 -msgid "the canvas height" -msgstr "畫布高度" +#: TurtleArt/tabasics.py:454 +msgid "black" +msgstr "黑色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 -msgid "title x" -msgstr "x軸標題" +#: TurtleArt/tabasics.py:639 +msgid "calculates square root" +msgstr "計算平方根" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 -msgid "title y" -msgstr "y軸標題" +#: TurtleArt/tabasics.py:237 +msgid "" +"holds current y-coordinate value of the turtle (can be used in place of a " +"number block)" +msgstr "保持小烏龜目前的y座標值(可以用來代替數字區塊)" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:922 -msgid "left x" -msgstr "x軸左側" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358 +msgid "mouse x" +msgstr "滑鼠座標 x" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 -msgid "top y" -msgstr "y軸頂端" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:368 +msgid "mouse y" +msgstr "滑鼠座標 y" + +#: pysamples/grecord.py:215 +msgid "stop" +msgstr "停止" + +#: TurtleArt/tabasics.py:671 +msgid "greater than" +msgstr "大於" + +#: TurtleArt/tabasics.py:225 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:604 +msgid "xcor" +msgstr "X座標" + +#: TurtleArtActivity.py:687 turtleblocks.py:408 util/helpbutton.py:45 +msgid "Help" +msgstr "幫助" + +#: turtleblocks.py:448 +msgid "Save project?" +msgstr "儲存計畫?" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689 +msgid "chooses which turtle to command" +msgstr "選擇要控制的小烏龜" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:940 msgid "right x" msgstr "x軸右側" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:949 -msgid "bottom y" -msgstr "y軸底端" +#: TurtleArt/tabasics.py:463 +msgid "sets color of text drawn by the turtle" +msgstr "設定小烏龜寫字的顏色" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 -msgid "presentation 1x1" -msgstr "展示為1x1" +#: plugins/light_sensor/light_sensor.py:58 +#: plugins/light_sensor/light_sensor.py:65 +msgid "light level detected by light sensor" +msgstr "由光線感應器偵測亮度" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:994 -msgid "presentation 2x1" -msgstr "以2x1方式展示" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388 +msgid "keyboard" +msgstr "鍵盤" -#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 -msgid "presentation 1x2" -msgstr "展示為1x2" +#: TurtleArt/tabasics.py:186 +msgid "arc" +msgstr "弧度" + +#: TurtleArt/tabasics.py:186 +msgid "radius" +msgstr "半徑" + +#: TurtleArtActivity.py:598 TurtleArtActivity.py:751 turtleblocks.py:368 +msgid "Polar coordinates" +msgstr "極座標" + +#: TurtleArt/tabasics.py:325 +msgid "set shade" +msgstr "設定填滿顏色" + +#: TurtleArt/tabasics.py:718 +msgid "logical AND operator" +msgstr "AND 邏輯演算子" + +#: gnome_plugins/uploader_plugin.py:90 +msgid "" +"You must have an account at http://turtleartsite.sugarlabs.org to upload " +"your project." +msgstr "" +"你必須在 http://turtleartsite.sugarlabs.org 註冊一個帳號來上傳你的專案。" + +#: TurtleArtActivity.py:681 TurtleArtActivity.py:890 turtleblocks.py:400 +msgid "Run" +msgstr "執行" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477 +msgid "show heap" +msgstr "顯示堆疊" + +#: TurtleArt/tabasics.py:217 +msgid "sets the heading of the turtle (0 is towards the top of the screen.)" +msgstr "設定小烏龜的方向(0是正對螢幕上方)" + +#: plugins/audio_sensors/audio_sensors.py:91 +#: plugins/audio_sensors/audio_sensors.py:106 +msgid "microphone input volume" +msgstr "麥克風輸入音量" + +#: gnome_plugins/uploader_plugin.py:120 +msgid "Title:" +msgstr "標題:" + +#: plugins/camera_sensor/camera_sensor.py:67 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:133 +msgid "Palette of media objects" +msgstr "媒體物件調色盤" + +#: TurtleArtActivity.py:591 +#, fuzzy +msgid "Restore blocks from trash" +msgstr "從垃圾桶救回所有區塊" + +#: TurtleArt/tabasics.py:838 +msgid "Palette of variable blocks" +msgstr "變數區塊調色盤" + +#: TurtleArt/tabasics.py:663 +msgid "used as numeric input in mathematic operators" +msgstr "在數值運算子中使用數字輸入" + +#: 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 "上傳" + +#: gnome_plugins/collaboration_plugin.py:296 +msgid "Server" +msgstr "伺服器" #: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1024 msgid "presentation 2x2" msgstr "以2x2方式展示" -#: pysamples/brain.py:43 -msgid "Please install the Speak Activity and try again." -msgstr "" +#: TurtleArt/tabasics.py:912 +msgid "Variable 1 (numeric value)" +msgstr "變數 1 (數值)" -#: pysamples/brain.py:54 -msgid "Spanish" -msgstr "" +#: gnome_plugins/collaboration_plugin.py:132 +msgid "Neighborhood" +msgstr "我的鄰居" -#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 -#: pysamples/brain.py:80 -msgid "English" -msgstr "" +#: TurtleArt/tabasics.py:567 +msgid "adds two alphanumeric inputs" +msgstr "增加兩個字母與數字並用的輸入值" -#: pysamples/brain.py:91 -msgid "Sorry, I can't understand what you are asking about." -msgstr "" +#: TurtleArt/tabasics.py:695 +msgid "equal" +msgstr "等於" -#: pysamples/brain.py:100 -msgid "" -"Sorry, there is no free memory to load my brain. Close other activities and " -"try once more." -msgstr "" +#: TurtleArt/tabasics.py:789 +msgid "else" +msgstr "否則" -#: pysamples/forward_push.py:45 -msgid "push destination rgb value to heap" -msgstr "" +#: TurtleArt/talogo.py:624 +msgid "doesn't like" +msgstr "不像" -#: pysamples/grecord.py:215 -msgid "stop" -msgstr "停止" +#: turtleblocks.py:447 +msgid "You have unsaved work. Would you like to save before quitting?" +msgstr "你有尚未儲存的工作,是否要在關閉前儲存?" -#: pysamples/grecord.py:217 -msgid "play" -msgstr "播放" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:783 +msgid "restores hidden blocks" +msgstr "回復隱藏區塊" -#: pysamples/grecord.py:219 -msgid "save" -msgstr "儲存" +#: TurtleArt/tabasics.py:379 +msgid "Turtle will not draw when moved." +msgstr "移動中的小烏龜並不會畫圖" -#: pysamples/journal-stats.py:78 -msgid "other" -msgstr "" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: pop removes a new item from the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:504 +msgid "pop" +msgstr "取出堆疊" -#: pysamples/uturn.py:24 -msgid "uturn" -msgstr "迴轉" +#: TurtleArt/tabasics.py:426 +msgid "pen size" +msgstr "畫筆大小" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:698 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:707 +msgid "turtle shell" +msgstr "龜殼" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:320 +msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)" +msgstr "指定播放正弦波頻率、音量以及時間長度(秒)" + +#: TurtleArt/tabasics.py:635 +msgid "√" +msgstr "根號" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305 +msgid "speak" +msgstr "聽我說" + +#: plugins/rfid/rfid.py:93 plugins/rfid/rfid.py:101 +msgid "read value from RFID device" +msgstr "從RFID設備讀取數值" + +#: TurtleArt/tabasics.py:190 +msgid "moves turtle along an arc" +msgstr "讓小烏龜跟著弧形移動" #: pysamples/uturn.py:26 msgid "make a uturn" msgstr "進行迴轉" -#: turtleblocks.py:86 -msgid "usage is" -msgstr "使用量為" +#: TurtleArt/tabasics.py:699 +msgid "logical equal-to operator" +msgstr "「等於」邏輯運算子" -#: turtleblocks.py:240 -msgid "No option action:" -msgstr "沒有選項的行動" +#: TurtleArt/tabasics.py:441 +msgid "Palette of pen colors" +msgstr "色筆調色盤" -#: turtleblocks.py:255 -msgid "File not found" -msgstr "找不到檔案" +#: TurtleArt/tabasics.py:888 +msgid "stores numeric value in Variable 1" +msgstr "在變數 1 中儲存數值" -#: turtleblocks.py:279 -#, python-format -msgid "Configuration directory not writable: %s" -msgstr "無法直接寫入設定到:%s" +#: TurtleArt/tabasics.py:901 +msgid "stores numeric value in Variable 2" +msgstr "在變數 2 中儲存數值" -#: turtleblocks.py:354 -msgid "New" -msgstr "新增" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708 +msgid "put a custom 'shell' on the turtle" +msgstr "替小烏龜穿上自製的龜殼" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:337 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348 +msgid "button down" +msgstr "按下按鍵" + +#: TurtleArt/tabasics.py:143 +msgid "moves turtle backward" +msgstr "讓小烏龜倒車" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889 +msgid "ycor of top of screen" +msgstr "螢幕上方的y座標" + +#: TurtleArt/talogo.py:384 TurtleArtActivity.py:322 TurtleArtActivity.py:684 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1485 +msgid "Show blocks" +msgstr "顯示區塊" + +#: pysamples/grecord.py:217 +msgid "play" +msgstr "播放" + +#: pysamples/grecord.py:219 +msgid "save" +msgstr "儲存" + +#: gnome_plugins/collaboration_plugin.py:304 +msgid "Colors" +msgstr "顏色" + +#: TurtleArt/tabasics.py:398 +msgid "sets size of the line drawn by the turtle" +msgstr "設定小烏龜畫線的寬度" #: turtleblocks.py:355 msgid "Open" msgstr "開啟" -#: turtleblocks.py:356 -msgid "Save" -msgstr "儲存" +#: TurtleArt/tawindow.py:989 TurtleArt/tawindow.py:990 +msgid "orientation" +msgstr "方向" -#: turtleblocks.py:357 -msgid "Save as" -msgstr "另存新檔" +#: TurtleArt/tabasics.py:236 TurtleArt/tawindow.py:3862 +#: TurtleArt/tawindow.py:3868 TurtleArtActivity.py:605 +msgid "ycor" +msgstr "Y座標" -#: turtleblocks.py:362 -msgid "Quit" -msgstr "離開" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sqrt(x*x+y*y)" +msgstr "可執行區塊:用以添加進階多變數數學方程式(如:sqrt(X^X+Y^Y)" -#: turtleblocks.py:363 -msgid "File" -msgstr "檔案" +#: TurtleArt/tabasics.py:776 TurtleArt/tabasics.py:789 +msgid "if" +msgstr "若" -#: turtleblocks.py:370 -msgid "Rescale coordinates" -msgstr "重新縮放座標軸" +#: TurtleArt/tabasics.py:203 TurtleArt/tabasics.py:269 +msgid "" +"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen." +msgstr "把小烏龜移動到座標(x,y),(0,0)是螢幕中心點" -#: turtleblocks.py:376 -msgid "Reset block size" -msgstr "重設區塊大小" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:579 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606 +msgid "Python" +msgstr "Python" -#: turtleblocks.py:394 -msgid "Show/hide blocks" -msgstr "顯示/隱藏區塊" +#: TurtleArtActivity.py:688 turtleblocks.py:403 +msgid "Stop" +msgstr "停止" + +#: TurtleArt/tabasics.py:964 TurtleArt/tabasics.py:984 +msgid "action 2" +msgstr "動作2" + +#: TurtleArt/tabasics.py:955 TurtleArt/tabasics.py:974 +msgid "action 1" +msgstr "動作1" + +#: TurtleArt/tabasics.py:417 +msgid "end fill" +msgstr "停止填滿" + +#: TurtleArtActivity.py:587 TurtleArtActivity.py:731 turtleblocks.py:385 +msgid "Copy" +msgstr "複製" + +#: TurtleArtActivity.py:589 TurtleArtActivity.py:732 turtleblocks.py:386 +msgid "Paste" +msgstr "貼上" + +#: TurtleArt/talogo.py:511 +msgid "did not output to" +msgstr "不要輸出到" + +#: gnome_plugins/collaboration_plugin.py:120 +msgid "Activities" +msgstr "活動" + +#: gnome_plugins/uploader_plugin.py:68 +msgid "Upload to Web" +msgstr "上傳到網站" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:490 +msgid "empty heap" +msgstr "清除堆疊" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508 +msgid "pops value off FILO (first-in last-out heap)" +msgstr "跳出FILO關閉值" + +#: TurtleArtActivity.py:680 TurtleArtActivity.py:888 turtleblocks.py:399 +msgid "Clean" +msgstr "清除畫面" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:765 +msgid "Palette of presentation templates" +msgstr "展示模版調色盤" + +#: TurtleArt/tabasics.py:186 +msgid "angle" +msgstr "角度" + +#: TurtleArt/tabasics.py:614 +msgid "identity" +msgstr "辨識" + +#: TurtleArtActivity.py:579 TurtleArtActivity.py:676 TurtleArtActivity.py:705 +#: TurtleArtActivity.py:707 TurtleArtActivity.py:815 +msgid "Save/Load" +msgstr "儲存/讀取" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:931 +msgid "top y" +msgstr "y軸頂端" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151 +msgid "audio" +msgstr "音效" #: turtleblocks.py:396 msgid "Tools" msgstr "工具" +#: TurtleArt/tabasics.py:162 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854 +msgid "left" +msgstr "左轉" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:539 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541 +msgid "comment" +msgstr "註記" + +#: TurtleArt/tabasics.py:578 +msgid "subtracts bottom numeric input from top numeric input" +msgstr "將頂端輸入數值減去底端輸入數值" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:381 +msgid "query for keyboard input (results stored in keyboard block)" +msgstr "鍵盤輸入查詢(結果儲存在鍵盤區塊)" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669 +msgid "Cartesian" +msgstr "笛卡爾" + +#: 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 "電壓" + +#: TurtleArt/tabasics.py:154 +msgid "clears the screen and reset the turtle" +msgstr "清除螢幕並重置小烏龜" + +#: plugins/audio_sensors/audio_sensors.py:84 +#: plugins/audio_sensors/audio_sensors.py:99 +msgid "raw microphone input signal" +msgstr "RAW格式麥克風輸入訊號" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:437 +msgid "returns the color that the turtle \"sees\"" +msgstr "回傳小烏龜看到的顏色" + +#: TurtleArt/tabasics.py:977 +msgid "invokes Action 1 stack" +msgstr "提取行動1的堆疊" + +#: TurtleArt/tabasics.py:123 +msgid "Palette of turtle commands" +msgstr "小烏龜指令調色盤" + +#: TurtleArt/tabasics.py:758 +msgid "loops forever" +msgstr "永遠迴圈" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207 +msgid "show aligned" +msgstr "對齊" + +#: TurtleArt/tawindow.py:3868 pysamples/grecord.py:205 +msgid "Turtle Art" +msgstr "小海龜" + +#: TurtleArtActivity.py:710 TurtleArtActivity.py:836 TurtleArtActivity.py:858 +msgid "Load project" +msgstr "載入專案" + +#: TurtleArtActivity.py:573 TurtleArtActivity.py:679 +msgid "Project" +msgstr "專案" + #: turtleblocks.py:402 msgid "Debug" msgstr "除錯" -#: turtleblocks.py:404 -msgid "Turtle" -msgstr "小烏龜" +#: gnome_plugins/collaboration_plugin.py:300 +msgid "Password" +msgstr "密碼" -#: turtleblocks.py:407 -msgid "About..." -msgstr "" +#: TurtleArt/tabasics.py:819 +msgid "vertical space" +msgstr "垂直空間" -#: turtleblocks.py:447 -msgid "You have unsaved work. Would you like to save before quitting?" -msgstr "你有尚未儲存的工作,是否要在關閉前儲存?" +#: TurtleArt/tabasics.py:419 +msgid "completes filled polygon (used with start fill block)" +msgstr "完全填滿的多邊形(用開始的填滿區塊)" -#: turtleblocks.py:448 -msgid "Save project?" -msgstr "儲存計畫?" +#: gnome_plugins/collaboration_plugin.py:128 +msgid "Share" +msgstr "分享" -#~ msgid "Turtle Art Mini" -#~ msgstr "迷你小海龜" +#: TurtleArt/tabasics.py:683 +msgid "less than" +msgstr "小於" -#~ msgid "Turtle Confusion" -#~ msgstr "小海龜謎題" +#: TurtleArt/tabasics.py:636 +msgid "square root" +msgstr "平方根" -#~ msgid "Select a challenge" -#~ msgstr "選擇挑戰" +#: turtleblocks.py:370 +msgid "Rescale coordinates" +msgstr "重新縮放座標軸" -#~ msgid "Palette of Mexican pesos" -#~ msgstr "墨西哥披索色盤" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781 +msgid "show blocks" +msgstr "顯示區塊" -#~ msgid "Palette of Colombian pesos" -#~ msgstr "哥倫比亞披索色盤" +#: turtleblocks.py:362 +msgid "Quit" +msgstr "離開" -#~ msgid "Palette of Rwandan francs" -#~ msgstr "盧安達法郎色盤" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:177 +msgid "Sugar Journal description field" +msgstr "Sugar日誌描述區" -#, fuzzy -#~ msgid "adjust LED intensity between 0 and 255" -#~ msgstr "調整 LED 亮度值介於 0 到 255。" +#: TurtleArt/tabasics.py:337 +msgid "set gray" +msgstr "設定為灰色" -#, fuzzy -#~ msgid "returns the object gray level as a number between 0 and 1023" -#~ msgstr "傳回環境亮度值介於 0 到 1023。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1039 +msgid "presentation bulleted list" +msgstr "列點展示" -#, fuzzy -#~ msgid "returns 1 when the button is press and 0 otherwise" -#~ msgstr "當按鈕被按下時傳回 1,否則傳回 0。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "duration" +msgstr "時間長度" -#, fuzzy -#~ msgid "returns the ambient light level as a number between 0 and 1023" -#~ msgstr "傳回環境亮度值介於 0 到 1023。" +#: turtleblocks.py:354 +msgid "New" +msgstr "新增" -#, fuzzy -#~ msgid "returns the ambient temperature as a number between 0 and 255" -#~ msgstr "傳回環境溫度值介於 0 到 255。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543 +msgid "places a comment in your code" +msgstr "在程式碼中做註記" -#, fuzzy -#~ msgid "" -#~ "returns the distance from the object in front of the sensor as a number " -#~ "between 0 and 255" -#~ msgstr "傳回感應器前方物體的距離值介於 0 到 255。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:424 +msgid "read pixel" +msgstr "讀取像素" -#, fuzzy -#~ msgid "returns 0 or 1 depending on the sensor inclination" -#~ msgstr "傳回 0 或 1 取決於感應器是否傾斜。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:266 +msgid "scale" +msgstr "比例" -#, fuzzy -#~ msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise" -#~ msgstr "當感應器偵測到磁場時傳回 1,否則傳回 0。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:862 +msgid "bottom" +msgstr "底端" -#, fuzzy -#~ msgid "switches from 0 to 1, the frequency depends on the vibration" -#~ msgstr "由 0 切換到 1,頻率取決於震動。" +#: TurtleArt/tabasics.py:451 +msgid "purple" +msgstr "紫色" -#~ msgid "LED" -#~ msgstr "LED" +#: TurtleArtActivity.py:447 +msgid "Rescale coordinates down" +msgstr "縮小座標軸比例" -#~ msgid "grayscale" -#~ msgstr "灰階" +#: TurtleArt/tautils.py:483 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:713 +msgid "click to open" +msgstr "點選開啟" -#~ msgid "ambient light" -#~ msgstr "環境光" +#: plugins/audio_sensors/audio_sensors.py:120 +#: plugins/audio_sensors/audio_sensors.py:128 +msgid "microphone input pitch" +msgstr "麥克風輸入音高" -#~ msgid "temperature" -#~ msgstr "溫度" +#: gnome_plugins/collaboration_plugin.py:129 +msgid "Configuration" +msgstr "設定" -#~ msgid "distance" -#~ msgstr "距離" +#: gnome_plugins/uploader_plugin.py:130 +msgid "Description:" +msgstr "描述:" -#~ msgid "tilt" -#~ msgstr "傾斜" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140 +msgid "journal" +msgstr "日誌" -#~ msgid "magnetic induction" -#~ msgstr "磁力感應" +#: TurtleArt/tabasics.py:999 +msgid "empty trash" +msgstr "清空垃圾桶" -#~ msgid "vibration" -#~ msgstr "震動" +#: TurtleArt/tabasics.py:388 +msgid "Turtle will draw when moved." +msgstr "小烏龜會畫下移動的軌跡" -#~ msgid "Butia Robot" -#~ msgstr "棕櫚機器人" +#: TurtleArt/tautils.py:196 +msgid "Load..." +msgstr "載入" -#, fuzzy -#~ msgid "returns the battery charge as a number between 0 and 255" -#~ msgstr "傳回電池電量值由 0 到 255。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:153 +msgid "Sugar Journal audio object" +msgstr "Sugar日誌聲音物件" -#~ msgid "forward Butia" -#~ msgstr "棕櫚往前移" +#: TurtleArt/talogo.py:374 TurtleArtActivity.py:683 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1492 +msgid "Stop turtle" +msgstr "停止執行" -#, fuzzy -#~ msgid "move the Butia robot forward" -#~ msgstr "棕櫚機器人往前移動。" +#: turtleblocks.py:404 +msgid "Turtle" +msgstr "小烏龜" -#, fuzzy -#~ msgid "move the Butia robot forward a predefined distance" -#~ msgstr "棕櫚機器人往前移動一定的距離。" +#: TurtleArt/tapalette.py:98 +msgid "changes the orientation of the palette of blocks" +msgstr "改變區塊調色盤的方向" -#~ msgid "left Butia" -#~ msgstr "棕櫚左移" +#: TurtleArt/tabasics.py:928 TurtleArt/tawindow.py:4189 +msgid "store in" +msgstr "放入" -#, fuzzy -#~ msgid "turn the Butia robot at left" -#~ msgstr "棕櫚機器人轉 x 度。" +#: TurtleArt/talogo.py:388 TurtleArtActivity.py:326 TurtleArtActivity.py:894 +msgid "Hide blocks" +msgstr "隱藏區塊" -#~ msgid "backward Butia" -#~ msgstr "棕櫚往後移" +#: TurtleArtActivity.py:714 TurtleArtActivity.py:844 TurtleArtActivity.py:866 +msgid "Load Python block" +msgstr "載入Python區塊" -#, fuzzy -#~ msgid "move the Butia robot backward" -#~ msgstr "棕櫚機器人往後移動。" +#: TurtleArt/tabasics.py:563 +msgid "plus" +msgstr "加" -#, fuzzy -#~ msgid "move the Butia robot backward a predefined distance" -#~ msgstr "棕櫚機器人往後移動一定的距離。" +#: TurtleArt/tabasics.py:725 TurtleArt/tabasics.py:728 +msgid "or" +msgstr "或" -#~ msgid "right Butia" -#~ msgstr "棕櫚右移" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:812 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1041 +msgid "presentation template: list of bullets" +msgstr "展示模版:列點" -#, fuzzy -#~ msgid "turn the Butia robot at right" -#~ msgstr "棕櫚機器人轉 x 度。" +#: TurtleArt/tabasics.py:616 +msgid "identity operator used for extending blocks" +msgstr "用延伸區塊辨認運算子" -#, fuzzy -#~ msgid "turn the Butia robot x degrees" -#~ msgstr "棕櫚機器人轉 x 度。" +#: TurtleArtActivity.py:613 TurtleArtActivity.py:758 turtleblocks.py:374 +msgid "Shrink blocks" +msgstr "縮小區塊" -#~ msgid "stop Butia" -#~ msgstr "停止棕櫚" +#: TurtleArt/tabasics.py:474 +msgid "sets size of text drawn by the turtle" +msgstr "設定小烏龜寫字的大小" -#~ msgid "Butia" -#~ msgstr "棕櫚" +#: TurtleArt/tabasics.py:248 +msgid "" +"holds current heading value of the turtle (can be used in place of a number " +"block)" +msgstr "保持小烏龜目前的方向(可以用來代替數字區塊)" -#, fuzzy -#~ msgid "Error on initialization of the camera" -#~ msgstr "初始化攝影機時發生錯誤。" +#: TurtleArt/tawindow.py:3977 +msgid "image" +msgstr "圖片" -#~ msgid "FollowMe" -#~ msgstr "跟我來" +#: TurtleArt/tabasics.py:650 +msgid "returns random number between minimum (top) and maximum (bottom) values" +msgstr "回傳最小與最大值之間的隨機數值" -#~ msgid "x position" -#~ msgstr "x 位置" +#: TurtleArt/tabasics.py:349 +msgid "holds current pen color (can be used in place of a number block)" +msgstr "保持現有畫筆顏色(可替換數值區塊)" -#~ msgid "return x position" -#~ msgstr "傳回 x 位置" +#: TurtleArtActivity.py:274 turtleblocks.py:390 +msgid "Show palette" +msgstr "顯示調色盤" -#~ msgid "y position" -#~ msgstr "y 位置" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:248 +msgid "saves a picture to the Sugar Journal" +msgstr "儲存圖片到Sugar日誌中" -#~ msgid "return y position" -#~ msgstr "傳回 y 位置" +#: TurtleArtActivity.py:219 TurtleArtActivity.py:643 TurtleArtActivity.py:685 +#: TurtleArtActivity.py:829 TurtleArtActivity.py:856 +msgid "Save snapshot" +msgstr "保存螢幕抓圖" -#, fuzzy -#~ msgid "set the default speed for the movement commands" -#~ msgstr "設定預設移動指令的速度。" +#: TurtleArt/tabasics.py:843 pysamples/grecord.py:213 +msgid "start" +msgstr "啟動" -#~ msgid "angle to center" -#~ msgstr "距中心角度" +#: TurtleArt/tabasics.py:132 +msgid "moves turtle forward" +msgstr "讓小烏龜往前" -#, fuzzy -#~ msgid "get the angle to the center of the dohyo" -#~ msgstr "取得距道場中心的角度" +#: TurtleArt/tabasics.py:128 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:723 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734 +msgid "forward" +msgstr "前進" -#, fuzzy -#~ msgid "get the angle to the Enemy" -#~ msgstr "取得距對手的距離" +#: TurtleArt/tabasics.py:932 TurtleArt/tabasics.py:945 +#: TurtleArt/tawindow.py:1296 TurtleArt/tawindow.py:1409 +#: TurtleArt/tawindow.py:1858 TurtleArt/tawindow.py:4152 +#: TurtleArt/tawindow.py:4180 +msgid "my box" +msgstr "我的箱子" -#, fuzzy -#~ msgid "get the x coordinate of the SumBot" -#~ msgstr "取得機器人的 x 座標" +#: gnome_plugins/collaboration_plugin.py:294 +msgid "Account ID" +msgstr "帳號ID" -#, fuzzy -#~ msgid "get the y coordinate of the SumBot" -#~ msgstr "取得機器人的 y 座標" +#: TurtleArt/tabasics.py:139 +msgid "back" +msgstr "後退" -#, fuzzy -#~ msgid "get the x coordinate of the Enemy" -#~ msgstr "取得機器人的 x 座標" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:238 +msgid "sets the scale of media" +msgstr "設定媒體的幅度" -#, fuzzy -#~ msgid "get the y coordinate of the Enemy" -#~ msgstr "取得機器人的 y 座標" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270 +msgid "holds current scale value" +msgstr "保持目前的縮放值" -#, fuzzy -#~ msgid "get the rotation of the Sumbot" -#~ msgstr "取得對手的旋轉值" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:964 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:979 +msgid "presentation 1x1" +msgstr "展示為1x1" -#, fuzzy -#~ msgid "get the rotation of the Enemy" -#~ msgstr "取得對手的旋轉值" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1009 +msgid "presentation 1x2" +msgstr "展示為1x2" -#~ msgid "distance to center" -#~ msgstr "離中心的距離" +#: TurtleArt/tabasics.py:865 +msgid "top of nameable action stack" +msgstr "可命名的動作堆疊上方" -#, fuzzy -#~ msgid "get the distance to the center of the dohyo" -#~ msgstr "取得距道場中心的距離" +#: TurtleArt/tabasics.py:933 TurtleArt/tawindow.py:4194 +msgid "stores numeric value in named variable" +msgstr "在已命名的變數中儲存數值" +#: TurtleArt/tabasics.py:729 +msgid "logical OR operator" +msgstr "OR 邏輯運算子" + +#: 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 "麥克風輸入電壓" + +#: TurtleArt/tabasics.py:770 +msgid "loops specified number of times" +msgstr "指定次數的迴圈" + +#: TurtleArt/tautils.py:206 +msgid "Save..." +msgstr "儲存" + +#: TurtleArt/tabasics.py:987 +msgid "invokes Action 2 stack" +msgstr "掉用行動2的堆疊" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:745 #, fuzzy -#~ msgid "get the distance to the Enemy" -#~ msgstr "取得距對手的距離" +msgid "setxy" +msgstr "指定座標" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:913 +msgid "title y" +msgstr "y軸標題" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:904 +msgid "title x" +msgstr "x軸標題" + +#: TurtleArt/tabasics.py:287 TurtleArt/tabasics.py:298 +msgid "fill screen" +msgstr "全螢幕" + +#: turtleblocks.py:357 +msgid "Save as" +msgstr "另存新檔" + +#: TurtleArt/tabasics.py:199 TurtleArt/tabasics.py:265 +msgid "set xy" +msgstr "指定座標" + +#: TurtleArt/tabasics.py:995 +msgid "trash" +msgstr "垃圾" -#~ msgid "update information" -#~ msgstr "更新訊息" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:677 +msgid "polar" +msgstr "極" + +#: TurtleArt/tabasics.py:765 TurtleArt/tabasics.py:769 +msgid "repeat" +msgstr "重複" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:277 +msgid "wait for current video or audio to complete" +msgstr "等待完成目前影像或聲音" + +#: TurtleArtActivity.py:203 TurtleArtActivity.py:708 TurtleArtActivity.py:820 +#: TurtleArtActivity.py:850 turtleblocks.py:358 +msgid "Save as image" +msgstr "另存為圖片" + +#: TurtleArtActivity.py:541 TurtleArtActivity.py:577 TurtleArtActivity.py:677 +#: TurtleArtActivity.py:730 turtleblocks.py:387 +msgid "Edit" +msgstr "編輯" + +#: 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 "麥克風輸入抗阻" + +#: TurtleArt/tabasics.py:967 +msgid "top of Action 2 stack" +msgstr "動作2堆疊的上方" + +#: TurtleArt/tabasics.py:604 +msgid "" +"divides top numeric input (numerator) by bottom numeric input (denominator)" +msgstr "用底端輸入的數值(分母)來除上端輸入的數值(分子)" + +#: TurtleArt/tabasics.py:646 +msgid "max" +msgstr "最大" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:553 +msgid "prints value in status block at bottom of the screen" +msgstr "列印螢幕下方堆疊區塊的值" + +#: TurtleArt/tabasics.py:408 +msgid "start fill" +msgstr "開始填滿" + +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:392 #, fuzzy -#~ msgid "update information from the server" -#~ msgstr "自伺服器更新訊息" +msgid "holds results of query-keyboard block as ASCII" +msgstr "保持詢問鍵盤區塊的結果" -#~ msgid "Palette of physics blocks" -#~ msgstr "物件區塊的顏色" +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. #-#-#-#-# zh_TW.po (PACKAGE VERSION) #-#-#-#-# +#. TRANS: push adds a new item to the program stack +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:464 +msgid "push" +msgstr "存入堆疊" -#~ msgid "start polygon" -#~ msgstr "開始畫多邊形" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610 +msgid "" +"a programmable block: used to add advanced multi-variable math equations, e." +"g., sin(x+y+z)" +msgstr "可執行區塊:用以添加進階多變數數學式(如:sin(x+y+z))" -#~ msgid "Begin defining a new polygon based on the current Turtle xy position." -#~ msgstr "由目前小海龜的位置,開始定義一個新的多邊形。" +#: TurtleArt/tabasics.py:1004 +msgid "restore all" +msgstr "回復全部" -#~ msgid "add point" -#~ msgstr "新增頂點" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307 +msgid "hello" +msgstr "您好" -#~ msgid "" -#~ "Add a new point to the current polygon based on the current Turtle xy " -#~ "position." -#~ msgstr "由目前小海龜的位置,在目前的多邊形上新增頂點。" +#. TRANS: "name" option from activity.info file +#, fuzzy +msgid "TurtleBlocks" +msgstr "小烏龜區塊" -#~ msgid "end polygon" -#~ msgstr "結束多邊形" +#. TRANS: "summary" option from activity.info file +#. TRANS: "description" option from activity.info file +msgid "" +"A Logo-inspired turtle that draws colorful pictures with snap-together " +"visual programming blocks" +msgstr "" -#~ msgid "Define a new polygon." -#~ msgstr "定義一個新的多邊形。" +#: TurtleArt/tabasics.py:174 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:878 +msgid "right" +msgstr "右轉" -#~ msgid "end filled polygon" -#~ msgstr "結束填充多邊形" +#: TurtleArt/tabasics.py:299 TurtleArt/tabasics.py:367 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1155 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:1160 +msgid "gray" +msgstr "灰色" -#~ msgid "Not a simple polygon" -#~ msgstr "不是一個簡單的多邊形" +#: TurtleArt/tabasics.py:443 +msgid "red" +msgstr "紅色" -#~ msgid "Define a new filled polygon." -#~ msgstr "定義一個新的填充多邊形。" +#: TurtleArt/tabasics.py:624 TurtleArt/tabasics.py:625 +msgid "mod" +msgstr "模數" -#~ msgid "triangle" -#~ msgstr "三角形" +#: TurtleArt/tacollaboration.py:152 TurtleArt/tawindow.py:1833 +#: TurtleArtActivity.py:703 +msgid "Share selected blocks" +msgstr "" -#~ msgid "base" -#~ msgstr "基底" +#: TurtleArt/tawindow.py:1012 TurtleArt/tawindow.py:1013 +#: TurtleArt/tawindow.py:1490 +msgid "shift" +msgstr "" -#~ msgid "Add a triangle object to the project." -#~ msgstr "專案中新增一個三角形物件。" +#: TurtleArt/tawindow.py:1256 +msgid "" +"Please hit the Stop Button before making changes to your Turtle Blocks " +"program" +msgstr "" -#~ msgid "circle" -#~ msgstr "圓形" +#: TurtleArt/tawindow.py:1310 +msgid "Select blocks to share" +msgstr "" -#~ msgid "Add a circle object to the project." -#~ msgstr "專案中新增一個圓形物件。" +#: TurtleArtActivity.py:260 TurtleArtActivity.py:616 TurtleArtActivity.py:759 +#: turtleblocks.py:378 +msgid "Turn off hover help" +msgstr "" -#~ msgid "rectangle" -#~ msgstr "長方形" +#: TurtleArtActivity.py:266 turtleblocks.py:380 +msgid "Turn on hover help" +msgstr "" -#~ msgid "Add a rectangle object to the project." -#~ msgstr "專案中新增一個長方形物件。" +#: TurtleArtActivity.py:713 TurtleArtActivity.py:841 TurtleArtActivity.py:863 +msgid "Load plugin" +msgstr "" -#~ msgid "reset" -#~ msgstr "重置" +#: TurtleArtActivity.py:766 +msgid "Palettes" +msgstr "" -#~ msgid "Reset the project; clear the object list." -#~ msgstr "重置專案,清除物件清單。" +#: TurtleArtActivity.py:810 +msgid "Sharing blocks disabled" +msgstr "" -#~ msgid "motor" -#~ msgstr "發動機" +#: TurtleArtActivity.py:1049 TurtleArtActivity.py:1054 +#: TurtleArtActivity.py:1121 +msgid "Plugin could not be installed." +msgstr "" -#~ msgid "torque" -#~ msgstr "扭力" +#: TurtleArtActivity.py:1117 +msgid "Please restart Turtle Art in order to use the plugin." +msgstr "" -#~ msgid "speed" -#~ msgstr "速度" +#: TurtleArtActivity.py:1135 +#, python-format +msgid "Plugin %s already installed." +msgstr "" -#~ msgid "" -#~ "Motor torque and speed range from 0 (off) to positive numbers; motor is " -#~ "placed on the most recent object created." -#~ msgstr "發動機的扭力與速度值,由 0 (關閉)到一個正數,發動機放在最後建立的物件上。" +#: TurtleArtActivity.py:1136 +#, python-format +msgid "Do you want to reinstall %s?" +msgstr "" -#~ msgid "pin" -#~ msgstr "釘梢" +#: gnome_plugins/collaboration_plugin.py:298 +msgid "Port" +msgstr "連接埠" -#~ msgid "Pin an object down so that it cannot fall." -#~ msgstr "固定一個物件使其不掉落。" +#: gnome_plugins/fb_plugin.py:87 +msgid "Facebook wall post" +msgstr "" -#~ msgid "joint" -#~ msgstr "關節" +#: 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:330 +msgid "Palette of sensor blocks" +msgstr "偵測器區塊的顏色" -#~ msgid "" -#~ "Join two objects together (the most recent object created and the object at " -#~ "point x, y)." -#~ msgstr "用來連接兩個物件(上一個建立的物件與位於x, y位置的另一個物件)" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283 +msgid "media stop" +msgstr "" -#~ msgid "Save the project to the Journal as a Physics activity." -#~ msgstr "保存專案到日誌上成為物理活動" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285 +msgid "stop video or audio" +msgstr "" -#, fuzzy -#~ msgid "Add a gear object to the project." -#~ msgstr "專案中新增一個圓形物件。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:290 +msgid "media pause" +msgstr "" -#~ msgid "density" -#~ msgstr "密度" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:292 +msgid "pause video or audio" +msgstr "" -#~ msgid "" -#~ "Set the density property for objects (density can be any positive number)." -#~ msgstr "訂定物件的密度值 (任意正數)。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297 +msgid "media resume" +msgstr "" -#~ msgid "friction" -#~ msgstr "摩擦係數" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299 +msgid "resume playing video or audio" +msgstr "" -#~ msgid "" -#~ "Set the friction property for objects (value from 0 to 1, where 0 turns " -#~ "friction off and 1 is strong friction)." -#~ msgstr "訂定物件的摩擦係數 (介於0無摩擦到1最大)。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:317 +msgid "amplitude" +msgstr "" -#~ msgid "bounciness" -#~ msgstr "彈性係數" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:522 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532 +msgid "returns True if heap is empty" +msgstr "" -#~ msgid "" -#~ "Set the bounciness property for objects (a value from 0 to 1, where 0 means " -#~ "no bounce and 1 is very bouncy)." -#~ msgstr "訂定物件的彈性係數 (介於0無彈性到1最大)。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563 +msgid "Python chr operator" +msgstr "" -#~ msgid "dynamic" -#~ msgstr "可動性" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:572 +msgid "Python int operator" +msgstr "" -#~ msgid "" -#~ "If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position." -#~ msgstr "當可動性 = 1 時物件可以移動,可動性 = 0 時物件是固定的。" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:721 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731 +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742 +msgid "load" +msgstr "" -#, fuzzy -#~ msgid "Palette of WeDo blocks" -#~ msgstr "偵測器區塊的顏色" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:754 +msgid "palette" +msgstr "" -#, fuzzy -#~ msgid "light" -#~ msgstr "右轉" +#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:757 +msgid "selects a palette" +msgstr "" -#, fuzzy -#~ msgid "grey" -#~ msgstr "灰色" +#: pysamples/brain.py:43 +msgid "Please install the Speak Activity and try again." +msgstr "" -#, fuzzy -#~ msgid "port" -#~ msgstr "連接埠" +#: pysamples/brain.py:54 +msgid "Spanish" +msgstr "" -#, fuzzy -#~ msgid "rotations" -#~ msgstr "旋轉" +#: pysamples/brain.py:58 pysamples/brain.py:72 pysamples/brain.py:74 +#: pysamples/brain.py:80 +msgid "English" +msgstr "" -#, fuzzy -#~ msgid "read" -#~ msgstr "紅色" +#: pysamples/brain.py:91 +msgid "Sorry, I can't understand what you are asking about." +msgstr "" -#, fuzzy -#~ msgid "sensor" -#~ msgstr "偵測器" +#: pysamples/brain.py:100 +msgid "" +"Sorry, there is no free memory to load my brain. Close other activities and " +"try once more." +msgstr "" -#, fuzzy -#~ msgid "mode" -#~ msgstr "模數" +#: pysamples/forward_push.py:45 +msgid "push destination rgb value to heap" +msgstr "" -#, fuzzy -#~ msgid "Palette of Expeyes blocks" -#~ msgstr "偵測器區塊的顏色" +#: pysamples/journal-stats.py:78 +msgid "other" +msgstr "" -#, fuzzy -#~ msgid "samples" -#~ msgstr "範例" +#: turtleblocks.py:407 +msgid "About..." +msgstr "" #, fuzzy #~ msgid "" -#~ "set the speed of the Butia motors as a value between 0 and 1023, passed by " -#~ "an argument" +#~ "set the speed of the Butia motors as a value between 0 and 1023, passed " +#~ "by an argument" #~ msgstr "由給定參數設定棕櫚馬達的速度值由 0 到 1023。" #, fuzzy @@ -2364,7 +3714,8 @@ msgstr "儲存計畫?" #, fuzzy #~ 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 "傳回前方物體的灰階值介於 0 到 1023。" #~ msgid "activity count" @@ -2469,7 +3820,8 @@ msgstr "儲存計畫?" #~ msgid "restore last" #~ msgstr "還原上次設定" -#~ 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 "可執行區塊:用以添加進階數學式(如:sin(x))" #~ msgid "blocks" -- cgit v0.9.1